/* --- CONFIGURAÇÕES GERAIS (RESET) --- */
:root {
    --dark-green-bar: #1e5826; /* Verde escuro da barra superior */
    --logo-green-1: #103a16;    /* "LipoFit" escuro */
    --logo-green-2: #2b6426;    /* "Caps" mais claro */
    --text-black: #111111;
    --text-gray: #666666;
    --white: #ffffff;
    --border-radius: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-black);
    overflow-x: hidden; /* Evita rolagem lateral indesejada */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BACKGROUND FX (EFEITO DE LUZ DE FUNDO) --- */
/* Efeito de luz verde no canto superior esquerdo conforme imagem */
.bg-glow-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}
/* Efeito de luz verde no canto direito */
.bg-glow-right {
    position: absolute;
    top: 20%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* --- 1. CABEÇALHO (LOGO + BOTÃO) --- */
header {
    padding: 15px 0;
    background: transparent;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--logo-green-1);
}

.logo span {
    color: var(--logo-green-2);
}

.tagline {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 2px;
    font-weight: 400;
}

.btn-outline {
    border: 1px solid var(--logo-green-1);
    background: var(--logo-green-1);
    color: white;
    padding: 10px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: white;
    color: var(--logo-green-1);
}

/* --- 2. BARRA VERDE (TOP BAR) --- */
.info-bar {
    background-color: var(--dark-green-bar);
    color: white;
    padding: 18px 0;
    margin-top: 15px;
}

.info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 1.4rem;
    opacity: 0.9;
}

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.info-sub {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.9;
}

/* --- 3. HERO SECTION --- */
.hero {
    padding: 50px 0 60px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.hero-content h1 span {
    color: var(--logo-green-1); /* Verde escuro no título conforme imagem */
    display: block; /* Quebra de linha para o "LipoFit Caps." */
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    border: 1px solid var(--logo-green-1);
    color: white;
    background: var(--logo-green-1);
    padding: 15px 45px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 40px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: white;
    color: var(--logo-green-1);
}

.trust-badges {
    display: flex;
    gap: 25px;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-item i {
    color: var(--logo-green-1);
    font-size: 1.1rem;
}

/* Placeholder da Imagem do Produto */
.product-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    position: relative;
}

.product-placeholder:hover {
    animation: zoom 0.3s ease-in-out forwards;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.box-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #b0b0b0;
}

/* Responsividade básica para mobile */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .info-bar .container { flex-direction: column; gap: 20px; text-align: center; }
    .info-item { flex-direction: column; gap: 5px; }
    .trust-badges { justify-content: center; flex-wrap: wrap; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-description { margin: 0 auto 30px; }
    .bg-glow-right { display: none; }
}

/* --- NOVA SEÇÃO: BENEFÍCIOS (PART 2) --- */

/* Variáveis específicas desta seção */
:root {
    --bg-light-gray: #f8fcf9; /* Fundo muito claro, quase branco, com tom esverdeado sutil */
    --icon-bg-light: #e8f5e9; /* Fundo verde claro do ícone quadrado */
    --card-shadow: 0 10px 30px rgba(0,0,0,0.04); /* Sombra super suave */
}

.benefits-section {
    padding: 50px 0;
    background-color: var(--bg-light-gray);
    position: relative;
    overflow: hidden;
}

/* Efeito de folha no canto superior direito da seção */
.bg-leaf-right {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background-color: var(--icon-bg-light);
    color: var(--logo-green-1);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-black);
}

.section-header h2 span {
    color: var(--logo-green-1);
}

/* Grid de Cartões */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent; /* Para evitar pulo na transição */
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--icon-bg-light);
}

/* Estilo do Ícone Quadrado */
.card-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--icon-bg-light);
    border-radius: 12px; /* Bordas levemente arredondadas como na imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon-box i {
    color: var(--logo-green-1);
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--logo-green-1);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Responsividade para a grid */
@media (max-width: 992px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.8rem; }
    .benefit-card { padding: 25px; }
}
/* --- NOVA SEÇÃO: TECNOLOGIA (PART 3) --- */

