/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background: #000000;
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 100vw;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.15) 100%);
}

.btn-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-primary .btn-text,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover .btn-text {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.btn-primary:hover .btn-icon {
    transform: translateX(3px);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

.btn-outline {
    background: transparent;
    color: #8b4a8b;
    border-color: #8b4a8b;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 27, 74, 0.1) 0%, rgba(58, 21, 58, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: #fff;
    border-color: #8b4a8b;
    text-shadow: 0 0 5px rgba(74, 27, 74, 0.5);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 35px;
    font-size: 18px;
}

.btn-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.2) 25%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.2) 75%,
        rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    animation: headerParticles 15s ease-in-out infinite;
}

@keyframes headerParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

.header.scrolled .header-gradient {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.3) 25%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.3) 75%,
        rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    justify-content: center;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6),
                0 0 20px rgba(168, 85, 247, 0.4);
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #e8d4ff;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5),
                0 0 15px rgba(168, 85, 247, 0.3);
    letter-spacing: 4px;
    margin-top: -2px;
    transition: all 0.3s ease;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5)) 
            drop-shadow(0 0 30px rgba(168, 85, 247, 0.4)) 
            drop-shadow(0 0 45px rgba(168, 85, 247, 0.3));
    animation: logoGlowImage 2s ease-in-out infinite alternate;
}

@keyframes logoGlowImage {
    0% { 
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5)) 
                drop-shadow(0 0 30px rgba(168, 85, 247, 0.4)) 
                drop-shadow(0 0 45px rgba(168, 85, 247, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.7)) 
                drop-shadow(0 0 40px rgba(168, 85, 247, 0.6)) 
                drop-shadow(0 0 60px rgba(168, 85, 247, 0.5));
    }
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.8)) 
            drop-shadow(0 0 50px rgba(168, 85, 247, 0.7)) 
            drop-shadow(0 0 75px rgba(168, 85, 247, 0.6));
}

.logo-link:hover .logo-main {
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.8),
                0 0 25px rgba(168, 85, 247, 0.6);
}

