:root {
    --primary: #c8a24d;
    --dark: #2f4f4f;
    --bg: #f7f5f2;
    --shadow-light: 0 8px 20px rgba(0,0,0,.05);
    --shadow-hover: 0 12px 24px rgba(0,0,0,.08);
    --shadow-strong: 0 15px 30px rgba(0,0,0,.15);
    --whatsapp: #25D366;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: #2b2b2b;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 56px 16px;
}

/* ===== HERO COM VÍDEO ===== */
.hero {
    position: relative;
    color: white;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
}

.hero p {
    margin-top: 12px;
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* ===== BOTÕES ===== */
.btn {
    padding: 16px 32px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn.primary:hover {
    background: #b89240;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 162, 77, 0.4);
}

.btn.outline {
    border: 2px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn.outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===== BOTÃO PLAY VÍDEO ===== */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(200, 162, 77, 0.85);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    justify-content: center;
}

.video-play-btn:hover {
    background: rgba(184, 146, 64, 0.95);
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.video-play-btn::before {
    content: '▶';
    font-size: 1.2rem;
}

/* ===== LOADING DO VÍDEO ===== */
.hero-video.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

/* ===== SEÇÕES ===== */
.target, .benefits, .products, .social-proof, .story, .cta {
    scroll-margin-top: 80px;
}

.target .container, .benefits .container {
    text-align: center;
}

.target h2, .benefits h2, .products h2, .social-proof h2, .story h2, .cta h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.target h2::after, .benefits h2::after, .products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

/* ===== CARDS ===== */
.card, .benefit, .product, blockquote {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.6s ease;
    will-change: transform, opacity;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover, .benefit:hover, .product:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.card h3, .benefit h3, .product h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.card p, .benefit p, .product p {
    color: #666;
    line-height: 1.6;
}

/* ===== BENEFÍCIOS ===== */
.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== PRODUTOS ===== */
.product {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), #b89240);
    opacity: 0.7;
}

/* ===== BLOCKQUOTES ===== */
blockquote {
    font-style: italic;
    position: relative;
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    border-left: none;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

blockquote::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    bottom: -40px;
    right: 20px;
    font-family: 'Playfair Display', serif;
}

/* ===== STORY ===== */
.story {
    background: #edeae3;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c8a24d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.story .container {
    position: relative;
    z-index: 1;
}

.story p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--dark) 0%, #1f3333 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200,162,77,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn.primary {
    font-size: 1.1rem;
    padding: 18px 40px;
    position: relative;
    overflow: hidden;
}

.cta .btn.primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta .btn.primary:hover::after {
    left: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a2b2b;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 40px 16px;
    font-size: 0.95rem;
}

.footer p {
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* ===== SEÇÃO DE PRODUTOS ===== */
.products {
    background: linear-gradient(to bottom, var(--bg) 0%, #f0ede6 100%);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout do produto */
.product {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

/* Imagem do produto */
.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product:hover .product-overlay {
    opacity: 1;
}

.product-view-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-view-btn:hover {
    background: white;
    transform: scale(1.05);
}

/* Conteúdo do produto */
.product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-description {
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

/* Preço dos produtos */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 5px 0;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.feature {
    background: #f7f5f2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

/* Botão WhatsApp nos produtos */
.product-whatsapp {
    background: var(--whatsapp);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ===== MODAL DE DETALHES ===== */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.product-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f7f5f2;
    color: #333;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info h3 {
    font-size: 2rem;
    color: var(--dark);
}

.modal-info p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Preço no modal */
.modal-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 10px 0;
}

.modal-price span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.modal-price span:last-child {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-features .feature {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.modal-whatsapp {
    background: var(--whatsapp);
    border: none;
}

.modal-whatsapp:hover {
    background: #1da851;
}

.modal-close-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
}

.modal-close-btn:hover {
    background: #f7f5f2;
    border-color: #bbb;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Fallback para imagens que não carregam */
.product-image img {
    background: linear-gradient(45deg, #f7f5f2 25%, #edeae3 25%, #edeae3 50%, #f7f5f2 50%, #f7f5f2 75%, #edeae3 75%, #edeae3);
    background-size: 20px 20px;
}

/* Efeito de shimmer nas imagens enquanto carregam */
.product-image.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.4) 50%, 
        transparent 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    to { 
        transform: translate(-50%, -50%) rotate(360deg); 
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ===== MEDIA QUERIES ===== */

/* TABLET */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modal-buttons {
        flex-direction: row;
    }
    
    .modal-buttons .btn {
        flex: 1;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
        margin-bottom: 24px;
    }
    
    .hero p {
        font-size: 1.4rem;
        max-width: 700px;
    }
    
    .hero-buttons {
        margin-top: 48px;
    }
    
    .btn {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .container {
        padding: 80px 20px;
    }
    
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .target h2, .benefits h2, .products h2, .social-proof h2 {
        font-size: 2.5rem;
    }
    
    .story h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .story p {
        font-size: 1.3rem;
    }
    
    .cta h2 {
        font-size: 2.8rem;
    }
    
    .hero-video video {
        transform: scale(1.03);
        transition: transform 10s ease;
    }
    
    .hero:hover .hero-video video {
        transform: scale(1.05);
    }
    
    .product-image {
        height: 320px;
    }
    
    .product h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr 1fr;
    }
    
    .modal-image {
        height: auto;
        max-height: 500px;
    }
}

/* GRANDES DESKTOPS */
@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .hero-video video {
        display: none;
    }
    
    .hero-video::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../img/hero-desktop.jpg') center/cover;
    }
    
    .card, .benefit, .product, blockquote,
    .btn, .video-play-btn,
    .cta .btn.primary::after,
    .product-whatsapp,
    .modal-whatsapp {
        transition: none !important;
        animation: none !important;
    }
    
    .hero-video.loading::before {
        display: none;
    }
}

/* FOCO VISÍVEL PARA ACESSIBILIDADE */
.btn:focus-visible,
.video-play-btn:focus-visible,
.product-view-btn:focus-visible,
.product-whatsapp:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(200, 162, 77, 0.3);
}

/* ESTILOS PARA PRINT */
@media print {
    .hero-video,
    .video-play-btn,
    .hero-buttons,
    .btn,
    .whatsapp-float,
    .product-whatsapp,
    .modal-whatsapp {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
    }
    
    .hero h1 {
        color: black;
        text-shadow: none;
    }
    
    .card, .benefit, .product, blockquote {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .product-price .old-price {
        color: #666;
    }
}

/* ===== BANNER DE PROMOÇÃO ===== */
.promo-banner {
    background: linear-gradient(135deg, #c8a24d 0%, #b89240 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin: 30px auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(200, 162, 77, 0.3);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.promo-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.promo-text strong {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.promo-badge {
    background: white;
    color: #c8a24d;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* ===== BADGE NOS PRODUTOS EM FALTA ===== */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    animation: badgePulse 2s infinite;
}

/* ===== BADGE NOS PRODUTOS EM ESTOQUE===== */
.product-badge-estoque {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0ae203;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== PREÇO REORGANIZADO ===== */
.product-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0;
    background: #f9f7f3;
    padding: 12px;
    border-radius: 10px;
}

.price-original {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-original .old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.price-current {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.price-current .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ===== BANNER INFERIOR ===== */
.promo-footer {
    background: #f7f5f2;
    border: 2px dashed var(--primary);
    padding: 20px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
    color: #666;
}

.promo-footer p {
    margin: 0;
    font-size: 1.1rem;
}

.promo-footer strong {
    color: var(--dark);
}

/* ===== BOTÃO WHATSAPP ATUALIZADO ===== */
.product-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.product-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ===== ATUALIZAÇÃO DO MODAL ===== */
.modal-price {
    background: #f9f7f3;
    padding: 20px;
    border-radius: 12px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-price-original {
    font-size: 1.1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-price-original span {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.modal-price-current {
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.modal-price-current span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.modal-badge {
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    align-self: flex-start;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
        text-align: center;
    }
    
    .promo-text {
        font-size: 1rem;
    }
    
    .price-current .price {
        font-size: 1.8rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}