/* =====================================================
   MDA FRUIT — LANDING PAGE
   Paleta:
   - Laranja:        #F9531D
   - Laranja claro:  #FF6E2E
   - Preto:          #0A0A0A
   - Off-white:      #F4F2EE
   - Verde WhatsApp: #25D366
   ===================================================== */

:root {
    --orange: #F9531D;
    --orange-light: #FF6E2E;
    --orange-dark: #E04510;
    --black: #0A0A0A;
    --black-soft: #141414;
    --off-white: #F4F2EE;
    --gray-100: #EAE7E1;
    --gray-300: #C7C3BC;
    --gray-500: #8B8780;
    --gray-700: #4A4742;
    --whatsapp: #25D366;
    --placeholder: #C8C5BF;
    --placeholder-dark: #2A2A2A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1F1D1A;
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =========================
   IMAGE PLACEHOLDERS
   ========================= */
.image-placeholder {
    background-color: var(--placeholder);
    background-image:
        linear-gradient(45deg, rgba(0,0,0,0.04) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0,0,0,0.04) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.04) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border-radius: 8px;
}

/* =========================
   BUTTONS
   ========================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: var(--orange);
    color: #FFFFFF;
    padding: 18px 26px;
    border-radius: 12px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 22px rgba(249, 83, 29, 0.28);
}

.btn-primary:hover {
    background-color: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-large {
    padding: 20px 28px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.btn-label {
    font-size: 16px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.btn-sublabel {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.92;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0.1px;
}

/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    background-color: var(--black);
    color: #FFFFFF;
    overflow: hidden;
    min-height: 760px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('bg-1.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: 0;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.85) 18%, rgba(10,10,10,0) 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 28px 64px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: #FFFFFF;
}

.hero-title .orange {
    color: var(--orange);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-callout {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.callout-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-callout p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 26px;
    margin-bottom: 28px;
}

.hero-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--placeholder);
    border: 2px solid var(--black);
    margin-left: -10px;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof-text .stars {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.social-proof-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================
   PROBLEMS SECTION
   ========================= */
.problems {
    background-color: var(--off-white);
    padding: 84px 0 90px;
}

.eyebrow {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gray-700);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--orange);
    opacity: 0.9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-bottom: 56px;
}

.section-title.light {
    color: #FFFFFF;
}

.section-title.center {
    margin-bottom: 56px;
}

.section-title .orange {
    color: var(--orange);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: -36px;
    margin-bottom: 48px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.problem-card {
    text-align: center;
    padding: 12px;
}

.problem-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background-color: rgba(249, 83, 29, 0.04);
}

.problem-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}

.problem-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

.problems-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--orange);
    color: #FFFFFF;
    padding: 18px 28px;
    border-radius: 14px;
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(249, 83, 29, 0.18);
}

/* =========================
   SOLUTIONS SECTION
   ========================= */
.solutions {
    background-color: var(--black);
    color: #FFFFFF;
    padding: 84px 0 90px;
}

.solutions .section-title {
    color: #FFFFFF;
    margin-bottom: 14px;
}

.solutions .section-subtitle {
    margin-top: 0;
    margin-bottom: 56px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.solution-card {
    display: flex;
    flex-direction: column;
}

.solution-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: var(--black);
    border-radius: 14px;
    margin-bottom: 22px;
    display: block;
}

.solution-image.is-placeholder {
    background-color: var(--placeholder-dark);
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.04) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.04) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.04) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #FFFFFF;
    letter-spacing: -0.005em;
}

.solution-card p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    list-style: none;
    padding: 0;
}

.product-tags li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: rgba(249, 83, 29, 0.12);
    border: 1px solid rgba(249, 83, 29, 0.28);
    color: var(--orange);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
}

.product-tags li svg {
    flex-shrink: 0;
}

/* =========================
   HOW IT WORKS
   ========================= */
.how-it-works {
    background-color: var(--off-white);
    padding: 84px 0 90px;
}

.how-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    position: relative;
    padding-top: 8px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateX(-46px);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--orange);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.step-whatsapp {
    background-color: var(--whatsapp);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25);
}

.step-orange {
    background-color: var(--orange);
    box-shadow: 0 8px 18px rgba(249, 83, 29, 0.22);
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.005em;
}

.step p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

.how-cta {
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 28px 28px 26px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.how-cta h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}

.how-cta-text {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.45;
}

.whatsapp-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
    align-self: flex-end;
    transition: transform 0.2s ease;
}

.whatsapp-bubble:hover {
    transform: scale(1.05);
}