.logo-link:hover .logo-sub {
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.7),
                0 0 20px rgba(168, 85, 247, 0.5);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.nav-icon {
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.nav-link:hover .nav-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Icon Button */
.btn-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(37, 211, 102, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-whatsapp-icon:hover::before {
    left: 0;
}

.btn-whatsapp-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    border-color: rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2ee46a 0%, #1a9d8a 100%);
}

.btn-whatsapp-icon .whatsapp-icon {
    width: 22px;
    height: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    z-index: 1;
    position: relative;
    fill: currentColor;
}

.btn-whatsapp-icon:hover .whatsapp-icon {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.whatsapp-icon {
    font-size: 1.1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(168, 85, 247, 0.3);
}

/* Main Content */
.main {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-card {
    background-image: url('../images/podfast.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 30px 30px;
    border: 1px solid rgba(27, 0, 4, 0.2);
    box-shadow: 0 20px 60px rgba(27, 0, 4, 0.3);
    padding: 0;
    max-width: 100vw;
    width: 100%;
    height: calc(100vh - 4rem);
    position: absolute;
    top: 4rem;
    left: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Otimizações para alta qualidade com cover */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    /* Força renderização em alta resolução */
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.hero-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 70%, #000 100%);
    pointer-events: none;
}

/* Removido efeito hover da imagem hero */

/* .hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b4a8b 0%, #a052a0 100%);
    border-radius: 30px 30px 0 0;
} */


/* Responsividade para Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 0;
        min-height: auto; /* evita espaço vazio após reduzir a altura do hero-card */
    }
    
    .hero-card {
        background-image: url('https://i.postimg.cc/yNhLmRYs/Podfast-430-x-537-px.png');
        background-size: cover;
        background-position: center;
        border-radius: 0 0 20px 20px;
        height: 52vh; /* base para mobile */
        position: relative; /* entra no fluxo */
        top: 0;
        margin-top: 3.25rem; /* compensa header fixo */
        z-index: 0;
        /* Otimizações para mobile com cover */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: high-quality;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .vantagens-section {
        padding-top: 3rem; /* reduz distância abaixo do hero */
        background: #000; /* garante fundo sólido atrás dos cards translúcidos */
    }
    .section-header {
        margin-bottom: 2rem;
    }
}

/* Ajustes finos do hero para telas móveis estreitas */
@media (max-width: 430px) {
    .hero-card {
        /* Reenquadramento para evitar cortes ruins no iPhone 12/13/14 */
        background-position: 35% center; /* puxa levemente à esquerda */
        height: 50vh; /* reduz estiramento vertical da arte 430x537 */
    }
}

/* Faixa específica do iPhone 12/13 Pro (≈390px de largura) */
@media (min-width: 385px) and (max-width: 395px) {
    .hero-card {
        background-position: 33% center;
        height: 48vh;
    }
}

@keyframes heroParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes smokeEffect {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-text {
    color: #e8e8e8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 27, 74, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(74, 27, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 27, 74, 0.2), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.badge-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(74, 27, 74, 0.5));
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: #8b4a8b;
    text-shadow: 0 0 5px rgba(74, 27, 74, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }

.title-line.highlight {
    background: linear-gradient(135deg, #8b4a8b 0%, #a052a0 50%, #8b4a8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(74, 27, 74, 0.5);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #d4d4d4;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(74, 27, 74, 0.2);
    border: 1px solid rgba(74, 27, 74, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(74, 27, 74, 0.3);
    border-color: rgba(74, 27, 74, 0.4);
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 27, 74, 0.1) 0%, rgba(58, 21, 58, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-glow {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8b4a8b;
    display: block;
    text-shadow: 0 0 10px rgba(74, 27, 74, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d4d4d4;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(74, 27, 74, 0.2);
    border: 1px solid rgba(74, 27, 74, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-item:hover {
    transform: translateY(-2px);
    background: rgba(74, 27, 74, 0.3);
    border-color: rgba(74, 27, 74, 0.4);
}

.trust-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 27, 74, 0.1) 0%, rgba(58, 21, 58, 0.1) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover .trust-glow {
    opacity: 1;
}

.trust-icon {
    color: #8b4a8b;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(74, 27, 74, 0.5);
}

.trust-text {
    color: #d4d4d4;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-pod {
    position: absolute;
    animation: floatAround 8s ease-in-out infinite;
}

.pod-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.pod-2 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

.pod-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.floating-pod img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Vantagens Section */
.vantagens-section {
    padding: 6rem 0 4rem 0;
    background: transparent;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    color: #e8e8e8;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(27, 0, 4, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #d4d4d4;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #25d366;
    border-radius: 20px 20px 0 0;
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    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.2);
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-icon img,
.icon-check,
.icon-economia,
.icon-entrega {
    width: 80px;
    height: 80px;
    fill: #25d366;
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Otimizações para ícones de imagem em alta resolução */
.advantage-icon img {
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    /* Garantir que o glow seja aplicado corretamente */
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.4));
}

.advantage-card:hover .advantage-icon img,
.advantage-card:hover .icon-check,
.advantage-card:hover .icon-economia,
.advantage-card:hover .icon-entrega {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(37, 211, 102, 0.6));
    fill: #2ee46a;
}

/* Efeito hover específico para ícones de imagem */
.advantage-card:hover .advantage-icon img {
    filter: drop-shadow(0 0 25px rgba(37, 211, 102, 0.6)) 
            drop-shadow(0 0 35px rgba(37, 211, 102, 0.4));
    transform: scale(1.1) rotate(5deg);
}

.advantage-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .advantage-title {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.advantage-text {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .advantage-text {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Garantias Section */
.garantias-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.garantias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.garantia-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(97, 53, 162, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.garantia-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 50px rgba(97, 53, 162, 0.25),
        0 0 80px rgba(97, 53, 162, 0.15);
    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.2);
}

.garantia-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.garantia-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(97, 53, 162, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.garantia-card:hover .garantia-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(97, 53, 162, 0.6));
}

.garantia-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.garantia-content {
    color: #e0e0e0;
    line-height: 1.8;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.garantia-intro {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #d4d4d4;
}

.garantia-subsection {
    margin-bottom: 1.25rem;
}

.garantia-subsection:last-of-type {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6135A2;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(97, 53, 162, 0.5);
}

.subsection-text {
    font-size: 1rem;
    color: #d4d4d4;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.subsection-text strong {
    color: #ffffff;
    font-weight: 600;
}

.garantia-options {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.garantia-options li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #d4d4d4;
    line-height: 1.6;
}

.garantia-options li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6135A2;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(97, 53, 162, 0.5);
}

.garantia-options li strong {
    color: #ffffff;
    font-weight: 600;
}

.garantia-note {
    margin-top: auto;
    padding: 1rem 1.5rem;
    background: rgba(97, 53, 162, 0.1);
    border-left: 3px solid #6135A2;
    border-radius: 8px;
}

.garantia-note p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-style: italic;
}

.garantia-commitment {
    margin-top: auto;
    padding: 1rem 1.5rem;
    background: rgba(97, 53, 162, 0.1);
    border-left: 3px solid #6135A2;
    border-radius: 8px;
}

.garantia-commitment p {
    margin: 0;
    font-size: 0.95rem;
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.7;
}

.garantia-commitment strong {
    color: #ffffff;
    font-weight: 600;
    font-style: normal;
}

/* Responsive Garantias */
@media (max-width: 768px) {
    .garantias-section {
        padding: 4rem 0;
    }
    
    .garantias-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .garantia-card {
        padding: 1.5rem;
    }
    
    .garantia-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 1rem;
    }
    
    .garantia-title {
        font-size: 1.5rem;
    }
    
    .garantia-icon {
        font-size: 2rem;
    }
}

/* Promoções Section */
.promocoes-section {
    padding: 2rem 0 6rem 0;
    background: transparent;
    position: relative;
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.promocao-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.promocao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6135A2 0%, #6d3fb0 50%, #6135A2 100%);
    border-radius: 25px 25px 0 0;
}

.promocao-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    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.2);
}

.promocao-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 
        0 4px 15px rgba(255, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(255, 68, 68, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 6px 20px rgba(255, 68, 68, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.promocao-image {
    margin: 1rem 0 1.5rem;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 0.5rem;
}

.promocao-image .product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 30px rgba(0, 255, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    transform: scale(1.1);
}

.promocao-card:hover .promocao-image .product-img {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 0 40px rgba(0, 255, 0, 0.4));
}

.promocao-content {
    position: relative;
    z-index: 2;
}

.promocao-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promocao-card:hover .promocao-title {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.promocao-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.1rem;
    color: #888888;
    text-decoration: line-through;
    position: relative;
}

.price-old::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff4444;
    transform: rotate(-5deg);
}

.price-new {
    font-size: 2rem;
    font-weight: 800;
    color: #6135A2;
    text-shadow: 0 0 15px rgba(97, 53, 162, 0.7);
    position: relative;
}

.price-new::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6135A2, transparent);
    border-radius: 2px;
    opacity: 0.8;
}

.btn-promocao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(97, 53, 162, 0.3) 0%, 
        rgba(109, 63, 176, 0.25) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: 1px solid rgba(97, 53, 162, 0.4);
    box-shadow: 
        0 8px 25px rgba(97, 53, 162, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-promocao::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(97, 53, 162, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-promocao:hover::before {
    left: 100%;
}

.btn-promocao:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(97, 53, 162, 0.4) 0%, 
        rgba(109, 63, 176, 0.35) 100%);
    border-color: rgba(97, 53, 162, 0.6);
    box-shadow: 
        0 12px 35px rgba(97, 53, 162, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-promocao svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: currentColor;
    fill: none;
}

.btn-promocao:hover svg {
    transform: translateX(5px);
}

/* Responsive Promoções */
@media (max-width: 768px) {
    .promocoes-section {
        padding: 4rem 0;
    }
    
    .promocoes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promocao-card {
        padding: 1.5rem;
    }
    
    .promocao-image {
        height: 200px;
    }
    
    .promocao-title {
        font-size: 1.3rem;
    }
    
    .price-new {
        font-size: 1.75rem;
    }
    
    .promocao-badge {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Products Section / Lançamentos */
.products-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.lancamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.lancamento-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 0.5rem;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(97, 53, 162, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 100%;
}

.lancamento-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 50px rgba(97, 53, 162, 0.25),
        0 0 80px rgba(97, 53, 162, 0.15);
    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.2);
}

.lancamento-image {
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: transparent;
    display: block;
    line-height: 0;
}

.criativo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    max-width: 100%;
}

.lancamento-card:hover .criativo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 30px rgba(97, 53, 162, 0.2));
}

/* Responsive Lançamentos */
@media (max-width: 768px) {
    .products-section {
        padding: 4rem 0;
    }
    
    .lancamentos-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .lancamento-card {
        padding: 0.4rem;
        width: 100%;
        max-width: 100%;
    }
    
    .lancamento-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

.products-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.products-cta {
    text-align: center;
}

/* Delivery Section */
.delivery-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.delivery-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.delivery-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
}

.delivery-creative {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 30px rgba(97, 53, 162, 0.2));
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.delivery-image-wrapper:hover .delivery-creative {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 50px rgba(97, 53, 162, 0.4))
            drop-shadow(0 0 80px rgba(97, 53, 162, 0.2));
}

.delivery-text {
    position: relative;
}

.delivery-text-content {
    padding: 2rem 0;
}

.delivery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.delivery-description {
    font-size: 1.2rem;
    color: #d4d4d4;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(27, 0, 4, 0.2);
}

.delivery-thanks {
    font-size: 1.1rem;
    color: #6135A2;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(97, 53, 162, 0.4);
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, 
        rgba(97, 53, 162, 0.15) 0%, 
        rgba(109, 63, 176, 0.1) 100%);
    border-left: 3px solid #6135A2;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Responsive Delivery */
@media (max-width: 968px) {
    .delivery-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .delivery-image {
        order: 1; /* arte antes do texto no mobile */
        justify-content: center;
    }
    
    .delivery-text {
        order: 2;
        text-align: center;
    }
    
    .delivery-title {
        font-size: 2rem;
    }
    
    .delivery-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .delivery-section {
        padding: 4rem 0;
    }
    
    .delivery-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .delivery-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .delivery-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .delivery-thanks {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .delivery-image-wrapper {
        max-width: 100%;
        padding: 0;
    }
}

/* Footer */
.footer {
    background: transparent;
    color: #e8e8e8;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
    /* Removido filtro para manter cores originais */
}

.footer-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-certification {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #25d366;
}

.contact-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.pix-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.payment-text {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: #808080;
    font-size: 0.85rem;
    margin: 0;
}

.certification-image {
    width: 143px;
    height: 65px;
    /* Removido filtro para preservar cores originais */
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Centraliza contatos horizontalmente no mobile */
    .contact-info { 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    .contact-info p { 
        justify-content: center; 
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-btn {
        justify-content: center;
    }
    
    .payment-methods {
        align-items: center;
    }
    
    .footer-certification {
        justify-content: center;
    }
    
    .certification-image {
        width: 100px;
        height: 45px;
    }
}

/* Shopping Cart */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: flex;
    opacity: 1;
}

.cart-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-overlay.active .cart-sidebar {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    background: #fff;
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-count {
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #000;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-body {
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.cart-item {
    background: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.cart-item-flavor {
    font-size: 0.85rem;
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.3);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: all 0.2s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.remove-item {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: auto;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
}

.remove-item:hover {
    background: linear-gradient(135deg, #ff6666 0%, #ff0000 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
}

.cart-footer {
    padding: 1.5rem;
    background: #fff;
    border-top: 2px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.total-label {
    color: #333;
}

.total-price {
    color: #00ff00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    font-size: 1.4rem;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-actions .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cart-actions .btn-primary {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
    border: 2px solid #00ff00;
    box-shadow: 
        0 8px 25px rgba(0, 255, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cart-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 255, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #00ff00 0%, #00ff33 100%);
}

.cart-actions .btn-secondary {
    background: rgba(0, 0, 0, 0.1);
    color: #333333;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cart-actions .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1500;
    transition: transform 0.3s ease;
}

.floating-cart:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.floating-cart .cart-icon {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        display: none;
    }
    
    .products-carousel {
        display: block;
    }
    
    .delivery-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100vw;
    }
    
    .floating-cart {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 769px) {
    .products-carousel {
        display: none;
    }
    
    .products-grid {
        display: grid;
    }
}

/* Utility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.advantage-card,
.product-card {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.cart-close:focus,
.quantity-btn:focus,
.remove-item:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.nav-link:focus {
    outline: none;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Error states */
.error {
    border-color: #ff4444 !important;
    background-color: #ffe6e6 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-main {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .logo-sub {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .btn-whatsapp-icon {
        width: 38px;
        height: 38px;
        padding: 8px;
    }
    
    .btn-whatsapp-icon svg {
        width: 20px;
        height: 20px;
    }

    /* CTA Ver Produtos - estilo pílula com duas linhas */
    .header-actions .btn.btn-primary.btn-sm {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        background: rgba(12, 12, 12, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
        border-radius: 16px;
        padding: 10px 14px;
        height: 44px;
        min-width: 160px;
        color: #fff;
        text-transform: uppercase;
        backdrop-filter: blur(6px) saturate(140%);
    }

    .header-actions .btn.btn-primary.btn-sm .btn-text {
        display: block;
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-align: center;
        white-space: normal;
        width: 100%;
    }

    .header-actions .btn.btn-primary.btn-sm .btn-icon {
        font-weight: 800;
        margin-left: 2px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .floating-pod img {
        width: 60px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .rules-section {
        padding: 2rem 1.5rem;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.5rem 0.75rem;
    }
    
    .logo-container {
        gap: 0.4rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .logo-main {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .logo-sub {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .header-actions {
        gap: 0.75rem;
    }
    
    .btn-whatsapp-icon {
        width: 34px;
        height: 34px;
        padding: 6px;
    }
    
    .btn-whatsapp-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile-menu-toggle {
        padding: 4px;
    }
    
    .hamburger {
        width: 20px;
        height: 2px;
    }
    
    /* CTA menor em telas muito pequenas */
    .header-actions .btn.btn-primary.btn-sm {
        padding: 8px 12px;
        height: 42px;
        min-width: 148px;
        border-radius: 14px;
    }
    
    .header-actions .btn.btn-primary.btn-sm .btn-text {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .advantage-card {
        padding: 1.5rem 1rem;
    }
    
    .rules-section {
        padding: 1.5rem 1rem;
    }
    
    .rule-item {
        padding: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 1rem;
    }
    .vantagens-section {
        padding-top: 2.25rem;
    }
    .section-header {
        margin-bottom: 1.5rem;
    }
}

/* Checkout Page */
.checkout-page {
    min-height: 100vh;
    /* Fundo preto puro conforme solicitado */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.checkout-container {
    width: 100%;
    max-width: 980px;
    padding: 2rem 1rem;
    /* move ligeiramente para cima para um balanceamento visual melhor */
    transform: translateY(-3vh);
}

.checkout-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.checkout-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(122,0,255,0.35));
}

.checkout-card {
    position: relative;
    background:
        linear-gradient(rgba(24, 0, 40, 0.62), rgba(24, 0, 40, 0.58)) padding-box,
        linear-gradient(135deg, rgba(122,0,255,0.55), rgba(0,255,135,0.18)) border-box;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid transparent;
    border-radius: 20px;
    box-shadow:
        0 0 42px rgba(122,0,255,0.35), /* glow roxo externo */
        0 28px 70px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 -1px 0 0 rgba(255,255,255,0.05) inset;
    padding: 2rem;
    overflow: hidden; /* necessário para efeito liquid glass */
}

/* Efeito Liquid Glass: camadas de brilho e reflexo animado */
.checkout-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.18), transparent 60%),
        radial-gradient(70% 60% at 100% 0%, rgba(122,0,255,0.22), transparent 60%),
        radial-gradient(120% 100% at 50% 120%, rgba(255,255,255,0.06), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.checkout-card::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 80%;
    border-radius: 40px;
    background: linear-gradient(55deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06) 35%, transparent 60%);
    filter: blur(20px);
    transform: rotate(8deg);
    animation: glassSheen 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glassSheen {
    0% { transform: translateX(-10%) translateY(0) rotate(8deg); opacity: .35; }
    100% { transform: translateX(10%) translateY(6%) rotate(8deg); opacity: .6; }
}

.checkout-title {
    margin: 0 0 1.25rem 0;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: .3px;
    text-shadow: 0 2px 14px rgba(122,0,255,0.25);
}

.order-summary { margin-top: 1rem; }

.order-table {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    overflow: hidden;
}
.order-row {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
    position: relative;
}
.order-row:not(.order-head) {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.order-head { background: rgba(255,255,255,0.055); font-weight: 700; }
.order-subtotal { background: rgba(255,255,255,0.035); font-weight: 700; }
.order-total {
    background: rgba(255,255,255,0.035);
    font-weight: 800;
    border-top: 0; /* remove a linha dura acima */
    position: relative;
    overflow: hidden; /* para conter o glow */
}
.order-total::after {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    top: -40%;
    bottom: -40%;
    background:
        radial-gradient(120% 180% at 50% 60%, rgba(0, 255, 128, 0.35) 0%, rgba(0, 255, 128, 0.12) 40%, transparent 70%);
    filter: blur(18px);
    z-index: 0;
}
.order-total .order-col { position: relative; z-index: 1; }
.order-col.price { text-align: right; }
.product-name { font-weight: 700; margin-bottom: 0.25rem; }
.product-qty { opacity: 0.8; font-size: 0.95rem; }

.checkout-actions {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}
.checkout-actions .btn {
    height: 56px;            /* altura igual para ambos os botões */
    padding: 0 24px;         /* pad horizontal; altura controlada pela height */
    align-items: center;     /* alinha texto verticalmente */
    justify-content: center; /* centraliza conteúdo */
}
.whats-input { position: relative; }
.whats-input input {
    width: 100%;
    background: #ffffff;
    color: #111;
    padding: 14px 44px 14px 16px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.whats-input .whats-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }
.btn-finalize { width: 100%; }
.btn-back { text-align: center; }

@media (max-width: 768px) {
    .checkout-container { transform: translateY(-1.5vh); }
}

/* Responsividade específica do checkout */
@media (max-width: 480px) {
    .checkout-container {
        max-width: 420px;
        padding: 1rem;
        transform: translateY(-1vh);
    }
    .checkout-logo img { width: 96px; }
    .checkout-card { padding: 1rem 1rem 1.25rem; border-radius: 16px; }
    .checkout-title { font-size: 1.35rem; margin-bottom: 0.75rem; }
    .order-table { border-radius: 12px; }
    .order-row { grid-template-columns: 1fr auto; gap: 0.75rem; padding: 0.875rem; }
    .order-head { font-size: 0.95rem; }
    .order-col.price { white-space: nowrap; font-size: 0.95rem; }
    .product-name { font-size: 0.95rem; line-height: 1.25; }
    .product-qty { font-size: 0.85rem; }
    .btn-finalize { height: 54px; padding-right: 56px; }
    .btn-finalize .wa-icon-wrap { width: 30px; height: 30px; right: 12px; }
    .checkout-actions { gap: 0.75rem; }
}

/* Botões dentro do checkout com micro-efeitos */
.checkout-actions .btn-primary {
    background: linear-gradient(180deg, #2BD14A 0%, #12a531 100%);
    box-shadow: 0 10px 26px rgba(43, 209, 74, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
    border-radius: 12px;
}
.btn-finalize { position: relative; padding-right: 56px; }
.btn-finalize .wa-icon-wrap {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,245,245,0.96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        inset 0 -2px 6px rgba(0,0,0,0.12),
        0 0 0 2px #25D366,
        0 6px 14px rgba(0,0,0,0.32);
}
.btn-finalize .wa-icon-wrap::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    right: 6px;
    height: 38%;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
    pointer-events: none;
}
.btn-finalize .wa-icon {
    width: 19px;
    height: 19px;
    filter: drop-shadow(0 0 2px rgba(37, 211, 102, 0.6));
}
.checkout-actions .btn-primary:hover .wa-icon-wrap {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -2px 6px rgba(0,0,0,0.12), 0 0 0 2px #25D366, 0 7px 16px rgba(0,0,0,0.36);
}
.checkout-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(43, 209, 74, 0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.checkout-actions .btn-secondary {
    border: 1px solid rgba(122,0,255,0.45);
    color: #B981FF;
    border-radius: 10px;
    background: transparent;
}
.checkout-actions .btn-secondary:hover {
    background: rgba(122,0,255,0.12);
}