.technology-section {
    padding: 40px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Folha decorativa canto inferior esquerdo */
.tech-leaf-left {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
    transform: rotate(45deg); /* Ajuste para parecer com a imagem */
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Espaçamento generoso entre imagem e texto */
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Placeholder da Imagem (Esquerda) */
.tech-image-box {
    background-color: #f1f5f9; /* Cinza muito claro */
    border-radius: 20px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1; /* Borda tracejada sutil */
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
}

.tech-image-box i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #cbd5e1;
}

/* Conteúdo de Texto (Direita) */
.tech-content {
    text-align: left;
}

.badge-formula {
    display: inline-block;
    background-color: #dcfce7; /* Verde bem claro, quase menta */
    color: #166534; /* Verde floresta para contraste */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.tech-content h2 {
    font-size: 3rem;
    font-weight: 900; /* Extra bold */
    line-height: 1.05;
    color: #000;
    margin-bottom: 30px;
}

.tech-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563; /* Cinza médio para leitura confortável */
    margin-bottom: 25px;
}

/* Destaques em verde no texto */
.highlight-green {
    color: var(--logo-green-2); /* Verde vibrante */
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 900px) {
    .tech-grid { grid-template-columns: 1fr; gap: 40px; }
    .tech-image-box { height: 450px; order: 2; /* Imagem vai para baixo no mobile */ }
    .tech-content { text-align: center; order: 1; }
    .tech-content h2 { font-size: 2.5rem; }
}
/* --- NOVA SEÇÃO: INGREDIENTES (PART 4) --- */

.ingredients-section {
    padding: 50px 0;
    background-color: var(--bg-light-gray); /* Mesmo fundo da seção Benefícios */
    position: relative;
    overflow: hidden;
}