.how-cta-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--off-white);
    padding: 12px 14px;
    border-radius: 10px;
    width: 100%;
}

.how-cta-info span {
    font-size: 12px;
    color: var(--gray-700);
    line-height: 1.4;
    font-weight: 500;
}

/* =========================
   FINAL CTA
   ========================= */
.cta-final {
    position: relative;
    background-color: var(--black);
    color: #FFFFFF;
    overflow: hidden;
    padding: 64px 0 56px;
}

.cta-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('bg-2.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: 0;
}

.cta-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.85) 18%, rgba(10,10,10,0) 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.cta-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.cta-title .orange {
    color: var(--orange);
}

.cta-title .white {
    color: #FFFFFF;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 14px;
}

.footer-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-text {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

/* =========================
   LOYALTY PLANS
   ========================= */
.plans {
    background-color: var(--black);
    color: #FFFFFF;
    padding: 84px 0 90px;
}

.plans .section-title {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.plans .section-subtitle {
    margin-top: 0;
    margin-bottom: 56px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
    margin-bottom: 64px;
}

.plan-card {
    position: relative;
    background-color: #161616;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
}

.plan-header {
    margin-bottom: 18px;
}

.plan-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.plan-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.4;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.plan-cashback {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.4;
}

.plan-cashback strong {
    color: var(--orange);
    font-weight: 700;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-footer {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    margin-top: auto;
}

/* Prata — tom prateado/azulado */
.plan-prata .plan-badge {
    background-color: rgba(155, 175, 205, 0.15);
    color: #B8C5DC;
    border: 1px solid rgba(155, 175, 205, 0.35);
}
.plan-prata .plan-features svg {
    color: #B8C5DC;
}
.plan-prata .plan-footer {
    background-color: rgba(155, 175, 205, 0.08);
    color: #B8C5DC;
}

/* Ouro — DESTAQUE / MAIS POPULAR */
.plan-ouro {
    background: linear-gradient(165deg, #1F0F05 0%, #2A1407 100%);
    border-color: rgba(249, 83, 29, 0.5);
    box-shadow: 0 20px 50px rgba(249, 83, 29, 0.18);
    transform: scale(1.02);
}

.plan-ouro:hover {
    transform: scale(1.02) translateY(-4px);
}

.plan-ouro .plan-badge {
    background-color: var(--orange);
    color: #FFFFFF;
    border: 1px solid var(--orange);
}

.plan-ouro .plan-features svg {
    color: var(--orange);
}

.plan-ouro .plan-footer {
    background-color: rgba(249, 83, 29, 0.14);
    color: var(--orange);
}

/* Diamond — tom roxo premium */
.plan-diamond .plan-badge {
    background-color: rgba(168, 130, 240, 0.15);
    color: #C7AEFF;
    border: 1px solid rgba(168, 130, 240, 0.35);
}
.plan-diamond .plan-features svg {
    color: #C7AEFF;
}
.plan-diamond .plan-footer {
    background-color: rgba(168, 130, 240, 0.08);
    color: #C7AEFF;
}

/* Flag MAIS POPULAR */
.plan-flag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 7px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(249, 83, 29, 0.45);
    white-space: nowrap;
}

/* COMPARATIVO */
.plans-comparison {
    margin-top: 8px;
}

.plans-comparison h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.comparison-wrap {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.plans-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.plans-comparison th,
.plans-comparison td {
    padding: 16px 18px;
    text-align: center;
    font-size: 14.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plans-comparison th {
    background-color: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 14px;
    text-transform: uppercase;
}

.plans-comparison thead th:first-child {
    text-align: left;
}

.plans-comparison tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.plans-comparison tbody td {
    color: rgba(255, 255, 255, 0.78);
}

.plans-comparison tbody tr:last-child td {
    border-bottom: 0;
}

.plans-comparison .th-highlight,
.plans-comparison .td-highlight {
    background-color: rgba(249, 83, 29, 0.08);
    color: var(--orange);
    font-weight: 700;
    border-left: 1px solid rgba(249, 83, 29, 0.2);
    border-right: 1px solid rgba(249, 83, 29, 0.2);
}

.plans-comparison .th-highlight {
    color: var(--orange);
    background-color: rgba(249, 83, 29, 0.16);
}

.plans-comparison tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.plans-footer {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 40px;
    line-height: 1.5;
}

.plans-footer strong {
    color: var(--orange);
    font-weight: 700;
}

.plans-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.plans-cta .btn-primary {
    padding: 16px 28px;
}

.plans-cta .btn-label {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
    background-color: var(--off-white);
    padding: 84px 0 90px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 28px 26px 26px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.author-info strong {
    font-size: 15px;
    color: var(--black);
    font-weight: 700;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* =========================
   FAQ
   ========================= */
.faq {
    background-color: var(--black);
    color: #FFFFFF;
    padding: 84px 0 90px;
}

.faq .section-title {
    color: #FFFFFF;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(249, 83, 29, 0.45);
    background-color: #1A1310;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--orange);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(249, 83, 29, 0.15);
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--orange);
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
    background-color: var(--orange);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background-color: #FFFFFF;
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item p {
    padding: 0 26px 22px;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================
   RESPONSIVE — TABLET
   ========================= */
@media (max-width: 992px) {
    .hero-image {
        width: 50%;
    }

    .hero-title {
        font-size: 44px;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-ouro {
        transform: none;
    }

    .plan-ouro:hover {
        transform: translateY(-4px);
    }

    .comparison-wrap {
        overflow-x: auto;
    }

    .plans-comparison table {
        min-width: 540px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-image {
        width: 40%;
    }
}

/* =========================
   RESPONSIVE — MOBILE
   ========================= */
@media (max-width: 640px) {
    .hero {
        min-height: auto;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 320px;
        background-image: url('bg-mobile.png');
        background-position: center;
    }

    .hero-image::after {
        background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.5) 70%, var(--black) 100%);
    }

    .hero-content {
        padding: 8px 22px 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 18px;
        justify-content: center;
    }

    .logo-img {
        height: 58px;
    }

    .location {
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-callout {
        justify-content: center;
        margin-bottom: 22px;
    }

    .hero-callout p br {
        display: none;
    }

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

    .btn-text {
        text-align: center;
    }

    .hero-features {
        gap: 12px 18px;
        justify-content: center;
        margin-top: 22px;
        margin-bottom: 22px;
    }

    .social-proof {
        justify-content: center;
    }

    .social-proof-text {
        text-align: center;
    }

    .problems,
    .solutions,
    .how-it-works,
    .plans,
    .testimonials,
    .faq {
        padding: 44px 0 48px;
    }

    .plans-grid,
    .testimonials-grid {
        gap: 18px;
    }

    .plan-card {
        padding: 28px 22px 22px;
    }

    .plan-features li {
        font-size: 14px;
    }

    .price-value {
        font-size: 32px;
    }

    .plans-comparison h3 {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .plans-comparison th,
    .plans-comparison td {
        padding: 12px 14px;
        font-size: 13.5px;
    }

    .plans-comparison th {
        font-size: 12.5px;
    }

    .plans-grid {
        margin-bottom: 44px;
    }

    .plans-footer {
        font-size: 14px;
        margin-top: 28px;
    }

    .testimonial-card {
        padding: 24px 22px 22px;
    }

    .testimonial-text {
        font-size: 14.5px;
        margin-bottom: 18px;
    }

    .faq-item summary {
        font-size: 15px;
        padding: 16px 20px;
    }

    .faq-item p {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    .plans-footer {
        font-size: 14px;
        margin-top: 28px;
    }

    .plans-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .section-subtitle {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .eyebrow {
        margin-bottom: 12px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 28px;
    }

    .problem-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    .problem-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .problem-card h3 br,
    .problem-card p br {
        display: none;
    }

    .problems-banner {
        padding: 14px 20px;
        font-size: 14px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solution-card {
        text-align: center;
        align-items: center;
    }

    .solution-image {
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;
    }

    .solution-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .solution-card h3 br,
    .solution-card p br {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
    }

    .step h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .how-grid {
        gap: 24px;
    }

    .cta-final {
        padding: 0 0 48px;
        text-align: center;
    }

    .cta-image {
        position: relative;
        width: 100%;
        height: 240px;
        margin-bottom: 32px;
    }

    .cta-image::after {
        background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.6) 70%, var(--black) 100%);
    }

    .cta-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-title br {
        display: none;
    }

    .cta-text br {
        display: none;
    }

    .how-cta {
        padding: 22px;
        text-align: center;
        align-items: center;
    }

    .how-cta h3 {
        font-size: 17px;
    }

    .how-cta h3 br,
    .how-cta-text br,
    .how-cta-info span br {
        display: none;
    }

    .how-cta-text {
        margin-bottom: 12px;
    }

    .whatsapp-bubble {
        align-self: center;
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .how-cta-info {
        justify-content: center;
    }

    .footer-features {
        gap: 14px;
    }
}
