/* Reset e Variáveis */
:root {
    --color-black: #000000;
    --color-green-dark: #000000;
    --color-green: #030503;
    --color-green-light: #050805;
    --color-green-bright: #0a0f0a;
    --color-white: #FFFFFF;
    --color-green-glow: rgba(20, 30, 20, 0.2);
    --color-green-glow-strong: rgba(20, 30, 20, 0.3);
    --color-gray-light: #1a1a1a;
    --color-gray: #888888;
    --color-gray-dark: #cccccc;
    
    --font-elegant: 'Cormorant Garamond', serif;
    --font-serif: 'Playfair Display', serif;
    --font-luxury: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

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

/* Prevenir overflow horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Otimizações de performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Otimização de renderização */
.hero-headline,
.section-title,
.section-title-center,
.final-headline,
.btn-cta-primary,
.btn-cta-giant {
    will-change: transform;
    transform: translateZ(0);
}

/* Otimização de imagens */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimizeQuality;
    content-visibility: auto;
}

img[loading="lazy"] {
    content-visibility: auto;
}

/* Garantir que todos os elementos respeitem o container */
section {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

/* Textos que não devem quebrar linha */
.hero-headline {
    word-break: keep-all;
    hyphens: none;
}

.section-title,
.section-title-center,
.final-headline {
    word-break: break-word;
    hyphens: auto;
}

/* Garantir que botões não saiam da tela */
button,
.btn-cta-primary,
.btn-cta-header,
.btn-cta-giant {
    max-width: 100%;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    background: #000000;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(30, 50, 30, 0.15) 25%,
        rgba(40, 70, 40, 0.2) 50%,
        rgba(30, 50, 30, 0.15) 75%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    transition: left 0.1s linear;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* CABEÇALHO */
.header {
    background: url('https://i.imgur.com/MOqkl1s.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center;
    padding: 15px 0 !important;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(20, 30, 20, 0.2);
    overflow: visible !important;
    backdrop-filter: blur(10px);
    min-height: 100px !important;
    max-height: 120px !important;
    height: auto !important;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(20, 40, 20, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.1s linear;
    pointer-events: none;
    z-index: 2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    max-height: 120px;
    box-sizing: border-box;
}

.logo {
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 80px !important;
    max-width: 300px !important;
    width: auto;
    z-index: 11;
    flex-shrink: 0;
}

.logo img {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
    max-width: 300px !important;
    object-fit: contain;
    display: block;
}

.header .logo,
.header .logo img {
    height: 80px !important;
    max-height: 80px !important;
    max-width: 300px !important;
}

.logo:hover {
    filter: brightness(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

.nav-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 11;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #FFFFFF;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-cta-header {
    background: var(--color-green-dark);
    color: #FFFFFF;
    border: 1px solid rgba(20, 30, 20, 0.4);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    z-index: 11;
    display: inline-block;
    text-decoration: none;
}

.btn-cta-header:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(20, 30, 20, 0.5);
    border-color: rgba(20, 30, 20, 0.4);
}

/* SEÇÃO HERO */
.hero {
    background: linear-gradient(180deg, #000000 0%, #030503 100%);
    padding: 80px 0 150px 0;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 60, 100, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.hero-left {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-width: 0;
}

/* Badge Black Friday */
.blackfriday-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 50%, #990000 100%);
    color: #FFFFFF;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.3);
    animation: blackfriday-pulse 2s ease-in-out infinite;
    font-family: var(--font-sans);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes blackfriday-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 0, 0, 0.7), 0 0 40px rgba(255, 0, 0, 0.5);
    }
}

.blackfriday-label {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: #FFFFFF;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 2px 15px rgba(255, 0, 0, 0.4);
    font-family: var(--font-sans);
}

.blackfriday-badge-large {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 50%, #990000 100%);
    color: #FFFFFF;
    padding: 20px 50px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 6px 40px rgba(255, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.4);
    animation: blackfriday-pulse 2s ease-in-out infinite;
    font-family: var(--font-sans);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.floating-blackfriday {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: #FFFFFF;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
    font-family: var(--font-sans);
    width: fit-content;
    white-space: nowrap;
}

.hero-headline {
    font-family: var(--font-luxury);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #FFFFFF;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

/* Garantir que LACOSTE não seja quebrado */
.hero-headline {
    white-space: pre-line;
}

.hero-headline::before {
    content: '';
    display: inline-block;
    width: 0;
}

.hero-subtitle {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 300;
    font-family: var(--font-elegant);
    font-style: italic;
    letter-spacing: 1px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-width: 0;
}

.pricing-inline {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(20, 30, 20, 0.2);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.pricing-inline .price-new {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-luxury);
    letter-spacing: 1.5px;
    line-height: 1.3;
    color: #FFFFFF;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
}

.pricing-inline .price-installment {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    margin-top: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
}

.pricing {
    margin-bottom: 0;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #FFFFFF 0%, #0a0f0a 50%, #050805 100%) 1;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(20, 30, 20, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(20, 30, 20, 0.1);
    border-right: 1px solid rgba(20, 30, 20, 0.1);
    border-bottom: 1px solid rgba(20, 30, 20, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-width: 0;
}

.price-old {
    font-size: 24px;
    color: #FFFFFF;
    text-decoration: line-through;
    margin-bottom: 5px;
    opacity: 0.7;
}

.price-new {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-luxury);
    letter-spacing: 1.5px;
    line-height: 1.3;
    color: #FFFFFF;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
}

.price-installment {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 600;
    margin-top: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(20, 30, 20, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(20, 30, 20, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(20, 30, 20, 0);
    }
}

.btn-cta-primary {
    background: var(--color-green-dark);
    color: #FFFFFF;
    border: 2px solid rgba(20, 30, 20, 0.5);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    text-decoration: none;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
}

a.btn-cta-primary {
    text-decoration: none;
    color: #FFFFFF;
}

.btn-cta-primary:hover {
    color: #FFFFFF;
    animation: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(20, 30, 20, 0.6);
    border-color: rgba(20, 30, 20, 0.5);
    text-decoration: none;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
    border: 1px solid rgba(20, 30, 20, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    border-color: rgba(0, 163, 107, 0.4);
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.12) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* PRODUTO */
.hero-right {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    background: transparent;
    padding: 40px;
    box-shadow: none;
    border-radius: 10px;
    border: none;
    backdrop-filter: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-width: 0;
}

.product-image-wrapper:hover {
    border-color: rgba(0, 163, 107, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(20, 30, 20, 0.15);
}

.limited-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-green-dark);
    color: var(--color-white);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background: transparent;
}

.watch-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-face {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 8px solid var(--color-green);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.watch-hands {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
}

.hour-hand {
    position: absolute;
    width: 3px;
    height: 50px;
    background: var(--color-white);
    top: -50px;
    left: 0.5px;
    transform-origin: bottom center;
    border-radius: 2px;
}

.minute-hand {
    position: absolute;
    width: 2px;
    height: 70px;
    background: var(--color-white);
    top: -70px;
    left: 1px;
    transform-origin: bottom center;
    border-radius: 2px;
}

.watch-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.watch-markers span {
    position: absolute;
    width: 2px;
    height: 12px;
    background: var(--color-green);
    top: 10px;
    left: 50%;
    transform-origin: bottom center;
}

.watch-markers span:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.watch-markers span:nth-child(2) { transform: translateX(-50%) rotate(30deg); }
.watch-markers span:nth-child(3) { transform: translateX(-50%) rotate(60deg); }
.watch-markers span:nth-child(4) { transform: translateX(-50%) rotate(90deg); }
.watch-markers span:nth-child(5) { transform: translateX(-50%) rotate(120deg); }
.watch-markers span:nth-child(6) { transform: translateX(-50%) rotate(150deg); }
.watch-markers span:nth-child(7) { transform: translateX(-50%) rotate(180deg); }
.watch-markers span:nth-child(8) { transform: translateX(-50%) rotate(210deg); }
.watch-markers span:nth-child(9) { transform: translateX(-50%) rotate(240deg); }
.watch-markers span:nth-child(10) { transform: translateX(-50%) rotate(270deg); }
.watch-markers span:nth-child(11) { transform: translateX(-50%) rotate(300deg); }
.watch-markers span:nth-child(12) { transform: translateX(-50%) rotate(330deg); }

.watch-crown {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-green);
    border-radius: 50%;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.watch-band {
    position: absolute;
    width: 180px;
    height: 40px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, 120px);
    border-radius: 5px;
}

/* SEÇÃO ARTESANATO */
.craftsmanship {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
}

.craftsmanship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.craftsmanship-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding-right: 20px;
}

.craftsmanship-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.craftsmanship-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.craftsmanship-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-family: var(--font-luxury);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.section-title-center {
    font-family: var(--font-luxury);
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.section-description {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.8;
    font-family: var(--font-elegant);
}

.craftsmanship-list {
    list-style: none;
}

.craftsmanship-list li {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.video-wrapper {
    position: relative;
    background: transparent;
    border-radius: 10px;
    overflow: visible;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 10px;
    overflow: visible;
    background: transparent;
    padding: 0;
}

.video-placeholder img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.watch-animation {
    width: 150px;
    height: 150px;
    position: relative;
}

.watch-face-animated {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 6px solid var(--color-green);
    position: relative;
}

.watch-hands-animated {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
}

.hour-hand-animated {
    position: absolute;
    width: 3px;
    height: 40px;
    background: var(--color-white);
    top: -40px;
    left: 0.5px;
    transform-origin: bottom center;
    animation: rotate-hour 12s linear infinite;
}

.minute-hand-animated {
    position: absolute;
    width: 2px;
    height: 55px;
    background: var(--color-white);
    top: -55px;
    left: 1px;
    transform-origin: bottom center;
    animation: rotate-minute 1s linear infinite;
}

@keyframes rotate-hour {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-minute {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.video-label {
    position: absolute;
    bottom: 15%;
    left: 52%;
    transform: translateX(-50%);
    z-index: 2;
    background: transparent;
    padding: 0;
    border-radius: 0;
    color: #6B7A4A;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Arial Black", Arial, sans-serif;
    opacity: 0.95;
    text-align: center;
    width: 100%;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1), 4px 4px 4px rgba(0, 0, 0, 0.8);
}

/* ESPECIFICAÇÕES */
.specifications {
    background: linear-gradient(180deg, #000000 0%, #030503 100%);
    padding: 100px 0;
    position: relative;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

.spec-category {
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #FFFFFF 0%, #0a0f0a 50%, #050805 100%) 1;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(20, 30, 20, 0.1);
    border-left: 1px solid rgba(201, 169, 97, 0.2);
    border-right: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-category:hover {
    border-color: rgba(20, 30, 20, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(20, 30, 20, 0.15);
}

.spec-category.animate {
    opacity: 1;
    transform: translateY(0);
}

.spec-category h3 {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 32px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
}

.spec-category strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* EXCLUSIVIDADE */
.exclusivity {
    background: var(--color-green-dark);
    color: var(--color-white);
    padding: 100px 0;
}

.exclusivity .section-title-center {
    color: var(--color-white);
}

.exclusivity-text {
    text-align: center;
    font-size: 24px;
    margin-bottom: 60px;
    color: #FFFFFF;
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.exclusivity-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.lifestyle-item {
    text-align: center;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifestyle-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lifestyle-image {
    width: 100%;
    aspect-ratio: 3/4;
    min-height: 350px;
    background: transparent;
    border-radius: 10px;
    margin-bottom: 2px;
    position: relative;
    overflow: visible;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.5s ease;
    background: transparent;
}

.lifestyle-item:hover .lifestyle-image img {
    transform: scale(1.05);
}

.lifestyle-label {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
}

/* DIFERENCIAIS */
.differentiators {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.diff-item {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.diff-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.diff-item h3 {
    font-family: var(--font-luxury);
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.chart-placeholder {
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 40px;
    border-radius: 10px;
    min-height: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 30, 20, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(20, 30, 20, 0.1);
    backdrop-filter: blur(10px);
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
    margin-bottom: 20px;
}

.chart-bar {
    width: 40px;
    background: #FFFFFF;
    border-radius: 5px 5px 0 0;
    animation: grow 1s ease-out;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

@keyframes grow {
    from { height: 0; }
}

.chart-label {
    font-size: 14px;
    color: var(--color-white);
    text-align: center;
}

.legacy-image {
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 40px;
    border-radius: 10px;
    min-height: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 30, 20, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(20, 30, 20, 0.1);
    backdrop-filter: blur(10px);
}

.legacy-placeholder {
    text-align: center;
}

.legacy-placeholder p {
    font-size: 18px;
    color: var(--color-white);
}

.community-content {
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 40px;
    border-radius: 10px;
    min-height: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(20, 30, 20, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(20, 30, 20, 0.1);
    backdrop-filter: blur(10px);
}

.community-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.community-content ul {
    list-style: none;
    text-align: left;
}

.community-content li {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--color-white);
}

/* GARANTIA */
.warranty {
    background: linear-gradient(180deg, #000000 0%, #030503 100%);
    padding: 100px 0;
    position: relative;
}

.warranty-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.warranty-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.warranty-item {
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 30px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #FFFFFF 0%, #0a0f0a 50%, #050805 100%) 1;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(20, 30, 20, 0.1);
    border-top: 1px solid rgba(20, 30, 20, 0.2);
    border-right: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.warranty-item:hover {
    border-color: rgba(20, 30, 20, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(20, 30, 20, 0.15);
}

.warranty-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.warranty-item h4 {
    font-family: var(--font-luxury);
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warranty-item p {
    font-size: 16px;
    color: var(--color-white);
}

.certificate {
    background: var(--color-green-dark);
    color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.certificate h3 {
    font-family: var(--font-luxury);
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certificate p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.cert-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: monospace;
    color: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* DEPOIMENTOS */
.testimonials {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 100%;
}

.testimonial {
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 25px;
    border-radius: 10px;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #FFFFFF 0%, #0a0f0a 50%, #050805 100%) 1;
    border-left: 1px solid rgba(201, 169, 97, 0.2);
    border-right: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(20, 30, 20, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover {
    border-color: rgba(20, 30, 20, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(20, 30, 20, 0.15);
}

.testimonial.animate {
    opacity: 1;
    transform: translateY(0);
}

.stars {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: var(--font-elegant);
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
}

/* FAQ */
.faq {
    background: linear-gradient(180deg, #000000 0%, #030503 100%);
    padding: 100px 0;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(20, 30, 20, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(20, 30, 20, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: #FFFFFF;
}

.faq-icon {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 16px;
    color: var(--color-gray-dark);
    line-height: 1.8;
}

/* ÚLTIMO CHAMADO */
.final-cta {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 100px 0;
    text-align: center;
}

.urgency-badge {
    color: #FFFFFF;
    padding: 15px 30px;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: monospace;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.countdown-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.final-headline {
    font-family: var(--font-luxury);
    font-size: 56px;
    margin-bottom: 40px;
    letter-spacing: 3px;
    color: #FFFFFF;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
}

.btn-cta-giant {
    color: #8B9A5B;
    border: none;
    padding: 25px 80px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: var(--font-luxury);
    display: inline-block;
    text-decoration: none;
}

a.btn-cta-giant {
    text-decoration: none;
    color: #8B9A5B;
}

.btn-cta-giant:hover {
    color: #8B9A5B;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* CARD FLUTUANTE - BASE */
.floating-card {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    will-change: opacity, transform;
}

.floating-card.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-card-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 15, 10, 0.95) 100%);
    border: 2px solid rgba(20, 30, 20, 0.5);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 220px;
}

.floating-card-image {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: visible;
    max-height: 120px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.floating-card-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 120px;
    min-height: 100px;
    display: block;
    border-radius: 6px;
    object-fit: contain;
    object-position: center;
}

.floating-card-price {
    text-align: center;
    margin-bottom: 10px;
}

.floating-price-main {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.floating-price-sub {
    font-size: 9px;
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 1.3;
}

@keyframes pulseFloating {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 122, 74, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(107, 122, 74, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 122, 74, 0);
    }
}

.floating-card-btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: #6B7A4A;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

a.floating-card-btn {
    text-decoration: none;
    color: #FFFFFF;
}

.floating-card-btn:hover {
    background: #8B9A5B;
    animation: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(107, 122, 74, 0.4);
    color: #FFFFFF;
    text-decoration: none;
}

/* SEÇÃO QUEM SOMOS NÓS */
.about-us {
    background: linear-gradient(180deg, #000000 0%, #030503 100%);
    padding: 100px 0;
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: var(--font-elegant);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-description:nth-child(1) {
    transition-delay: 0.1s;
}

.about-description:nth-child(2) {
    transition-delay: 0.2s;
}

.about-description:nth-child(3) {
    transition-delay: 0.3s;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 60, 100, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 10px;
    border: 1px solid rgba(20, 30, 20, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-feature-item:nth-child(1) {
    transition-delay: 0.4s;
}

.about-feature-item:nth-child(2) {
    transition-delay: 0.5s;
}

.about-feature-item:nth-child(3) {
    transition-delay: 0.6s;
}

.about-feature-item:nth-child(4) {
    transition-delay: 0.7s;
}

.about-feature-item:hover {
    border-color: rgba(20, 30, 20, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 28px;
    color: #8B9A5B;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 15px;
    color: #FFFFFF;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* RODAPÉ */
.footer {
    background: var(--color-green-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-section p {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 14px;
}

.footer-section a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #FFFFFF;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: #8B9A5B;
    transform: translateX(5px);
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
}

.security-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.security-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.security-badge svg {
    width: 28px;
    height: 28px;
    color: #8B9A5B;
    stroke: #8B9A5B;
}

.security-badge span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-dark);
    color: #FFFFFF;
    font-size: 14px;
}

/* RESPONSIVIDADE - BLACK FRIDAY */
@media (max-width: 968px) {
    .blackfriday-badge {
        font-size: 16px;
        padding: 10px 25px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .blackfriday-badge-large {
        font-size: 24px;
        padding: 15px 35px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .blackfriday-label {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .blackfriday-badge {
        font-size: 14px;
        padding: 8px 20px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    
    .blackfriday-badge-large {
        font-size: 20px;
        padding: 12px 25px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .blackfriday-label {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }
    
    .floating-blackfriday {
        font-size: 9px;
        padding: 4px 8px;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .blackfriday-badge {
        font-size: 12px;
        padding: 6px 15px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .blackfriday-badge-large {
        font-size: 18px;
        padding: 10px 20px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    
    .blackfriday-label {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    
    .floating-blackfriday {
        font-size: 8px;
        padding: 3px 6px;
        margin-bottom: 4px;
    }
}

/* RESPONSIVIDADE */
/* Ajustes gerais para evitar overflow */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Otimização de imagens */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimizeQuality;
}

img[loading="lazy"] {
    content-visibility: auto;
}

/* Tablet */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content,
    .craftsmanship-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 60px 0 100px 0;
        overflow: visible;
    }
    
    .hero-headline {
        font-size: 40px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 18px;
        word-wrap: break-word;
    }
    
    .specs-grid,
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .warranty-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-us {
        padding: 60px 0;
    }
    
    .about-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .about-feature-item {
        padding: 18px;
    }
    
    .feature-text strong {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .section-title,
    .section-title-center {
        font-size: 36px;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .final-headline {
        font-size: 36px;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .specifications,
    .exclusivity,
    .differentiators,
    .testimonials,
    .faq,
    .final-cta {
        padding: 60px 0;
        overflow: visible;
    }
    
    .countdown {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .countdown-number {
        font-size: 36px;
    }
    
    .pricing-inline .price-new {
        font-size: 28px;
        word-wrap: break-word;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 15, 10, 0.98) 100%);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(20, 30, 20, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
        font-size: 16px;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .btn-cta-header {
        display: none;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    /* Card flutuante - Tablet/Mobile inicial */
    .floating-card {
        z-index: 9999 !important;
    }
    
    .floating-card-image img {
        object-fit: contain !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Header Mobile */
    .header {
        padding: 12px 0;
        min-height: 70px !important;
        max-height: 70px !important;
        overflow: visible !important;
    }
    
    .header-content {
        gap: 10px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .logo {
        height: 45px !important;
        max-width: 150px !important;
        flex-shrink: 0;
    }
    
    .logo img {
        height: 45px !important;
        max-height: 45px !important;
        max-width: 150px !important;
        width: auto;
    }
    
    .mobile-menu-toggle {
        padding: 8px;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .nav-menu {
        width: 85%;
        max-width: 280px;
        padding: 70px 20px 20px;
        overflow-y: auto;
    }
    
    .nav-menu a {
        font-size: 15px;
        padding: 12px 0;
        white-space: nowrap;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 30px 0 60px 0;
        overflow: visible;
    }
    
    .hero-content {
        gap: 30px;
        width: 100%;
    }
    
    .hero-left {
        width: 100%;
        order: 2;
    }
    
    .hero-right {
        width: 100%;
        order: 1;
    }
    
    .hero-headline {
        font-size: 24px;
        line-height: 1.3;
        white-space: normal;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        word-wrap: break-word;
        margin-bottom: 20px;
    }
    
    .features-list {
        margin-bottom: 25px;
    }
    
    .features-list li {
        font-size: 14px;
        margin-bottom: 12px;
        word-wrap: break-word;
        line-height: 1.5;
    }
    
    .badges {
        gap: 8px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 12px;
        white-space: nowrap;
    }
    
    /* Product Image Mobile */
    .product-image-wrapper {
        padding: 15px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-image {
        width: 100%;
        max-width: 100%;
    }
    
    .product-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .limited-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 10px;
        white-space: nowrap;
    }
    
    .pricing-inline {
        margin-top: 15px;
        padding-top: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-inline .price-new {
        font-size: 18px;
        word-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 5px;
    }
    
    .pricing-inline .price-installment {
        font-size: 13px;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .btn-cta-primary {
        padding: 14px 20px;
        font-size: 13px;
        letter-spacing: 1px;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Sections Mobile */
    .section-title,
    .section-title-center {
        font-size: 24px;
        line-height: 1.3;
        word-wrap: break-word;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.6;
        word-wrap: break-word;
        margin-bottom: 25px;
    }
    
    .craftsmanship-list li {
        font-size: 14px;
        margin-bottom: 15px;
        word-wrap: break-word;
        line-height: 1.5;
    }
    
    /* Specs Grid Mobile */
    .specs-grid,
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-category {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .spec-category h3 {
        font-size: 20px;
        margin-bottom: 15px;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .spec-category li {
        font-size: 14px;
        margin-bottom: 12px;
        word-wrap: break-word;
        line-height: 1.5;
    }
    
    /* Lifestyle Grid Mobile */
    .lifestyle-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .lifestyle-image {
        min-height: 250px;
        width: 100%;
    }
    
    .lifestyle-label {
        font-size: 14px;
        word-wrap: break-word;
        margin-top: 10px;
    }
    
    /* Differentiators Mobile */
    .diff-item {
        width: 100%;
        box-sizing: border-box;
    }
    
    .diff-item h3 {
        font-size: 22px;
        word-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .chart-placeholder,
    .legacy-image,
    .community-content {
        padding: 20px 15px;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .chart {
        height: 150px;
        gap: 10px;
    }
    
    .chart-bar {
        width: 25px;
    }
    
    .chart-label {
        font-size: 12px;
        word-wrap: break-word;
    }
    
    .legacy-placeholder p,
    .community-content p {
        font-size: 15px;
        word-wrap: break-word;
        line-height: 1.6;
    }
    
    .community-content ul {
        font-size: 14px;
    }
    
    .community-content li {
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
        margin-bottom: 12px;
    }
    
    .testimonial-author {
        font-size: 13px;
        word-wrap: break-word;
    }
    
    /* Craftsmanship Mobile */
    .craftsmanship-content {
        gap: 30px;
    }
    
    .video-wrapper {
        min-height: 250px;
        width: 100%;
    }
    
    .video-placeholder {
        width: 100%;
    }
    
    .video-placeholder img {
        width: 100%;
        height: auto;
    }
    
    .video-label {
        font-size: 14px;
        bottom: 8%;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 18px 15px;
        font-size: 15px;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .faq-answer p {
        padding: 0 15px 18px;
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 50px 0;
        overflow: visible;
    }
    
    .urgency-badge {
        font-size: 14px;
        padding: 12px 20px;
        word-wrap: break-word;
        margin-bottom: 30px;
    }
    
    .countdown {
        gap: 8px;
        margin-bottom: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .final-headline {
        font-size: 22px;
        line-height: 1.3;
        word-wrap: break-word;
        margin-bottom: 30px;
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .btn-cta-giant {
        padding: 16px 30px;
        font-size: 14px;
        letter-spacing: 1px;
        width: calc(100% - 30px);
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
        overflow: visible;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-us {
        padding: 50px 0;
    }
    
    .about-description {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.7;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .about-feature-item {
        padding: 15px;
        gap: 12px;
    }
    
    .feature-text strong {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    .feature-icon {
        font-size: 22px;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .security-badge {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .security-badge svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
        word-wrap: break-word;
    }
    
    /* ========================================
       FLOATING CARD MOBILE - SOLUÇÃO DEFINITIVA
       ======================================== */
    .floating-card {
        position: fixed !important;
        bottom: 10px !important;
        right: 10px !important;
        left: 10px !important;
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
        z-index: 99999 !important;
        transform: translateY(0) !important;
        transition: opacity 0.3s ease !important;
        opacity: 0 !important;
        pointer-events: none !important;
        display: block !important;
    }
    
    .floating-card.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: all !important;
        display: block !important;
    }
    
    .floating-card-content {
        padding: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        min-height: 105px !important;
        box-sizing: border-box !important;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 15, 10, 0.98) 100%) !important;
        border: 2px solid rgba(20, 30, 20, 0.8) !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
    }
    
    .floating-card-image {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        min-height: 110px !important;
        max-height: 110px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        border-radius: 10px !important;
        overflow: visible !important;
        background: rgba(255, 255, 255, 0.15) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 5px !important;
        box-sizing: border-box !important;
    }
    
    .floating-card-image img {
        width: auto !important;
        height: auto !important;
        max-width: 100px !important;
        max-height: 100px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
        border-radius: 8px !important;
    }
    
    .floating-card-price {
        flex: 1 1 auto !important;
        text-align: left !important;
        margin: 0 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding-right: 6px !important;
    }
    
    .floating-price-main {
        font-size: 13px !important;
        font-weight: 900 !important;
        margin-bottom: 5px !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
        color: #FFFFFF !important;
        letter-spacing: 0.3px !important;
    }
    
    .floating-price-sub {
        font-size: 11px !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
        color: #FFFFFF !important;
        opacity: 0.95 !important;
    }
    
    .floating-card-btn {
        padding: 12px 16px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        min-width: 90px !important;
        text-align: center !important;
        width: auto !important;
        font-weight: 700 !important;
        letter-spacing: 0.8px !important;
        margin: 0 !important;
    }
    
    /* Telas muito pequenas (≤ 480px) */
    @media (max-width: 480px) {
        .floating-card {
            bottom: 8px !important;
            right: 8px !important;
            left: 8px !important;
            width: calc(100% - 16px) !important;
        }
        
        .floating-card-content {
            padding: 10px !important;
            gap: 10px !important;
            min-height: 95px !important;
        }
        
        .floating-card-image {
            width: 100px !important;
            height: 100px !important;
            min-width: 100px !important;
            max-width: 100px !important;
            min-height: 100px !important;
            max-height: 100px !important;
            padding: 5px !important;
        }
        
        .floating-card-image img {
            width: auto !important;
            height: auto !important;
            max-width: 90px !important;
            max-height: 90px !important;
            min-width: 70px !important;
            min-height: 70px !important;
            object-fit: contain !important;
        }
        
        .floating-price-main {
            font-size: 12px !important;
        }
        
        .floating-price-sub {
            font-size: 10px !important;
        }
        
        .floating-card-btn {
            padding: 10px 14px !important;
            font-size: 11px !important;
            min-width: 80px !important;
        }
    }
    
    /* Telas médias (481px - 640px) */
    @media (min-width: 481px) and (max-width: 640px) {
        .floating-card-content {
            padding: 13px !important;
            gap: 13px !important;
            min-height: 110px !important;
        }
        
        .floating-card-image {
            width: 115px !important;
            height: 115px !important;
            min-width: 115px !important;
            max-width: 115px !important;
            min-height: 115px !important;
            max-height: 115px !important;
        }
        
        .floating-card-image img {
            width: auto !important;
            height: auto !important;
            max-width: 105px !important;
            max-height: 105px !important;
            min-width: 85px !important;
            min-height: 85px !important;
            object-fit: contain !important;
        }
        
        .floating-price-main {
            font-size: 14px !important;
        }
        
        .floating-price-sub {
            font-size: 12px !important;
        }
    }
    
    /* Sections Padding Mobile */
    .specifications,
    .exclusivity,
    .differentiators,
    .testimonials,
    .faq,
    .craftsmanship {
        padding: 40px 0;
        overflow: visible;
    }
    
    .exclusivity-text {
        font-size: 16px;
        margin-bottom: 30px;
        word-wrap: break-word;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .final-headline {
        font-size: 28px;
    }
    
    .btn-cta-giant {
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .video-label {
        font-size: 16px;
        bottom: 10%;
    }
    
    .video-wrapper {
        min-height: 400px;
    }
    
    .specifications,
    .exclusivity,
    .differentiators,
    .testimonials,
    .faq,
    .final-cta {
        padding: 50px 0;
    }
    
    .craftsmanship {
        padding: 50px 0;
    }
    
    .product-image-wrapper {
        margin-bottom: 20px;
    }
    
    .product-image img {
        max-width: 100%;
        height: auto;
    }
    
    .badges {
        gap: 10px;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .exclusivity-text {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .chart-placeholder,
    .legacy-image,
    .community-content {
        padding: 25px;
        min-height: 250px;
    }
    
    .chart {
        height: 150px;
    }
    
    .chart-bar {
        width: 30px;
    }
    
    .badges {
        justify-content: flex-start;
    }
}

/* Ajustes para tablets */
@media (min-width: 641px) and (max-width: 968px) {
    .specs-grid,
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-headline {
        font-size: 42px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .section-title,
    .section-title-center {
        font-size: 38px;
        word-wrap: break-word;
    }
    
    .final-headline {
        font-size: 38px;
        word-wrap: break-word;
    }
    
    .pricing-inline .price-new {
        font-size: 26px;
        word-wrap: break-word;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-headline {
        font-size: 20px;
        letter-spacing: 0.5px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title,
    .section-title-center {
        font-size: 22px;
    }
    
    .final-headline {
        font-size: 20px;
    }
    
    .pricing-inline .price-new {
        font-size: 16px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .btn-cta-giant {
        padding: 14px 25px;
        font-size: 13px;
    }
}