/* 
  KIT SEMEANDO A PALAVRA
  Estilo Global e Variáveis 
*/

:root {
    --color-primary: #E8732A;
    --color-primary-light: #fbe6da;
    --color-cta: #27ae60;
    --color-cta-hover: #219653;
    --color-bg: #FAF8F4;
    --color-text: #2C2C2A;
    --color-text-light: #555555;
    --color-urgency: #c0392b;
    --color-white: #ffffff;
    --color-border: #e0dcd2;
    --font-heading: 'Lora', serif;
    --font-body: 'DM Sans', sans-serif;
    --max-width: 680px;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* 1. BARRA DE URGÊNCIA */
.urgency-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-urgency);
    color: var(--color-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

/* MAIN CONTAINER */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    overflow-x: hidden;
}

/* TEXT & TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.25;
    padding: 0 10px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

/* BUTTONS */
.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, var(--color-cta), #1d8c4c);
    color: var(--color-white);
    text-align: center;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
    border: none;
    cursor: pointer;
    line-height: 1.2;
}

.btn-main {
    font-size: 19px;
    display: block;
    letter-spacing: 0.5px;
}

.btn-sub {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 4px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.5);
    background: linear-gradient(135deg, var(--color-cta-hover), var(--color-cta));
}

.cta-button:active {
    transform: scale(0.98);
}

.pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.cta-button.large {
    padding: 22px 24px;
}

.btn-outline {
    display: block;
    width: 100%;
    background-color: transparent;
    color: var(--color-text);
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #f0ece1;
}

/* 2. HERO SECTION */
.hero {
    text-align: center;
    padding: 40px 0;
}

.badge-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(232, 115, 42, 0.2);
}

.badge-primary.gold {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.hero-headline {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 32px;
}

.hero-headline .destaque {
    color: var(--color-primary);
    font-style: italic;
}

.hero-mockup {
    margin-bottom: 32px;
}

.hero-mockup img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.trust-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--color-text-light);
}

.trust-icons .dot {
    opacity: 0.5;
}

/* 3. DORES */
.dores {
    padding: 40px 0;
}

.grid-2x3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media(min-width: 500px) {
    .grid-2x3 {
        grid-template-columns: 1fr 1fr;
    }
}

.card-dor {
    background: var(--color-white);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-areas: 
        "icon text"
        "hr hr"
        "desejo desejo";
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
}

.card-dor .icon {
    grid-area: icon;
    font-size: 24px;
    margin-bottom: 0;
}

.dor-texto {
    grid-area: text;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.3;
}

.card-dor hr {
    grid-area: hr;
    border: 0;
    height: 1px;
    background: var(--color-border);
    margin: 12px 0;
}

.dor-desejo {
    grid-area: desejo;
    font-style: italic;
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.dor-desejo span {
    color: var(--color-cta);
    font-weight: 700;
    font-style: normal;
}

/* 4 & 5. MÉTODO SEMEANDO */
.metodo {
    padding: 40px 0;
    text-align: center;
}

.badge-outline {
    display: inline-block;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destaque-alt {
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.destaque-alt::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(232, 115, 42, 0.15);
    z-index: -1;
}

.metodo-headline {
    font-size: 28px;
    margin-bottom: 20px;
}

.metodo-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.metodo-subtitle strong {
    color: var(--color-text);
}

.metodo-pilares {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-bottom: 40px;
}

.pilar {
    background: var(--color-white);
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--color-border);
    transition: transform 0.2s;
}

.pilar:hover {
    transform: translateX(5px);
}

.pilar-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #F0FDF4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pilar-info strong {
    display: block;
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 2px;
}

.pilar-info p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.metodo-destaque-box {
    background: #FFFBEB;
    border: 1px dashed #F59E0B;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: start;
    gap: 12px;
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    color: #92400E;
}

.metodo-destaque-box p strong {
    color: #451a03;
}

/* 6 E 9. CARROSSEIS GLOBAIS */
.carrossel-section, .prova-social-section {
    padding: 50px 0;
    background-color: var(--color-white);
    width: 100%;
}

.carousel {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    margin-top: 32px;
}

.carousel::before,
.carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white) 0%, transparent 100%);
}

.carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    animation: scroll 10s linear infinite;
}

.prova-social-section .carousel-track {
    animation-duration: 25s; /* Depoimentos em 25s para legibilidade */
}

.carousel:hover .carousel-track,
.carousel:active .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 8px)); }
}

.carousel-card {
    height: 220px;
    display: block;
    flex-shrink: 0;
}

.carousel-card img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 7. BENEFÍCIOS */
.beneficios {
    padding: 50px 0;
}

.card-beneficio {
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--color-border);
}

.icon-square {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 16px;
}

