/* hero.css - Estilos específicos da seção Hero - Botões Delicados */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-carousel-track {
    display: flex;
    width: 200%;
    height: 100%;
}

.hero-carousel-row {
    display: flex;
    margin-bottom: var(--spacing-lg);
    width: max-content;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.hero-carousel-row:nth-child(odd) {
    animation-name: scrollLeft;
}

.hero-carousel-row:nth-child(even) {
    animation-name: scrollRight;
}

.hero-carousel-row:nth-child(1) {
    animation-duration: 45s;
}

.hero-carousel-row:nth-child(2) {
    animation-duration: 40s;
}

.hero-carousel-row:nth-child(3) {
    animation-duration: 50s;
}

.hero-carousel-row:nth-child(4) {
    animation-duration: 35s;
}

.hero-carousel-item {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    margin-right: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-carousel-item:hover img {
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-3xl) 0;
}

.hero-text {
    text-align: center;
}

/* Logo do Hero */
.hero-logo {
    margin-bottom: var(--spacing-lg);
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
}

.hero-subtitle {
    display: inline-block;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 7vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--color-secondary);
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--color-gray);
    margin-bottom: var(--spacing-2xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Botões DELICADOS - Design minimalista e suave */
.hero-actions .btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    border-width: 1.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    min-height: 42px;
}

/* Efeito de brilho suave nos botões */
.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.hero-actions .btn:hover::before {
    left: 100%;
}

/* Botão Primário - Mais suave */
.hero-actions .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.hero-actions .btn-primary:hover {
    background-color: #A891E0;
    border-color: #A891E0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 161, 230, 0.25);
}

/* Botão Secundário - Mais delicado */
.hero-actions .btn-secondary {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.hero-actions .btn-secondary:hover {
    background-color: rgba(184, 161, 230, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 161, 230, 0.15);
}

/* Ícones dentro dos botões - menores e mais delicados */
.hero-actions .btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
    transition: transform 0.3s ease;
}

.hero-actions .btn:hover svg {
    transform: translateX(3px);
}

.scroll-down-btn {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    font-family: var(--font-primary);
}

.scroll-btn:hover {
    opacity: 1;
    transform: translateY(3px);
}

.scroll-btn svg {
    width: 18px;
    height: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        min-height: 44px;
    }
    
    .hero-carousel-item {
        width: 150px;
        height: 120px;
    }
    
    .hero-logo img {
        max-width: 160px;
    }
    
    .hero-actions .btn svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .hero-content {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-carousel-item {
        width: 120px;
        height: 100px;
    }
    
    .hero-logo img {
        max-width: 140px;
    }
    
    .hero-actions {
        max-width: 100%;
    }
    
    .hero-actions .btn {
        padding: 10px 18px;
        font-size: 13px;
        min-height: 42px;
    }
    
    .hero-actions .btn svg {
        width: 12px;
        height: 12px;
    }
}