/* Folha decorativa canto superior esquerdo */
.ing-leaf-left {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Reutilizando estilos de header da seção Benefícios, mas ajustando margens se necessário */
.ing-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Grid de Ingredientes */
.ing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.ing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden; /* Garante que a imagem respeite o arredondamento */
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Área da Imagem do Card */
.ing-img-box {
    height: 220px;
    background-color: #f8f9fa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Imagem do ingrediente */
.ing-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ing-card:hover .ing-img-box img {
    transform: scale(1.08);
}

.ing-content {
    padding: 25px 30px;
    text-align: left;
}

.ing-content h3 {
    font-size: 1.1rem;
    color: var(--logo-green-1); /* Verde escuro */
    margin-bottom: 8px;
    font-weight: 700;
}

.ing-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Responsividade Específica desta seção */
@media (max-width: 992px) {
    .ing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ing-grid { grid-template-columns: 1fr; }
    .ing-img-box { height: 200px; }
}
/* --- NOVA SEÇÃO: DEPOIMENTOS (PART 5) --- */

.testimonials-section {
    padding: 50px 0 30px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Folhas decorativas nos cantos */
.test-leaf-top-right {
    position: absolute;
    top: 20px; right: -30px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0; pointer-events: none;
}
.test-leaf-bottom-left {
    position: absolute;
    bottom: 20px; left: -30px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0; pointer-events: none;
}

.test-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.test-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Sombra suave como na imagem */
    text-align: center;
    border: 1px solid #f0f0f0; /* Borda ultra sutil no card inteiro */
}

/* Área da Foto do Depoimento */
.test-photos {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.test-photos img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    border: 2px solid var(--logo-green-1);
}

/* Labels Before/After abaixo da imagem */
.test-labels {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
    margin: 0 auto 20px;
    padding: 0 10px;
}

.photo-label {
    font-size: 0.8rem;
    margin-top: 8px;
    color: var(--text-gray);
    font-weight: 500;
}

.photo-label.green {
    color: var(--logo-green-1);
    font-weight: 700;
}

/* Texto do Depoimento */
.test-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

.test-author {
    font-weight: 700;
    color: var(--logo-green-1);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.test-author::before {
    content: "—"; /* Travessão antes do nome */
}

/* Botão largo do final da seção */
.btn-wide-outline {
    display: inline-block;
    border: 1px solid var(--logo-green-1);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
    background-color: var(--logo-green-1);
}

.btn-wide-outline:hover {
    background-color: var(--logo-green-2);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 88, 38, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .test-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 50px; }
}
/* --- NOVA SEÇÃO: SEGURANÇA (PART 6) --- */

.security-section {
    padding: 30px 0 50px;
    background-color: var(--white); /* Fundo branco limpo */
    position: relative;
    overflow: hidden;
}

/* Folha decorativa canto superior direito */
.sec-leaf-right {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.sec-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.badge-security {
    display: inline-block;
    background-color: #dcfce7;
    color: #166534;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.sec-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Lado Esquerdo: Placeholder da Imagem/Interface */
.sec-image-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    border: 1px solid #f0f0f0;
}

.sec-image-box-inner {
    width: 80%;
    height: 60%;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    flex-direction: column;
    gap: 10px;
}

/* Lado Direito: Texto e Features */
.sec-text-col p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.sec-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sec-feature-box {
    background-color: #e8f5e9; /* Fundo verde claro característico */
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.sec-feature-box i {
    font-size: 1.5rem;
    color: #1b5e20; /* Verde escuro para o ícone */
}

.sec-feature-box span {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 900px) {
    .sec-content-grid { grid-template-columns: 1fr; }
    .sec-image-box { order: 2; margin-top: 30px; }
    .sec-header { margin-bottom: 30px; }
}
@media (max-width: 500px) {
    .sec-features-grid { grid-template-columns: 1fr; }
}
/* --- NOVA SEÇÃO: GARANTIA (PART 7) --- */

.guarantee-section {
    padding: 50px 0;
    background-color: #e6f6ec; /* Fundo verde menta claro exato da imagem */
    position: relative;
    overflow: hidden;
}

/* Folha decorativa canto superior esquerdo */
.guar-leaf-left {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.guar-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Coluna da direita levemente mais larga */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Lado Esquerdo: O Gráfico "30 Dias" */
.guar-graphic {
    text-align: center;
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* O número 30 gigante ao fundo */
.bg-number-30 {
    font-size: 18rem;
    font-weight: 900;
    color: #cdecd6; /* Verde bem claro para o fundo */
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-family: 'Poppins', sans-serif;
}

/* O número 30 verde escuro na frente */
.fg-number-30 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #1b5e20; /* Verde escuro forte */
    line-height: 1;
    margin-bottom: -10px; /* Ajuste visual para colar no texto abaixo */
    position: relative;
    top: 20px; /* Ajuste fino de posição */
}

.guar-title-text {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    line-height: 0.9;
    margin-bottom: 15px;
    position: relative;
    top: 20px;
}

.guar-stars {
    color: #ffc107; /* Amarelo ouro */
    font-size: 1.8rem;
    position: relative;
    top: 20px;
    letter-spacing: 5px;
}

/* Lado Direito: Conteúdo */
.guar-content {
    text-align: left;
}

.badge-warranty {
    display: inline-block;
    background-color: #c8e6c9; /* Verde um pouco mais escuro que o fundo */
    color: #1b5e20;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.guar-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.1;
}

.guar-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Destaque em verde no texto */
.text-green-bold {
    color: #2e7d32;
    font-weight: 700;
}

/* Botão Branco com Borda Verde */
.btn-white-green {
    display: inline-block;
    background-color: #fff;
    color: #2e7d32;
    border: 2px solid #2e7d32; /* Borda verde */
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-white-green:hover {
    background-color: #2e7d32;
    color: #fff;
    transform: translateY(-2px);
}

/* Ícones de confiança abaixo do botão */
.trust-row {
    display: flex;
    gap: 20px;
    font-size: 0.75rem;
    color: #555;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: #2e7d32;
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 900px) {
    .guar-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .bg-number-30 { font-size: 12rem; } /* Reduzir o número gigante no mobile */
    .guar-content { text-align: center; }
    .trust-row { justify-content: center; flex-wrap: wrap; }
}
/* --- NOVA SEÇÃO: MODO DE USO (PART 8) --- */

.usage-section {
    padding: 50px 0;
    background-color: var(--white);
    position: relative;
}

.usage-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Cards de Passos (Step 1 / Step 2) */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px 30px; /* Padding superior maior para o badge */
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    width: 320px;
    text-align: center;
    position: relative;
    border: 1px solid #f5f5f5;
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e7d32; /* Verde escuro */
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: #f1f8e9; /* Verde muito claro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

/* Cores específicas para ícones */
.icon-sun { color: #fbc02d; background-color: #fffde7; }
.icon-food { color: #9fa8da; background-color: #e8eaf6; }

.step-card h3 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.step-check {
    color: #4caf50;
    font-size: 1.5rem;
}

/* Barra Verde de Recomendação */
.rec-banner {
    background-color: #1b5e20; /* Verde bem escuro */
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.rec-banner h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rec-banner p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Barra Amarela de Aviso */
.warn-banner {
    background-color: #fffde7; /* Amarelo bem claro */
    border: 1px solid #fbc02d;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.warn-banner h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warn-banner p {
    font-size: 0.85rem;
    color: #555;
}

/* Container de Contraindicações */
.contra-box {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-radius: 15px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contra-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contra-item {
    background-color: #fff5f5; /* Vermelho/Rosa bem claro */
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contra-icon {
    background-color: #ffebee;
    color: #e53935; /* Vermelho alerta */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contra-text h5 {
    font-size: 0.9rem;
    color: #1a237e; /* Azul escuro quase preto conforme imagem */
    margin-bottom: 3px;
    font-weight: 700;
}

.contra-text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

.disclaimer-text {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    margin-top: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .steps-container { flex-direction: column; align-items: center; }
    .contra-grid { grid-template-columns: 1fr; }
    .step-card { width: 100%; max-width: 320px; }
}
/* --- NOVA SEÇÃO: CERTIFICAÇÃO (PART 9) --- */

.certification-section {
    padding: 50px 0;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.cert-card {
    background-color: #f0fdf4; /* Verde menta muito claro e fresco */
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #dcfce7; /* Borda sutil para definição */
}

.cert-logo-box {
    width: 120px;
    height: 120px; /* Tamanho estimado do logo */
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo-box img {
    max-width: 100%;
    height: auto;
}

.cert-badge {
    display: inline-block;
    background-color: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.cert-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.cert-card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Classes utilitárias de texto para esta seção */
.text-anvisa-green {
    color: #15803d; /* Verde específico do logo ANVISA/texto */
    font-weight: 800;
}
/* --- NOVA SEÇÃO: ALERTA FALSIFICAÇÃO (PART 10) --- */

.counterfeit-section {
    padding: 50px 0;
    background-color: #fff5f5; /* Fundo rosa bem claro */
    display: flex;
    justify-content: center;
}

.counterfeit-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.08); /* Sombra avermelhada suave */
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Ícone de Escudo Vermelho no Topo */
.icon-shield-red {
    width: 60px;
    height: 60px;
    background-color: #ef5350; /* Vermelho alerta */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(239, 83, 80, 0.3);
}

.counterfeit-header h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.counterfeit-header p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Grid de Comparação */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.compare-box {
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    gap: 20px;
}

/* Caixa de Produtos Falsificados (Vermelha) */
.box-fake {
    background-color: #fff;
    border: 1px solid #ffcdd2;
}

.icon-fake {
    width: 40px; height: 40px;
    background-color: #ffebee;
    color: #e53935;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Caixa do Site Oficial (Verde) */
.box-official {
    background-color: #fff;
    border: 1px solid #c8e6c9;
}

.icon-official {
    width: 40px; height: 40px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.compare-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.compare-text p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

/* Banner Verde Inferior */
.official-banner {
    background-color: #1b5e20; /* Verde Floresta Escuro */
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 10px;
}

.official-banner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.official-banner p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

.safety-tip {
    font-size: 0.75rem;
    color: #777;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
    .counterfeit-header h2 { font-size: 1.8rem; flex-direction: column; gap: 5px; }
}
/* --- NOVA SEÇÃO: PREÇOS E OFERTAS (PART 11) --- */

.pricing-section {
    padding: 50px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Folhas decorativas */
.price-leaf-left {
    position: absolute;
    bottom: 50px; left: -30px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0; pointer-events: none;
}
.price-leaf-right {
    position: absolute;
    top: 50px; right: -30px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0; pointer-events: none;
}

.price-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Grid de Preços */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: center; /* Centraliza verticalmente para que o do meio cresça */
    max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.3s;
}

/* Card Destaque (Meio) */
.price-card.featured {
    border: 2px solid #2e7d32; /* Borda verde */
    transform: scale(1.05);
    z-index: 2;
    padding-top: 50px; /* Espaço extra para o badge */
}

/* Badge Best Seller */
.badge-best-seller {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e7d32;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

/* Imagem do Produto no Card */
.price-img-box {
    height: 180px;
    width: 100%;
    background-color: transparent;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ccc;
    font-size: 2rem;
}

.price-img-box img {
    transition: transform 0.4s ease;
}

.price-img-box:hover img {
    transform: scale(1.15);
}

/* Badge de Desconto Vermelho */
.discount-badge {
    display: inline-block;
    background-color: #ef5350; /* Vermelho suave */
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.price-subtitle {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
}

/* Preços */
.price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 900; /* Extra bold */
    color: #1b5e20;
    line-height: 1;
    margin: 5px 0;
}

.price-install {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 25px;
}

/* Lista de Benefícios */
.price-features {
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.8rem;
    color: #4b5563;
}

.price-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features i {
    color: #2e7d32;
    font-size: 0.9rem;
}

/* Botão do Card */
.btn-card-outline {
    display: block;
    width: 100%;
    border: 1px solid var(--logo-green-1);
    background-color: var(--logo-green-1);
    color: #fff;
    padding: 12px 0;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-card-outline:hover {
    background-color: var(--logo-green-2);
    border-color: var(--logo-green-2);
    color: #fff;
}

/* Banner de Frete Inferior */
.shipping-banner {
    background-color: #1b5e20; /* Verde escuro */
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(27, 94, 32, 0.2);
}

.shipping-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.shipping-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Responsividade */
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
    .price-card.featured { grid-column: span 2; transform: scale(1); margin-bottom: 20px; }
}
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { grid-column: span 1; }
    .shipping-title { font-size: 0.95rem; flex-direction: column; }
}
/* --- NOVA SEÇÃO: FAQ (PART 12) --- */

.faq-section {
    padding: 50px 0;
    background-color: #fcfcfc; /* Branco levemente off-white */
    position: relative;
}

.faq-container {
    max-width: 800px; /* FAQ geralmente é mais estreito para leitura */
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Estilização do Accordion usando tag <details> nativa */
.faq-item {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.faq-item summary {
    padding: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    list-style: none; /* Remove seta padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove seta padrão em alguns navegadores */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Seta personalizada (Chevron Green) */
.faq-item summary::after {
    content: '\f078'; /* Código FontAwesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2e7d32;
    transition: transform 0.3s ease;
}

/* Gira a seta quando aberto */
.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    color: #2e7d32; /* Título fica verde quando aberto */
    border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
    padding: 25px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    background-color: #fff;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- FOOTER (RODAPÉ FINAL) --- */
footer {
    background-color: #0f172a; /* Azul escuro quase preto (Dark Slate) */
    color: #fff;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Coluna 1 maior, outras iguais */
    gap: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 60px;
}

/* Coluna 1: Logo e Descrição */
.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: -0.5px;
}
.footer-logo span { color: #4caf50; }

.footer-desc {
    color: #94a3b8; /* Cinza azulado */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-security-icons {
    display: flex;
    gap: 20px;
}

.footer-security-icons i {
    font-size: 1.5rem;
    color: #4caf50; /* Ícones de contorno verde */
    opacity: 0.9;
}

/* Colunas de Links */
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    transition: 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #4caf50;
    padding-left: 5px;
}

/* Barra de Copyright */
.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.copyright-right {
    display: flex;
    gap: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .copyright-bar { flex-direction: column; gap: 15px; align-items: flex-start; }
    .footer-security-icons { justify-content: flex-start; }
}
/* --- FOOTER (RODAPÉ FINAL) --- */
footer {
    background-color: #0f172a; /* Azul escuro profundo (Dark Slate) */
    color: #fff;
    padding: 80px 0 30px;
    font-size: 0.9rem;
    margin-top: 0; /* Remove margem se houver */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Coluna 1 maior para o texto */
    gap: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid #1e293b; /* Linha divisória sutil */
    padding-bottom: 60px;
}

/* Coluna 1: Logo e Descrição */
.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: -0.5px;
    text-decoration: none;
}
.footer-logo span { color: #4caf50; }

.footer-desc {
    color: #94a3b8; /* Cinza azulado para texto */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-icons-row {
    display: flex;
    gap: 20px;
}

.footer-icons-row i {
    font-size: 1.6rem;
    color: #4caf50; /* Verde vibrante */
    /* Se quiser mais fino (outline), use font-weight light no HTML ou CSS */
}

/* Colunas de Links */
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    transition: 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #4caf50;
    padding-left: 5px;
}

/* Barra de Copyright */
.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.copyright-right {
    display: flex;
    gap: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .copyright-bar { flex-direction: column; gap: 15px; align-items: flex-start; }
    .copyright-right { flex-direction: column; gap: 5px; }
}

/* --- COUNTDOWN TIMER --- */
.countdown-wrapper {
    text-align: center;
    margin-bottom: 20px;
}
.countdown-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}
.countdown-title strong {
    font-weight: 800;
}
.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.countdown-box {
    background-color: #1f2937;
    border-radius: 8px;
    padding: 10px 14px;
    min-width: 50px;
}
.countdown-box span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}
@media (min-width: 1024px) {
    .countdown-box span { font-size: 1.6rem; }
    .countdown-box { padding: 12px 16px; min-width: 60px; }
}

/* ====== COMPREHENSIVE MOBILE RESPONSIVE ====== */
@media (max-width: 768px) {

    /* --- GLOBAL --- */
    .container {
        padding: 0 15px;
    }

    /* --- HEADER --- */
    header .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .logo-container {
        align-items: center;
    }
    .btn-outline {
        padding: 10px 25px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* --- INFO BAR --- */
    .info-bar {
        padding: 15px 0;
    }
    .info-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .info-item {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    .info-item i {
        font-size: 1.2rem;
    }
    .info-title {
        font-size: 0.85rem;
    }

    /* --- HERO --- */
    .hero {
        padding: 30px 0 40px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .hero-description {
        font-size: 0.95rem;
        margin: 0 auto 20px;
        max-width: 100%;
    }
    .hero-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto 25px;
    }
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.8rem;
    }
    .product-placeholder {
        height: 280px;
    }
    .hero-image {
        order: -1;
    }

    /* --- BENEFITS --- */
    .benefits-section {
        padding: 40px 0;
    }
    .section-header {
        margin-bottom: 35px;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .benefit-card {
        padding: 25px 20px;
        text-align: center;
    }
    .card-icon-box {
        margin: 0 auto 15px;
    }

    /* --- TECHNOLOGY --- */
    .technology-section {
        padding: 30px 0;
    }
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .tech-image-box {
        height: 300px !important;
        order: -1;
    }
    .tech-content {
        text-align: center;
    }
    .tech-content h2 {
        font-size: 2rem;
    }
    .tech-content p {
        font-size: 0.9rem;
    }

    /* --- PRICING SECTIONS (inline & id=pricing) --- */
    .price-header {
        margin-bottom: 30px;
    }
    .countdown-title {
        font-size: 1.4rem !important;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 30px;
    }
    .price-card {
        padding: 30px 20px;
    }
    .price-card.featured {
        grid-column: span 1 !important;
        transform: scale(1) !important;
        order: -1;
    }
    .price-new {
        font-size: 2rem;
    }
    .price-img-box {
        height: 150px;
    }
    .badge-best-seller {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    /* --- INGREDIENTS --- */
    .ingredients-section {
        padding: 40px 0;
    }
    .ing-header {
        margin-bottom: 30px;
    }
    .ing-header h2 {
        font-size: 1.6rem;
    }
    .ing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .ing-img-box {
        height: 180px;
    }
    .ing-content {
        padding: 20px;
        text-align: center;
    }

    /* --- TESTIMONIALS --- */
    .testimonials-section {
        padding: 40px 0 25px;
    }
    .test-header {
        margin-bottom: 35px;
    }
    .test-header h2 {
        font-size: 1.6rem;
    }
    .test-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
        margin-bottom: 30px;
    }
    .test-card {
        padding: 20px 15px;
    }
    .test-photos img {
        max-width: 100%;
        height: auto;
    }

    /* --- SECURITY --- */
    .security-section {
        padding: 25px 0 40px;
    }
    .sec-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .sec-header h2 {
        font-size: 1.8rem;
    }
    .sec-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .sec-feature-box {
        padding: 18px 15px;
        flex-direction: row;
        align-items: center;
    }
    .sec-feature-box i {
        font-size: 1.2rem;
    }

    /* --- GUARANTEE --- */
    .guarantee-section {
        padding: 40px 0;
    }
    .guar-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .guar-content {
        text-align: center;
    }
    .guar-content h2 {
        font-size: 2rem;
    }
    .bg-number-30 {
        font-size: 10rem;
    }
    .fg-number-30 {
        font-size: 3.5rem;
    }
    .guar-title-text {
        font-size: 1.6rem;
    }
    .guar-graphic {
        height: 220px;
    }
    .trust-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-white-green {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* --- USAGE --- */
    .usage-section {
        padding: 40px 0;
    }
    .usage-header h2 {
        font-size: 1.8rem;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-card {
        width: 100%;
        max-width: 100%;
    }
    .rec-banner h4,
    .warn-banner h4 {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .rec-banner p,
    .warn-banner p {
        font-size: 0.8rem;
    }

    /* --- COUNTERFEIT --- */
    .counterfeit-section {
        padding: 30px 0;
    }
    .counterfeit-card {
        padding: 30px 20px;
    }
    .counterfeit-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .compare-box {
        padding: 18px;
    }
    .official-banner {
        padding: 20px 15px;
    }
    .official-banner h3 {
        font-size: 0.95rem;
    }

    /* --- SHIPPING BANNER --- */
    .shipping-banner {
        padding: 20px 15px;
        border-radius: 10px;
    }
    .shipping-title {
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
    }
    .shipping-sub {
        font-size: 0.75rem;
        text-align: center;
    }

    /* --- FAQ --- */
    .faq-section {
        padding: 40px 0;
    }
    .faq-header {
        margin-bottom: 30px;
    }
    .faq-header h2 {
        font-size: 1.8rem;
    }
    .faq-item summary {
        padding: 18px 15px;
        font-size: 0.9rem;
    }
    .faq-answer {
        padding: 18px 15px;
        font-size: 0.85rem;
    }

    /* --- FOOTER --- */
    footer {
        padding: 50px 0 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    .footer-desc {
        max-width: 100%;
    }
    .copyright-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    .copyright-right {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    .section-header h2,
    .ing-header h2,
    .test-header h2,
    .faq-header h2 {
        font-size: 1.4rem;
    }
    .countdown-title {
        font-size: 1.2rem !important;
    }
    .price-new {
        font-size: 1.8rem;
    }
    .guar-content h2 {
        font-size: 1.6rem;
    }
    .tech-content h2 {
        font-size: 1.6rem;
    }
    .counterfeit-header h2 {
        font-size: 1.3rem;
    }
}