.card-beneficio h3 {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.card-beneficio p span {
    color: var(--color-cta);
    font-weight: 700;
}

.elevacao-digital {
    text-align: center;
    background-color: #f0ece1;
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 32px;
    font-weight: 500;
    font-size: 15px;
}

/* 8. BÔNUS */
.bonus-section {
    padding: 50px 0;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width: 500px) {
    .grid-2x2 {
        grid-template-columns: 1fr 1fr;
    }
}

.card-bonus {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-bonus.exclusivo {
    border: 2px solid var(--color-primary);
}

.bonus-mockup {
    width: 130px;
    flex-shrink: 0;
    position: relative;
    border-right: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    background: var(--color-bg);
    align-self: stretch;
}

.bonus-mockup img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.badge-gratis, .badge-exclusivo {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
}

.badge-gratis {
    top: 8px;
    right: 8px;
    background-color: var(--color-cta);
    color: white;
}

.badge-exclusivo {
    top: 8px;
    left: 8px;
    background-color: var(--color-primary);
    color: white;
}

.bonus-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bonus-num {
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bonus-content h3 {
    font-family: var(--font-body);
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.bonus-content p {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    flex: 1;
    line-height: 1.3;
}

.bonus-price {
    font-size: 14px;
}

.bonus-price s {
    color: #999;
}

.bonus-price strong {
    color: var(--color-cta);
}

.bonus-total {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px dashed var(--color-text-light);
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.bonus-total .gratis-green {
    color: var(--color-cta);
    font-size: 20px;
}

/* 9. PROVA SOCIAL (CONTINUAÇÃO) */
.rating-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.stars {
    color: #f1c40f;
    font-size: 20px;
    letter-spacing: 2px;
}

.stars-small {
    color: #f1c40f;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    color: var(--color-text-light);
}

.depoimento-card {
    width: 280px;
    height: 180px;
    border-radius: var(--radius);
    padding: 20px;
    white-space: normal;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.depoimento-card.tipo-a {
    background-color: var(--color-bg);
}

.depoimento-card.tipo-b {
    background-color: #e8f5e9; /* WhatsApp green hint */
    border-color: #c8e6c9;
}

.dep-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
}

.dep-meta strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.dep-meta span {
    font-size: 11px;
    color: var(--color-text-light);
}

.depoimento-card p {
    font-size: 13px;
    font-style: italic;
    color: var(--color-text-light);
}

.depoimento-card.tipo-b strong {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

/* 10. PLANOS */
.planos-section {
    padding: 50px 0;
}

.planos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

@media(min-width: 600px) {
    .planos-grid {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }
}

.plano-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plano-card.premium {
    border: 2px solid var(--color-cta);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.15);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-cta);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.plano-nome {
    font-family: var(--font-body);
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.plano-precos {
    text-align: center;
    margin-bottom: 24px;
}

.preco-riscado {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 14px;
    display: block;
}

.preco-atual {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin: 8px 0;
}

.preco-atual span {
    font-size: 20px;
}

.pagamento-unico {
    font-size: 13px;
    color: var(--color-text-light);
}

.parcelamento {
    color: var(--color-cta);
    font-weight: 700;
    font-size: 14px;
}

.plano-itens {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plano-itens li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plano-itens li.highlight {
    background-color: var(--color-primary-light);
    padding: 4px 8px;
    border-radius: 4px;
}

.check {
    color: var(--color-cta);
    font-weight: bold;
}

.cross {
    color: #e74c3c;
    font-weight: bold;
}

.nao-incluso s {
    color: var(--color-text-light);
    opacity: 0.7;
}

.planos-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--color-text-light);
}

.premium-green {
    color: var(--color-cta);
}

/* 11. AUTORA */
.autora-section {
    padding: 50px 0;
}

.autora-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.autora-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.autora-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    flex-shrink: 0;
}

.autora-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 4px;
}

.autora-cargo {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.autora-tag {
    font-size: 12px;
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.autora-divider {
    border: 0;
    height: 1px;
    background: var(--color-border);
    margin: 24px 0;
}

.autora-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.autora-numeros {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 16px;
}

.numero-item strong {
    display: block;
    font-size: 24px;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.numero-item span {
    font-size: 12px;
    color: var(--color-text-light);
    display: block;
}

/* 12. GARANTIA */
.garantia-section {
    padding: 40px 0;
}

.garantia-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-white);
    border: 2px solid var(--color-cta);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.08);
}

.garantia-icon {
    font-size: 56px;
    line-height: 1;
}

.garantia-content h3 {
    font-size: 20px;
    font-family: var(--font-body);
    margin-bottom: 8px;
}

.garantia-content p {
    font-size: 14px;
    color: var(--color-text-light);
}

.trust-icons-full {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 500;
}

@media(max-width: 500px) {
    .garantia-card {
        flex-direction: column;
        text-align: center;
    }
}

/* 13. FAQ */
.faq-section {
    padding: 50px 0;
}

.faq-accordion {
    margin-top: 32px;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon-arrow {
    font-size: 12px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--color-white);
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: var(--color-text-light);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

/* 14. CTA FINAL */
.cta-final-section {
    padding: 60px 0 80px;
}

.cta-caixa {
    background-color: var(--color-primary-light);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    border: 1px solid rgba(232, 115, 42, 0.2);
}

.cta-title {
    font-size: 28px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-precos {
    margin-bottom: 24px;
}

.cta-precos .preco-atual {
    font-size: 38px;
}

.urgency-text-cta {
    color: var(--color-urgency);
    font-size: 14px;
    font-weight: 700;
    margin: 16px 0;
}

/* 15. RODAPÉ */
.site-footer {
    background-color: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 40px 20px;
    font-size: 13px;
}

.site-footer p {
    margin-bottom: 8px;
}

.footer-links {
    margin-top: 16px;
}

.footer-links a {
    color: #aaa;
    text-decoration: underline;
}

.footer-links span {
    margin: 0 8px;
    opacity: 0.5;
}

/* ANIMATIONS */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* 16. SALES POPUP */
.sales-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--color-white);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    padding: 8px 20px 8px 8px;
    gap: 12px;
    z-index: 1000;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--color-border);
}

.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.sales-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-cta);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: bold;
}

.sales-info {
    font-size: 13px;
    line-height: 1.3;
    color: var(--color-text);
}

.sales-name {
    font-weight: 700;
}

.sales-time {
    font-size: 11px;
    color: var(--color-text-light);
    margin-top: 2px;
}

@media(max-width: 500px) {
    .sales-popup {
        bottom: 16px;
        left: 50%;
        transform: translate(-50%, 150px);
        width: max-content;
        max-width: 90%;
    }
    .sales-popup.show {
        transform: translate(-50%, 0);
    }
}
