/*
Theme Name: Kauane Storymaker
Description: Tema elegante e minimalista para Storiemaker profissional
Version: 1.0
Author: Kauane Storymaker
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #F3DBD7;
    --primary-text: #543024;
    --accent-dark: #3D2220;
    --white: #ffffff;
    --shadow-light: rgba(61, 34, 32, 0.08);
    --shadow-medium: rgba(61, 34, 32, 0.15);
    --shadow-heavy: rgba(61, 34, 32, 0.25);
    --gradient-primary: linear-gradient(135deg, #F3DBD7 0%, #E8C5BE 50%, #DDB5AC 100%);
    --gradient-dark: linear-gradient(135deg, #3D2220 0%, #543024 100%);
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
}

/* Container principal - navegação horizontal */
.horizontal-container {
    display: flex;
    width: 600vw; /* 6 seções */
    height: 100vh;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.section {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Scrollbar personalizada */
.section::-webkit-scrollbar {
    width: 4px;
}

.section::-webkit-scrollbar-track {
    background: rgba(243, 219, 215, 0.3);
}

.section::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 2px;
}

/* Indicadores de navegação */
.nav-indicators {
    position: fixed;
    top: 3rem;
    right: 2rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px var(--shadow-light);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(84, 48, 36, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: var(--primary-text);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-text);
    transform: scale(1.3);
}

.indicator.active::before {
    opacity: 0.2;
    transform: scale(1);
}

/* Instruções de swipe */
.swipe-hint {
    position: fixed;
    bottom: 2rem;
    left: 70%;
    transform: translateX(-50%);
    color: var(--primary-text);
    font-size: 0.9rem;
    opacity: 0.6;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px var(--shadow-light);
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.02); }
}

/* SEÇÃO HERO */
.hero {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 219, 215, 0.85) 0%, rgba(232, 197, 190, 0.85) 50%, rgba(221, 181, 172, 0.85) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(61, 34, 32, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(61, 34, 32, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(61, 34, 32, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(1deg); }
}

.hero-content {
    max-width: 1500px;
    z-index: 4;
    position: relative;
    padding: 2rem;
}

.logo {
    width: 220px;
    margin: 0 auto 3rem;
    filter: drop-shadow(0 4px 20px var(--shadow-light));
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.5s forwards;
}

.hero h1 {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--accent-dark);
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.8s forwards;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-dark);
    opacity: 0.3;
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1rem);
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease 1.1s forwards;
    color: var(--primary-text);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-dark);
    color: var(--white);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 40px var(--shadow-medium);
    opacity: 0;
    animation: fadeInUp 1.2s ease 1.4s forwards;
    position: relative;
    overflow: hidden;
}

.whatsapp-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.6s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px var(--shadow-heavy);
    text-decoration: none;
    color: var(--white);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* SEÇÃO GALERIA DE VÍDEOS */
.gallery {
    background: var(--white);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.gallery-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, rgba(243, 219, 215, 0.1) 100%);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--accent-dark);
    letter-spacing: -0.02em;
    position: relative;
}



.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    color: var(--primary-text);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    aspect-ratio: 9/16;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-item:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(61, 34, 32, 0.8) 0%, rgba(84, 48, 36, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    transform: scale(1);
}

.play-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-dark);
    margin-left: 3px;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-item:hover .video-info {
    transform: translateY(0);
}

.video-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.video-category {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* SEÇÃO SERVIÇOS */
.services {
    background: linear-gradient(135deg, rgba(243, 219, 215, 0.3) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    overflow-y: auto;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(243, 219, 215, 0.5);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 219, 215, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px var(--shadow-medium);
    border-color: rgba(243, 219, 215, 0.8);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-dark);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--primary-text);
}

.service-btn {
    background: var(--gradient-dark);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.5s ease;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    text-decoration: none;
    color: var(--white);
}

/* SEÇÃO DEPOIMENTOS */
.testimonials {
    background: var(--gradient-primary);
    padding: 4rem 2rem;
    overflow-y: auto;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px var(--shadow-light);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.testimonial-info h4 {
    font-weight: 500;
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.rating {
    color: #D4A574;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--primary-text);
    font-size: 1rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-bg);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    line-height: 1;
}

/* SEÇÃO SOBRE */
.about {
    background: var(--white);
    padding: 4rem 2rem;
    overflow-y: auto;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.about-text-content {
    text-align: left;
}

.about-text-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-dark);
    letter-spacing: -0.02em;
    text-align: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    background: var(--primary-bg);
    aspect-ratio: 3/4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(61, 34, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--primary-text);
}

.about-text p {
    margin-bottom: 2rem;
}

.about-text strong {
    color: var(--accent-dark);
    font-weight: 500;
}

.values-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(243, 219, 215, 0.3) 0%, rgba(243, 219, 215, 0.1) 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 219, 215, 0.5);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: #cfc7c6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.value-item h4 {
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* SEÇÃO FOOTER */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 6rem 2rem;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23ffffff" opacity="0.03"/><circle cx="80" cy="40" r="2" fill="%23ffffff" opacity="0.03"/><circle cx="60" cy="80" r="1.5" fill="%23ffffff" opacity="0.03"/><circle cx="30" cy="70" r="2.5" fill="%23ffffff" opacity="0.03"/></svg>');
    animation: float 25s ease-in-out infinite reverse;
}

.footer-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.footer h2 {
    font-size: clamp(2rem, 2vw, 2rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: clamp(1rem, 2vw, 1rem);
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.social-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    backdrop-filter: blur(10px);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.whatsapp-social {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-social:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: var(--white);
}

.instagram-social {
    background: linear-gradient(45deg, #833AB4 0%, #C13584 25%, #E1306C 50%, #FD1D1D 75%, #F77737 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.instagram-social:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(131, 58, 180, 0.4);
    text-decoration: none;
    color: var(--white);
}

.social-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    margin: 3rem auto;
}

.footer-bottom {
    opacity: 0.6;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .horizontal-container {
        width: 600vw; /* Mantém 6 seções */
    }
    
    .nav-indicators {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 0.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .swipe-hint {
        bottom: 1rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-content,
    .services-content,
    .testimonials-content,
    .footer-content {
        padding: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text-content h2 {
        text-align: center;
    }
    
    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .gallery-header {
        padding: 3rem 1rem 1.5rem;
    }
    
    .gallery-content {
        padding: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-actions {
        gap: 1.5rem;
    }
    
    .social-btn {
        min-width: 250px;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações de entrada */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estados de carregamento */
.loading {
    pointer-events: none;
}

.loading .horizontal-container {
    transition: none;
}

/* Otimizações de performance */
.horizontal-container {
    transform: translate3d(0, 0, 0);
}

.section {
    transform: translate3d(0, 0, 0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .horizontal-container {
        transition: transform 0.3s ease;
    }
}