body.splash-lock {
    overflow: hidden;
}
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 10000; /* Aumentado para cobrir o navbar fixed */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}
.splash-screen.active {
    opacity: 1;
    visibility: visible;
}
.splash-screen.fade-out {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.splash-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.94) translateY(12px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.5s;
    will-change: transform, opacity;
}
.splash-screen.active .splash-logo {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
}
.background-slide.active {
    opacity: 1;
}
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 100%);
    z-index: 10;
}
.hero-container {
    position: relative;
    z-index: 100;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vh 8%;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%) translateY(30px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    max-width: 950px;
    pointer-events: none;
    z-index: 20;
}
.hero-slide.active {
    opacity: 1;
    transform: translateY(-50%) translateY(0);
    pointer-events: auto;
}
.hero-slide .category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--texto-claro-muted);
    margin-bottom: 1.25rem;
    display: block;
    font-weight: 500;
}
.hero-slide h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--texto-claro);
}
.hero-slide .highlight {
    font-weight: 600;
}
.hero-slide p {
    font-size: 1.1rem;
    color: var(--texto-claro-sec);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-slide .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--texto-claro);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}
.hero-slide .cta-button:hover {
    background: var(--fundo-claro);
    color: var(--fundo-escuro);
    border-color: var(--fundo-claro);
    transform: translateY(-2px);
}
.hero-slide .cta-button i {
    transition: transform 0.3s ease;
}
.hero-slide .cta-button:hover i {
    transform: translateX(4px);
}
.carousel-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 42vh;
    z-index: 50;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}
.carousel-container > * {
    pointer-events: auto;
}
.carousel-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}
.carousel-card {
    flex: 0 0 calc(100% / 3);
    padding: 0 12px;
    cursor: pointer;
    transition: all 0.5s ease;
    opacity: 0.7;
}
.carousel-card.active {
    opacity: 1;
    transform: scale(1.02);
    z-index: 100;
}
.carousel-card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 180px;
    background: #111111;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.carousel-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    filter: brightness(0.75);
    display: block;
}
.carousel-card.active .carousel-card-image {
    filter: brightness(1);
    transform: scale(1.03);
}
.carousel-card:hover .carousel-card-image {
    transform: scale(1.05);
}
.carousel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(transparent, rgba(10,10,10,0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.carousel-card.active .carousel-card-overlay {
    opacity: 1;
}
.carousel-card-number {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.4);
    padding: 3px 10px;
    border-radius: 9999px;
    letter-spacing: 1px;
}
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0 8px;
}
.carousel-nav {
    display: flex;
    gap: 16px;
}
.nav-button {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--texto-claro);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.nav-button:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.4);
}
.carousel-progress {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 24px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--texto-claro);
    width: 0%;
    transition: width 0.3s linear;
}
.slide-indicator {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 300;
    font-size: 0.85rem;
    color: var(--texto-claro-muted);
    letter-spacing: 2px;
    font-weight: 400;
}
.slide-indicator .current {
    color: var(--texto-claro);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 4px;
}
.line-divider {
    position: absolute;
    top: 0;
    right: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    pointer-events: none;
}
.features-section {
    position: relative;
    z-index: 200;
    background: var(--fundo-claro);
    color: var(--texto-escuro);
    padding: 8rem 8%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}
.features-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--texto-escuro);
    line-height: 1.2;
}
.features-header p {
    font-size: 1.1rem;
    color: var(--texto-escuro-sec);
    line-height: 1.7;
}
.features-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2.5rem;
    border-radius: 1rem;
    background: var(--fundo-claro);
    border: 1px solid var(--marca);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:hover {
    border-color: var(--marca-hover);
    box-shadow: 0 20px 50px rgba(29, 78, 216, 0.15);
    transform: translateY(-4px);
}
.feature-image-wrapper {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    background: #f3f4f6;
    overflow: hidden;
    transition: transform 0.4s ease;
    position: relative;
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.feature-card:hover .feature-image img {
    transform: scale(1.05);
}
.feature-content-wrapper {
    flex: 0 0 80%;
    max-width: 80%;
    display: flex;
    align-items: center;
}
.feature-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--texto-escuro);
    line-height: 1.3;
}
.feature-content p {
    font-size: 1rem;
    color: var(--texto-escuro-sec);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 1000px) {
    .feature-card {
        gap: 2rem;
        padding: 2rem;
    }
    .feature-image-wrapper {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .feature-content-wrapper {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .feature-content h3 {
        font-size: 1.25rem;
    }
}
@media (max-width: 767px) {
    .splash-logo {
        width: 110px;
    }
    .hero-container {
        padding: 6vh 5% 4vh;
        min-height: auto;
    }
    .hero-slide {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        opacity: 1 !important;
        display: none;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .hero-slide.active {
        display: block;
    }
    .hero-slide h1 {
        font-size: 2rem;
    }
    .hero-slide p {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
    }
    .hero-slide .cta-button {
        justify-content: center;
        width: 100%;
    }
    .line-divider {
        display: none;
    }
    .carousel-container {
        position: relative;
        width: 100%;
        height: auto;
        padding: 2rem 5%;
        order: 2;
    }
    .carousel-wrapper {
        border-radius: 1rem;
        overflow: hidden;
    }
    .carousel-card {
        flex: 0 0 100%;
        padding: 0 8px;
    }
    .carousel-card-inner {
        height: 200px;
        border-radius: 0.5rem;
    }
    .carousel-controls {
        margin-top: 1rem;
    }
    .carousel-progress {
        margin: 0 1rem;
    }
    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .slide-indicator {
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(10,10,10,0.8);
        padding: 0.5rem 1rem;
        border-radius: 9999px;
    }
    .features-section {
        padding: 5rem 5%;
    }
    .features-header {
        margin-bottom: 3.5rem;
    }
    .features-column {
        gap: 2.5rem;
    }
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .feature-image-wrapper,
    .feature-content-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .feature-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        aspect-ratio: 16/9;
    }
    .feature-content {
        text-align: center;
    }
    .feature-content h3 {
        font-size: 1.2rem;
    }
}
@media (max-width: 479px) {
    .feature-card {
        padding: 1.5rem 1rem;
    }
    .feature-content h3 {
        font-size: 1.1rem;
    }
}
@media (prefers-reduced-motion: no-preference) {
    .feature-card {
        transition: opacity 0.5s cubic-bezier(0.2, 0.9, 0.4, 1), transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1);
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}