:root {
    --primary: #F15A24;
    --primary-alt: #FF6E3A;
    --dark: #121212;
    --dark-alt: #1E1E1E;
    --light: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.1);
    --container: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-full {
    width: 100%;
}

.section {
    padding: 100px 0;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(241, 90, 36, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), #FF8C69);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.header.menu-active {
    background: var(--dark) !important;
    border-bottom-color: var(--border-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.nav {
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
}

/* Root styles first */
.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    font-weight: 600;
    font-size: 15px;
    color: var(--light); /* Padrão dark para o hero */
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header.scrolled .nav-list a {
    color: var(--dark);
    text-shadow: none;
}

.nav-list a:hover {
    color: var(--primary);
}

/* Mobile Media Query after root styles */
@media (max-width: 991px) {
    .nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        padding: 120px 40px 40px;
        transition: var(--transition);
        z-index: 10;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 20px 0;
        font-size: 20px;
        color: var(--light) !important; /* Force light color in dark mobile menu */
        text-shadow: none;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-alt);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(241, 90, 36, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-white {
    background-color: var(--light);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-transparent {
    background-color: transparent;
    border: 2px solid var(--border-light);
    color: var(--light);
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--light); /* Light por padrão */
    border-radius: 4px;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-toggle.active span {
    background-color: var(--light) !important;
}

/* Hero Section with Scroll Animation */
.hero-scroll {
    position: relative;
    height: 250vh;
    background-color: var(--dark);
    color: var(--light);
}

.animation-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

#hero-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.4) 50%, rgba(18, 18, 18, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

.hero-text-wrapper {
    max-width: 900px;
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95); /* Aumentada a opacidade para mais clareza */
    margin-bottom: 32px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.scroll-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.scroll-mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 0; top: 8px; }
    20% { opacity: 1; }
    80% { opacity: 1; top: 22px; }
    100% { opacity: 0; top: 22px; }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(241, 90, 36, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-muted);
}

/* Gallery Slider */
.gallery-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--light);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .item-info {
    transform: translateY(0);
    opacity: 1;
}

/* Sizes Grid */
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.size-card {
    background: var(--bg-light);
    padding: 48px 40px;
    border-radius: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.size-card:hover {
    background: var(--light);
    box-shadow: var(--shadow-strong);
}

.size-card.featured {
    background-color: var(--dark);
    color: var(--light);
    border: none;
    transform: scale(1.05);
    position: relative;
}

.feature-tag {
    position: absolute;
    top: 24px;
    right: 32px;
    background: var(--primary);
    color: var(--light);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

.size-header {
    margin-bottom: 24px;
}

.size-val {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.size-card h3 {
    font-size: 24px;
}

.size-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.size-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.size-list {
    margin-bottom: 32px;
    flex-grow: 1;
}

.size-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.size-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 800;
}

/* Testimonials */
.testimonials-wrapper {
    background-color: var(--bg-light);
    padding: 100px 60px;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 20px;
}

.testimonial-author span {
    color: var(--text-muted);
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 24px 0;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.accordion-header svg {
    transition: var(--transition);
    color: var(--primary);
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding-bottom: 30px;
}

.accordion-body p {
    color: var(--text-muted);
    font-size: 17px;
}

/* CTA Final */
.cta-final {
    padding: 80px 24px;
}

.cta-card {
    background-color: var(--primary);
    background-image: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.15) 0%, transparent 60%);
    padding: 80px 40px;
    border-radius: 48px;
    text-align: center;
    color: var(--light);
}

.cta-card h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.cta-btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 0;
    margin-top: 50px;
}

.footer-grid {
    padding: 100px 24px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.footer-brand {
    grid-column: span 1.5;
}

.footer-logo {
    height: 60px;
    margin-bottom: 24px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--light);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links ul li a:hover {
    color: var(--light);
    padding-left: 5px;
}

.footer-bottom {
    padding: 40px 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Revel Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem); 
        margin-bottom: 12px;
        width: 100%;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        padding: 0;
        max-width: 100%;
        line-height: 1.5;
    }

    .hero-content {
        width: 100%;
        left: 0;
        transform: none;
        align-items: flex-start; 
        justify-content: center;
        padding-top: 12vh;
    }

    .hero-text-wrapper {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 16px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 12px;
        pointer-events: auto; /* Garantir que sejam clicáveis */
    }

    .btn-lg {
        width: 100%;
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 12vh;
        z-index: 20; /* Garantir que fique acima de tudo */
    }

    .scroll-text {
        font-size: 11px;
    }

    .size-card.featured {
        transform: none;
    }
    
    .testimonials-wrapper {
        padding: 60px 30px;
    }
}
