/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --accent-color: #ff6b35;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 50px;
}

/* Faixa Topo */
.faixa-topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
    text-align: center;
    padding: 0.8rem 1rem;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulseTop 2s infinite;
}

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

.faixa-topo p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 50px;
    z-index: 999;
}

.navbar {
    padding: 1rem 0;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a1b 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features span {
    font-size: 1.1rem;
    font-weight: 500;
}

.disclaimer-small {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Produto Section */
.produto-section {
    padding: 5rem 0;
    background: var(--white);
}

.produto-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.produto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.produto-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.produto-info h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.produto-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.produto-lista {
    list-style: none;
    margin-top: 1rem;
}

.produto-lista li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.produto-lista li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.produto-foto {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem;
}

/* Benefícios Section */
.beneficios-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.beneficios-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.beneficio-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.beneficio-card:hover {
    transform: translateY(-10px);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.beneficio-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Como Usar Section */
.como-usar-section {
    padding: 5rem 0;
    background: var(--white);
}

.como-usar-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.passo-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.passo-numero {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.passo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.passo-card p {
    color: var(--text-light);
}

.dicas-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.dicas-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dicas-box ul {
    list-style: none;
}

.dicas-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.dicas-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.depoimentos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resultado-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.resultado-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resultado-media {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.resultado-legenda {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Comprar Section */
.comprar-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.escassez-alert {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

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

.alert-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.alert-text {
    font-size: 1.1rem;
    font-weight: 600;
}

#estoque-contador {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff200;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.comprar-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Grid de Kits */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.kit-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid #e0e0e0;
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.kit-destaque {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.kit-destaque:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge-mais-vendido,
.badge-economia-max {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.badge-economia-max {
    background: #ff0000;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.kit-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    text-align: center;
}

.kit-imagem {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: contain;
}

.kit-info {
    padding: 2rem;
}

.kit-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.kit-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.preco-kit {
    text-align: center;
    margin: 1.5rem 0;
}

.economia-tag-kit {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.preco-grande {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.parcelamento-destaque {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    margin: 1rem 0;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.parcelamento-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.parcelamento-texto {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.parcelamento-texto strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pagamento-entrega {
    background: linear-gradient(135deg, #ffe5e5, #ffcccc);
    border: 2px solid #dc3545;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #dc3545;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.kit-beneficios {
    list-style: none;
    margin: 1.5rem 0;
}

.kit-beneficios li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.btn-kit {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-kit:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.btn-kit-destaque {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-kit-destaque:hover {
    background: linear-gradient(135deg, #ff5722, #ff7733);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.garantia-pagamento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.garantia-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.garantia-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.garantia-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.social-proof-bar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.social-proof-bar p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* Pop-up de Notificação */
.notificacao-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 1.2rem;
    min-width: 320px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(-400px);
    transition: all 0.5s ease;
}

.notificacao-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.notificacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.notificacao-icon {
    font-size: 1.5rem;
}

.notificacao-fechar {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.notificacao-fechar:hover {
    color: var(--text-dark);
}

.notificacao-body {
    font-size: 0.95rem;
}

.notificacao-nome {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.notificacao-acao {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.notificacao-produto {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.notificacao-tempo {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* Modal WhatsApp */
.modal-whatsapp {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

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

.modal-whatsapp.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-whatsapp-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 420px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

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

.modal-whatsapp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-whatsapp-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.modal-fechar {
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-fechar:hover {
    color: var(--text-dark);
}

.modal-whatsapp-body {
    padding: 2rem 1.5rem;
}

.modal-icon-container {
    text-align: center;
    margin-bottom: 1rem;
}

.modal-icon {
    background: linear-gradient(135deg, #d4f4dd, #bfecc7);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.modal-titulo {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal-aviso {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.aviso-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.modal-aviso p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.modal-garantia {
    background: #d4f4dd;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    font-size: 1.5rem;
    color: #28a745;
    flex-shrink: 0;
}

.modal-garantia p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.btn-modal-principal {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modal-principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.modal-opcoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-opcao {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.modal-opcao-vermelho {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
}

.modal-opcao-verde {
    background: linear-gradient(135deg, #28a745, #218838);
    color: var(--white);
}

.modal-opcao:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-oferta {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffc107;
    color: #000;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.opcao-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.opcao-texto {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.opcao-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opcao-preco {
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-entrega {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.entrega-icon {
    font-size: 1.5rem;
}

.modal-entrega p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.btn-whatsapp-footer {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-whatsapp-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.3rem;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .produto-grid {
        grid-template-columns: 1fr;
    }

    .kits-grid {
        grid-template-columns: 1fr;
    }

    .kit-destaque {
        transform: scale(1);
    }

    .kit-destaque:hover {
        transform: translateY(-10px);
    }

    .kit-imagem {
        max-width: 180px;
        height: 180px;
    }

    .preco-grande {
        font-size: 2rem;
    }

    .parcelamento-texto {
        font-size: 1rem;
    }

    .parcelamento-texto strong {
        font-size: 1.1rem;
    }

    .pagamento-entrega {
        font-size: 1rem;
    }

    .garantia-pagamento {
        grid-template-columns: 1fr;
    }

    .placeholder-produto {
        height: 300px;
    }

    .produto-foto {
        height: 300px;
    }

    .notificacao-popup {
        min-width: 280px;
        left: 10px;
        bottom: 10px;
    }

    .passos-grid,
    .beneficios-grid,
    .resultados-grid {
        grid-template-columns: 1fr;
    }

    .resultado-media {
        height: 280px;
    }

    /* Modal WhatsApp Mobile */
    .modal-whatsapp-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-whatsapp-body {
        padding: 1.5rem 1rem;
    }

    .modal-titulo {
        font-size: 1.3rem;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .modal-aviso,
    .modal-garantia {
        padding: 0.8rem;
    }

    .modal-aviso p,
    .modal-garantia p {
        font-size: 0.9rem;
    }

    .btn-modal-principal {
        font-size: 1rem;
        padding: 1rem;
    }

    .opcao-preco {
        font-size: 1rem;
    }

    .opcao-label {
        font-size: 0.75rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .btn-whatsapp-footer {
        margin: 1rem auto;
        justify-content: center;
    }

    /* Faixa Topo Mobile */
    .faixa-topo p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-kit {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .escassez-alert {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .alert-text {
        font-size: 0.95rem;
    }

    #estoque-contador {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .kit-info {
        padding: 1.5rem;
    }

    .kit-header {
        padding: 1.5rem;
    }

    .kit-imagem {
        max-width: 150px;
        height: 150px;
    }

    .preco-grande {
        font-size: 1.8rem;
    }

    .parcelamento-destaque {
        padding: 0.8rem;
    }

    .parcelamento-icon {
        font-size: 1.2rem;
    }

    .pagamento-entrega {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .economia-tag-kit {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }

    .badge-mais-vendido,
    .badge-economia-max {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* Modal WhatsApp Pequeno */
    .modal-whatsapp-header {
        padding: 1rem;
    }

    .modal-whatsapp-header h3 {
        font-size: 1.2rem;
    }

    .modal-fechar {
        font-size: 1.5rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .modal-titulo {
        font-size: 1.2rem;
    }

    .modal-opcao {
        padding: 0.8rem;
    }

    .opcao-icon {
        font-size: 1.5rem;
    }

    .opcao-preco {
        font-size: 0.95rem;
    }

    .badge-oferta {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-modal-principal {
        font-size: 0.95rem;
        padding: 0.9rem;
    }

    .modal-entrega {
        padding: 0.8rem;
    }

    .modal-entrega p {
        font-size: 0.85rem;
    }

    /* Faixa Topo Pequeno */
    .faixa-topo {
        padding: 0.6rem 0.5rem;
    }

    .faixa-topo p {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Footer Pequeno */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .btn-whatsapp-footer {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .whatsapp-icon {
        font-size: 1.2rem;
    }

    /* Garantia Pagamento Pequeno */
    .garantia-item {
        padding: 1.5rem;
    }

    .garantia-icon {
        font-size: 2.5rem;
    }

    /* Resultado Media Pequeno */
    .resultado-media {
        height: 250px;
    }
}

@media (max-width: 360px) {
    .faixa-topo p {
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .preco-grande {
        font-size: 1.5rem;
    }

    .modal-whatsapp-content {
        width: 98%;
    }

    .opcao-preco {
        font-size: 0.85rem;
    }

    .opcao-label {
        font-size: 0.7rem;
    }
}
