/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset adicional para compatibilidade com hospedagem */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Força o carregamento de fontes */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
    src: local('Poppins'), url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
}

/* Fallbacks para imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Força o carregamento de imagens de fundo */
.hero-main-section {
    background-color: #f0f8f0; /* Fallback */
    background: #f0f8f0;
}

.hero-offer-section {
    background-color: #2d5a2d; /* Fallback */
    background: #2d5a2d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Compensar altura do header */
    background-color: #ffffff;
    min-height: 100vh;
}

:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --accent-green: #6b8e23;
    --light-green: #90ee90;
    --dark-green: #1a3d1a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --gradient-accent: linear-gradient(135deg, var(--accent-green), var(--light-green));
    --shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    --shadow-hover: 0 20px 40px rgba(45, 90, 39, 0.2);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

/* Fallbacks para flexbox */
.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2d5a27; /* Fallback para navegadores antigos */
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(45, 90, 39, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block !important;
    max-width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

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

/* Garantir que a logo apareça em todos os dispositivos */
@media (max-width: 1024px) {
    .logo-img {
        height: 38px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Fallback para logo não carregar */
.logo-img:not([src]) {
    display: none;
}

.logo-img[src] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Debug - forçar exibição da logo */
.logo img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 40px !important;
    width: auto !important;
    background: rgba(255, 0, 0, 0.1) !important; /* Debug: fundo vermelho claro */
}

.logo h2 {
    color: var(--white);
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--light-green);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Layout Melhorado */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Seção Principal - Fundo Verde Claro */
.hero-main-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 2rem 0;
    flex: 1;
    position: relative;
}

.hero-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(45, 90, 45, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo i {
    color: var(--primary-green);
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(45, 90, 45, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-subtitle {
    font-size: 1rem;
    color: #4a7c59;
    margin: 0;
    font-weight: 500;
}

.best-seller-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.product-bottle {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product-img {
    max-width: 200px;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}




.hero-title-section {
    text-align: center;
    margin-bottom: 2rem;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.main-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.small-product {
    display: flex;
    justify-content: center;
}

.small-product-img {
    width: 80px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

/* Seção de Oferta - Fundo Verde Escuro */
.hero-offer-section {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    padding: 2rem 0;
    flex: 1;
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.offer-text {
    color: white;
    flex: 1;
}

.offer-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.offer-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.offer-text p {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4CAF50;
}

.old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: #90EE90;
}

.product-bundle {
    flex: 0 0 auto;
    width: 120px;
    display: flex;
    justify-content: center;
}

.bundle-image {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.bundle-image:hover {
    transform: translateY(-5px) scale(1.02);
}

.cta-section {
    text-align: center;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin: 0 auto 1rem auto;
    max-width: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.guarantee-text {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.guarantee-text i {
    color: #ff6b35;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.timer-box {
    background: #333;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.timer-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    color: #ccc;
}

/* Seção Superior - Fundo Branco */
.hero-top-section {
    background: #ffffff;
    padding: 2rem 0;
    flex: 1;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

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

.logo-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.nutritional-info {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nutritional-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.nutritional-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 1rem 0;
    text-align: center;
}

.nutrition-table {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #333;
}

.nutrition-row span:first-child {
    font-weight: 500;
}

.nutrition-row span:last-child {
    font-weight: 600;
    color: var(--primary-green);
}

.product-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.carousel-btn {
    background: #333;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-green);
}

.product-image {
    position: relative;
    width: 200px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1rem;
}

.main-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-green);
}

/* Seção Média - Fundo Verde Escuro */
.hero-middle-section {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    padding: 2rem 0;
    flex: 1;
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.offer-text {
    color: white;
    flex: 1;
}

.offer-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.offer-text p {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #4CAF50;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.product-bundle {
    flex: 1;
    display: flex;
    justify-content: center;
}


/* Seção Inferior - Fundo Azul Escuro */
.hero-bottom-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 2rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.limited-offer {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
}

.timer-box {
    background: #333;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.timer-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.timer-label {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Banner de Urgência no Topo */
.urgency-banner-top {
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    text-align: center;
    padding: 10px 0;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 10;
}

.urgency-banner-top .urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.urgency-banner-top i {
    font-size: 1.3rem;
    animation: blink 1s infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1 {
    color: #ff4444;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(255, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.title-line-1 i {
    font-size: 2.2rem;
    animation: pulse 2s infinite;
}

.title-line-2 {
    color: var(--dark-gray);
    font-size: 2.8rem;
    text-align: center;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

/* Hero CTA Section */
.hero-cta {
    margin-bottom: 2rem;
}

.price-highlight {
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 3px 10px rgba(255, 68, 68, 0.2);
}

.old-price {
    text-decoration: line-through;
    font-size: 1.2rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.discount {
    background: #fff;
    color: #ff4444;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pulse-btn {
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

/* Subtexto do botão removido para simplificar */

.urgency-text {
    text-align: center;
    color: #ff4444;
    font-weight: 600;
    font-size: 1.1rem;
    animation: blink 1.5s infinite;
}

.urgency-text i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

    .hero-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

.product-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Badge de Produto - Removido para simplificar */

/* Selos de Qualidade Simplificados */
.quality-seals {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.seal {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
}

.seal i {
    font-size: 0.8rem;
}

.product-bottle {
    position: relative;
    z-index: 2;
}

.bottle-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Elementos flutuantes removidos para simplificar */

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.bg-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.feature-list i {
    color: var(--primary-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.grid-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.stars i {
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-image {
    text-align: center !important;
    margin: 0 auto 1.5rem auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    position: relative;
    padding: 0 !important;
}

.pote-img {
    max-width: 120px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
    transition: var(--transition);
    position: relative !important;
    left: auto !important;
    right: auto !important;
}

.pote-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-left: 0.2rem;
}

.price-description {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.pricing-features i {
    color: var(--primary-green);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Urgency Banner */
.urgency-banner {
    background: #ff4444;
    color: var(--white);
    padding: 0.8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

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

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    animation: pulse 1.5s infinite;
}

.urgency-content i {
    font-size: 1.2rem;
    animation: blink 1s infinite;
}

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

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

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.guarantee i {
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    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;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-section p {
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

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

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

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    color: #adb5bd;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    color: #adb5bd;
}

/* Animations */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

    body {
        padding-top: 70px; /* Reduzir padding para mobile */
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--gradient-primary);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .logo-img {
        height: 35px !important;
        width: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(0, 255, 0, 0.1) !important; /* Debug: fundo verde claro */
    }

    .logo img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 35px !important;
        width: auto !important;
    }

    .logo h2 {
        font-size: 1.5rem;
        display: block;
    }

    .hero-main-section {
        padding: 0.5rem 0;
        background: #f0f8f0;
    }

    .hero-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(45, 90, 45, 0.1);
    }

    .logo-section {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .logo i {
        font-size: 1.5rem;
        color: #2d5a2d;
        filter: drop-shadow(0 1px 2px rgba(45, 90, 45, 0.2));
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .logo-title {
        font-size: 1.3rem;
        font-weight: 800;
        color: #333;
        line-height: 1;
        margin: 0;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    .logo-subtitle {
        font-size: 0.8rem;
        color: #4a7c59;
        margin: 0;
        line-height: 1;
        font-weight: 500;
    }

    .best-seller-badge {
        background: #ff6b35;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        gap: 0.2rem;
    }

    .product-showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 1rem 0;
        padding: 0 1rem;
    }

    .product-bottle {
        width: 80px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    .main-product-img {
        max-width: 80px;
        max-height: 100px;
        object-fit: contain;
    }



    .hero-title-section {
        text-align: center;
        margin: 1rem 0;
        padding: 0 1rem;
    }

    .main-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #2d5a2d;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }

    .main-subtitle {
        font-size: 0.8rem;
        color: #666;
        margin: 0;
    }

    .small-product {
        display: none;
    }

    .hero-offer-section {
        background: #2d5a2d;
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .offer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .offer-text {
        flex: 1;
    }

    .offer-badge {
        background: #ff6b35;
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.6rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .offer-text h2 {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 0.2rem 0;
        line-height: 1.1;
    }

    .offer-text p {
        color: white;
        font-size: 0.7rem;
        margin: 0 0 0.3rem 0;
    }

    .current-price {
        color: #90ee90;
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1;
    }

    .old-price {
        color: #ccc;
        font-size: 0.7rem;
        text-decoration: line-through;
        margin-top: 0.2rem;
    }

    .product-bundle {
        width: 100%;
        max-width: 450px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .bundle-image {
        width: 400px !important;
        height: 300px !important;
        min-width: 350px !important;
        object-fit: contain;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
        max-width: 100%;
    }

    .cta-section {
        text-align: center;
    }

    .cta-button {
        background: #ff6b35;
        color: white;
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .guarantee-text {
        color: #ccc;
        font-size: 0.7rem;
        margin-top: 0.5rem;
        text-align: center;
    }

    .countdown-timer {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .timer-box {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.4rem;
        border-radius: 4px;
        min-width: 35px;
        text-align: center;
    }

    .timer-number {
        color: white;
        font-size: 0.9rem;
        font-weight: 700;
        display: block;
    }

    .timer-label {
        color: #ccc;
        font-size: 0.6rem;
        margin-top: 0.1rem;
    }

    .nutritional-info {
        max-width: 100%;
        width: 100%;
    }

    .offer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .offer-text h2 {
        font-size: 2rem;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .bundle-bottles {
        justify-content: center;
    }

    .bundle-bottle {
        width: 60px;
        height: 80px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timer-box {
        min-width: 50px;
        padding: 0.8rem;
    }

    .timer-number {
        font-size: 1.2rem;
    }

    .hero-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-showcase {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .quality-seals {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-line-1 {
        font-size: 2rem;
    }

    .title-line-1 i {
        font-size: 1.8rem;
    }

    .title-line-2 {
        font-size: 2.2rem;
    }

    .price-highlight {
        padding: 12px 15px;
        margin-bottom: 15px;
    }

    .new-price {
        font-size: 1.8rem;
    }

    .quality-seals {
        flex-direction: column;
        gap: 5px;
    }

    .seal {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-image {
        text-align: center !important;
        margin: 0 auto 1.5rem auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        position: relative;
        padding: 0 !important;
    }

    .pote-img {
        max-width: 100px !important;
        width: auto !important;
        height: auto !important;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(45, 90, 39, 0.2);
        display: block !important;
        margin: 0 auto !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section p,
    .footer-section ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    body {
        padding-top: 60px; /* Ainda menor para mobile pequeno */
    }

    .hero-header {
        padding: 0 1rem;
    }

    .logo-title {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    .best-seller-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .main-product-img {
        max-width: 150px;
        max-height: 200px;
    }

    .woman-silhouette {
        height: 150px;
    }

    .silhouette-figure {
        width: 60px;
        height: 120px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .main-subtitle {
        font-size: 0.9rem;
    }

    .small-product-img {
        width: 60px;
        height: 80px;
    }

    .offer-text h2 {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .bundle-bottle {
        width: 40px;
        height: 60px;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .countdown-timer {
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .timer-box {
        min-width: 45px;
        padding: 0.6rem;
    }

    .timer-number {
        font-size: 1rem;
    }

    .timer-label {
        font-size: 0.6rem;
    }

    .nutritional-info {
        padding: 0.8rem;
    }

    .nutrition-table {
        gap: 0.2rem;
    }

    .nutrition-row {
        font-size: 0.7rem;
    }

    .product-image {
        width: 150px;
        height: 200px;
    }

    .offer-text h2 {
        font-size: 1.8rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .bundle-bottle {
        width: 50px;
        height: 70px;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .timer-box {
        min-width: 45px;
        padding: 0.6rem;
    }

    .timer-number {
        font-size: 1rem;
    }

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

    .hero-text {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-showcase {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .quality-seals {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

    .title-line-1 {
        font-size: 1.5rem;
    }

    .title-line-1 i {
        font-size: 1.3rem;
    }

    .title-line-2 {
        font-size: 1.6rem;
    }

    .price-highlight {
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .new-price {
        font-size: 1.5rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .discount {
        font-size: 0.9rem;
        padding: 4px 12px;
    }

    .urgency-text {
        font-size: 1rem;
    }

    .product-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        top: -5px;
        right: -5px;
    }

    /* Elementos flutuantes removidos */

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 1rem;
    }

    .benefit-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .logo-img {
        height: 30px !important;
        width: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
        background: rgba(0, 0, 255, 0.1) !important; /* Debug: fundo azul claro */
    }

    .logo img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 30px !important;
        width: auto !important;
    }

    .logo h2 {
        font-size: 1.3rem;
        display: block;
        flex-shrink: 1;
    }
}


/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Modal de Pagamento PIX */
.pix-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.pix-modal.show {
    display: flex;
}

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

.pix-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.pix-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.pix-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pix-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.pix-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.pix-modal-body {
    padding: 2rem;
}

/* Loading */
.pix-loading {
    text-align: center;
    padding: 3rem 2rem;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2d5a27;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.pix-loading p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Info do pagamento */
.pix-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.pix-amount,
.pix-plan {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pix-amount .label,
.pix-plan .label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.pix-amount .value,
.pix-plan .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a27;
}

.pix-amount .value {
    font-size: 1.5rem;
}

/* QR Code */
.pix-qr-container {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border: 2px dashed #2d5a27;
    border-radius: 12px;
}

.pix-qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
}

.pix-qr-code canvas {
    max-width: 100%;
    height: auto;
    border: 4px solid white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.pix-qr-image {
    max-width: 300px !important;
    width: 300px !important;
    height: 300px !important;
    border: 4px solid white !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    margin: 0 auto !important;
    background: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
}

.pix-instruction {
    color: #666;
    font-size: 0.95rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Código copia e cola */
.pix-copy-code {
    margin-bottom: 2rem;
}

.pix-copy-code label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.pix-code-input {
    display: flex;
    gap: 0.5rem;
}

.pix-code-input input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    color: #333;
    transition: border-color 0.3s ease;
}

.pix-code-input input:focus {
    outline: none;
    border-color: #2d5a27;
}

.pix-copy-btn {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.pix-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
}

.pix-copy-btn:active {
    transform: translateY(0);
}

/* Status */
.pix-status {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.status-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #ff9800;
    font-weight: 600;
    font-size: 1rem;
}

.status-waiting i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
}

.status-success i {
    font-size: 1.3rem;
}

/* Erro */
.pix-error {
    text-align: center;
    padding: 2rem;
    color: #dc3545;
}

.pix-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pix-error p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pix-retry-btn {
    padding: 0.8rem 2rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pix-retry-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .pix-modal {
        padding: 10px;
    }

    .pix-modal-content {
        max-width: 100%;
        border-radius: 12px;
    }

    .pix-modal-header {
        padding: 1rem;
    }

    .pix-modal-header h2 {
        font-size: 1.2rem;
    }

    .pix-modal-body {
        padding: 1.5rem;
    }

    .pix-info {
        flex-direction: column;
        gap: 1rem;
    }

    .pix-qr-code canvas {
        max-width: 250px;
    }

    .pix-code-input {
        flex-direction: column;
    }

    .pix-copy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Modal de Email */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.email-modal.show {
    display: flex;
}

.email-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.email-modal-header {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-modal-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.email-modal-header h2 i {
    font-size: 1.8rem;
}

.email-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.email-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.email-modal-body {
    padding: 2.5rem;
    text-align: center;
}

.email-icon {
    margin-bottom: 1.5rem;
}

.email-icon i {
    font-size: 4rem;
    color: #2d5a27;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.email-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.email-form {
    text-align: left;
}

.email-input-group {
    margin-bottom: 2rem;
}

.email-input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.email-input-group label i {
    color: #2d5a27;
    font-size: 1.1rem;
}

.email-input-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.email-input-group input:focus {
    outline: none;
    border-color: #2d5a27;
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
    transform: translateY(-2px);
}

.email-input-group input::placeholder {
    color: #999;
}

.email-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.email-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.email-btn-cancel,
.email-btn-submit {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.email-btn-cancel {
    background: #f0f0f0;
    color: #666;
}

.email-btn-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.email-btn-submit {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.email-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.email-btn-submit:active {
    transform: translateY(0);
}

.email-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsivo - Modal Email */
@media (max-width: 768px) {
    .email-modal {
        padding: 10px;
    }

    .email-modal-content {
        max-width: 100%;
        border-radius: 16px;
    }

    .email-modal-header {
        padding: 1.5rem 1.5rem;
    }

    .email-modal-header h2 {
        font-size: 1.3rem;
    }

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

    .email-icon i {
        font-size: 3rem;
    }

    .email-description {
        font-size: 0.95rem;
    }

    .email-modal-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .email-btn-cancel,
    .email-btn-submit {
        width: 100%;
    }
}
