@font-face {
    font-family: "Open Runde";
    src: url("https://framerusercontent.com/assets/sh6WdegxUPLwf6maNVTPdFTJOG8.woff2");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Open Runde";
    src: url("https://framerusercontent.com/assets/hG3wmGmFwadB6X5XPVXkMlmLr8o.woff2");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Open Runde";
    src: url("https://framerusercontent.com/assets/HJY4SY2JywrSZ2l1AEW9Tm9cO8.woff2");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Open Runde";
    src: url("https://framerusercontent.com/assets/3exmuO07FP19gMM08TQrpXl3BGQ.woff2");
    font-style: normal;
    font-weight: 400;
}

:root {
    /* Funnelz Aesthetic Tokens */
    --bg-primary: #f5f5f5;
    --bg-secondary: #fafafa;
    --bg-dark: #1c1c1c;
    --text-primary: #1c1c1c;
    --text-secondary: #6e6e6e;
    --text-muted: #888888;
    --accent: #ff4726;
    --accent-hover: #e63e22;
    --border: #d9d9d9;
    --border-soft: rgba(0, 0, 0, 0.08);

    --font-heading: "Open Runde", "Inter", system-ui, -apple-system, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    --radius-s: 8px;
    --radius-m: 16px;
    --radius-l: 24px;
    --radius-xl: 32px;

    /* Layered Shadows */
    --shadow-soft: 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-accent: 0 15px 30px rgba(255, 71, 38, 0.15);

    --container: 1120px;
    --container-narrow: 800px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Layout */
/* Layout Sections & Contrast */
.section {
    padding: 140px 0;
    /* More expansive spacing for luxury feel */
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.section-alt {
    background: #fcfcfc !important;
}

.section-pure {
    background: #ffffff !important;
}

.section-soft-gray {
    background: #f7f7f8 !important;
}

.section-dark {
    background: #000000 !important;
    color: white;
}

.section-dark h2,
.section-dark .eyebrow {
    color: white;
}

.section-dark .section-subhead {
    color: rgba(255, 255, 255, 0.6);
}

.section-subhead {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Grid Background Effect */
.grid-bg {
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    /* Slightly more relaxed tracking */
    font-weight: 700;
    /* Sophisticated authority over brute force */
    color: var(--text-primary);
}

h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    margin-bottom: 40px;
}

h2 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.15;
    margin-bottom: 32px;
    font-weight: 800;
}

h3 {
    font-size: clamp(24px, 3.5vw, 34px);
    line-height: 1.25;
    font-weight: 700;
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    display: block;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Hero Section Pattern Fixes */
.hero {
    padding: 140px 0 80px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-headline {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-headline span {
    color: var(--accent);
}

.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-meta {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 4px;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-large);
    border: none;
}

/* Visceral Footer */
.visceral-footer {
    margin-top: 32px;
    font-size: 18px;
    opacity: 0.5;
    font-style: italic;
    font-weight: 500;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #92400e;
    font-weight: 800;
    border-radius: 100px;
    font-size: 13px;
    margin-bottom: 24px;
}



/* Utilities */
.text-accent {
    color: var(--accent) !important;
}

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

strong {
    color: #000000 !important;
    font-weight: 800;
}

p.lead {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
/* Buttons Premium */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 52px;
    /* Refined padding for elegance */
    /* Yellow Premium Gradient */
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #1c1c1c;
    /* Dark text for contrast on yellow */
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    border-radius: var(--radius-m);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: none;
    animation: shine 4s infinite linear;
}

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

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn .subtext {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 700;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(28, 28, 28, 0.8);
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-l);
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-medium);
}

.card-dark {
    background: var(--bg-dark);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Special Layout Sections */
.hero {
    padding: 100px 0 80px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero {
        padding: 40px 0 20px !important;
    }
}

.hero-image-wrapper {
    margin-top: 64px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-large);
    border: 1px solid var(--text-primary);
}

/* Journey Grid */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 56px;
}

/* Journey Cards Refined */
.journey-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 32px !important;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-soft);
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.journey-card h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.journey-card p {
    font-size: 15px !important;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.journey-card.featured {
    border: 1.5px solid var(--accent);
    background: #fffdfc;
    box-shadow: 0 20px 40px rgba(255, 71, 38, 0.08);
}

.journey-card.featured .badge-tag {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 71, 38, 0.2);
}

.journey-card.negative {
    background: #fffcfc;
    border: 1.5px solid #ef4444;
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.06);
}

.journey-card.negative .badge-tag {
    background: #ef4444;
    color: white;
}

.journey-card.positive {
    background: #fcfdfc;
    border: 1.5px solid #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.06);
}

.journey-card.positive .badge-tag {
    background: #22c55e;
    color: white;
}

.journey-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-card:hover+.journey-arrow,
.journey-arrow:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 10px 20px rgba(255, 71, 38, 0.2);
}

/* Adjusting SVG size inside arrow */
.journey-arrow i {
    width: 20px !important;
    height: 20px !important;
}

@media (max-width: 991px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-arrow {
        transform: rotate(90deg);
        margin: 12px auto;
        justify-self: center;
    }

    .journey-arrow:hover {
        transform: rotate(90deg) scale(1.15);
    }
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}

@media (max-width: 991px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

/* Bonus Cards Refined */
.bonus-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 40px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.bonus-card h3 {
    font-size: 24px !important;
    font-weight: 850 !important;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.bonus-card .bonus-lead {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.bonus-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    display: grid;
    gap: 10px;
}

.bonus-card li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.bonus-card li::before {
    content: "•";
    color: var(--accent);
    font-weight: 900;
}

.bonus-example {
    background: #fdfdfd;
    border: 1px dashed var(--border);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
}

.bonus-benefits {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
}

.benefit-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-pill i {
    color: #22c55e;
}

.bonus-pricing {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8faf9;
    border-radius: 12px;
}

.bonus-pricing .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
}

.bonus-pricing .free-label {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

/* Delivery Cards (O Que Tem Dentro) */
.delivery-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 48px 40px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.delivery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.module-index {
    font-size: 14px;
    font-weight: 950;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    display: block;
}

.delivery-card h3 {
    font-size: 28px !important;
    font-weight: 900 !important;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.delivery-card .lead-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.delivery-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Reenquadramento Section (Manifesto) */
.manifesto-container {
    background: #000000;
    color: white;
    padding: 120px 64px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.manifesto-container .eyebrow {
    color: var(--accent);
    margin-bottom: 32px;
    opacity: 0.8;
}

.manifesto-container h2 {
    color: white;
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 80px;
    letter-spacing: -0.05em;
    font-weight: 950;
    text-transform: uppercase;
}

.manifesto-body {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-line {
    font-size: clamp(26px, 4.5vw, 44px);
    line-height: 1.25;
    /* More breathable line height */
    margin-bottom: 56px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.manifesto-line strong {
    color: var(--accent) !important;
    font-weight: 800;
}

.manifesto-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 64px auto;
    border-radius: 2px;
}

.manifesto-highlights {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-bottom: 64px;
}

.manifesto-highlights p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    position: relative;
}

.manifesto-highlights p:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -24px;
    color: rgba(255, 255, 255, 0.1);
}

.manifesto-punchline {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.06em;
    color: white;
    text-align: center;
}

.manifesto-punchline span {
    color: var(--accent);
    display: block;
    margin-top: 12px;
}

.manifesto-footer {
    margin-top: 80px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .manifesto-container {
        padding: 56px 24px;
        margin: 56px 0;
        border-radius: var(--radius-l);
    }

    .manifesto-container h2 {
        font-size: clamp(28px, 7vw, 40px) !important;
        margin-bottom: 40px !important;
        line-height: 1.15 !important;
    }

    .manifesto-body {
        max-width: 100%;
    }

    .manifesto-line {
        font-size: clamp(18px, 4.5vw, 24px) !important;
        line-height: 1.5 !important;
        margin-bottom: 32px !important;
    }

    .manifesto-divider {
        margin: 48px 0 !important;
    }

    .manifesto-highlights {
        gap: 12px !important;
        margin-bottom: 40px !important;
    }

    .manifesto-highlights p {
        font-size: 13px !important;
        letter-spacing: 0.15em !important;
    }

    .manifesto-punchline {
        font-size: clamp(26px, 6.5vw, 36px) !important;
        line-height: 1.2 !important;
    }
}

.delivery-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    display: grid;
    gap: 12px;
}

.delivery-card li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Apple Narrative Section */
.apple-narrative {
    margin-top: 120px;
}

.apple-header h2 {
    font-size: clamp(32px, 5vw, 54px);
    margin-bottom: 80px;
}

.apple-header h2 span {
    color: var(--accent);
}

.apple-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.apple-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 48px 40px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-card:hover {
    border-color: rgba(255, 71, 38, 0.3);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.apple-card-content p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.apple-card-content p strong {
    color: var(--text-primary) !important;
}

/* Apple Impact - Editorial Style */
.apple-impact {
    margin: 120px 0;
    padding: 120px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    width: 100%;
}

.apple-impact-inner {
    max-width: 800px;
    margin: 0 auto;
}

.impact-sub {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.impact-main {
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 950;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 40px;
}

.impact-main span {
    color: var(--accent);
}

.impact-footer {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

/* Apple Closing */
.apple-closing {
    max-width: 700px;
    margin: 0 auto;
}

.apple-closing p {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

.apple-closing .highlight {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .apple-narrative {
        margin-top: 80px;
    }

    .apple-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .apple-card {
        padding: 32px 16px;
    }

    .apple-impact {
        padding: 80px 16px;
        margin: 80px 0;
    }

    .impact-sub {
        font-size: 20px;
    }

    .impact-main {
        font-size: 32px;
    }

    .apple-closing p {
        font-size: 19px;
    }

    .apple-closing .highlight {
        font-size: 24px;
    }
}

.delivery-highlight {
    margin-top: auto;
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent);
    padding: 20px;
    border-radius: 4px;
}

.delivery-highlight p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0 !important;
}

.accent-box {
    margin-top: auto;
    background: var(--text-primary);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.accent-box.vibrant {
    background: var(--accent);
    color: #1c1c1c;
}

.accent-box p {
    color: inherit !important;
    font-weight: 800;
    margin: 0 !important;
    font-size: 16px;
}

/* Comparison Section */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

/* NEW: Hero Split */
.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-split h1,
    .hero-split h2,
    .hero-split .badge-tag {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* NEW: Problem Grid (3 Columns) */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.problem-card {
    position: relative;
    overflow: hidden;
    padding: 40px 32px !important;
    /* Increased padding */
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Top align for better flow with more text */
    height: 100%;
    text-align: left !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

/* Big Bold Index Number */
.problem-card::after {
    content: attr(data-index);
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 32px;
    font-weight: 950;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    letter-spacing: -0.05em;
    transition: all 0.5s ease;
}

.problem-card:hover::after {
    opacity: 0.4;
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 22px !important;
    font-weight: 900 !important;
    margin: 0 0 12px 0;
    z-index: 2;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 16px !important;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Trust Badges & Payments */
.payment-trust-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.payment-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-flags:hover {
    opacity: 1;
}

.flag {
    width: 38px;
    height: 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.flag-visa {
    color: #1a1f71;
    font-weight: 900;
    font-style: italic;
    font-size: 10px;
}

.flag-master {
    display: flex;
    gap: -4px;
}

.flag-master span:first-child {
    width: 12px;
    height: 12px;
    background: #eb001b;
    border-radius: 50%;
}

.flag-master span:last-child {
    width: 12px;
    height: 12px;
    background: #ff5f00;
    border-radius: 50%;
    margin-left: -6px;
    opacity: 0.8;
}

.flag-amex {
    background: #016fd0;
    color: white;
    font-size: 6px;
    font-weight: 800;
    padding: 2px;
    border-radius: 2px;
}

.flag-elo {
    color: #f24607;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: -1px;
}

.flag-pix {
    background: #32bcad;
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 20px;
}

.secure-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-secure i {
    color: #22c55e;
    width: 14px;
}

.trust-connection {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8faf9;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid #dcfce7;
}

.trust-connection span {
    color: #166534;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 600px) {
    .payment-trust-footer {
        gap: 16px;
    }

    .secure-badges {
        gap: 12px;
    }
}

.problem-card p {
    font-size: 17px !important;
    line-height: 1.6;
    z-index: 2;
    color: var(--text-secondary) !important;
    margin: 0 !important;
    max-width: 85%;
    font-weight: 400;
}

.watermark-icon {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 140px !important;
    height: 140px !important;
    color: var(--accent);
    opacity: 0.02;
    transform: rotate(15deg);
    z-index: 1;
    stroke-width: 1.5px;
    transition: all 0.6s ease;
}

.problem-card:hover .watermark-icon {
    opacity: 0.05;
    transform: rotate(0deg) scale(1.1);
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card {
        min-height: 200px;
        padding: 40px 16px !important;
        /* Refined for more text horizontal room */
        align-items: flex-start !important;
        text-align: left !important;
        justify-content: center !important;
    }

    .problem-card h3 {
        font-size: 32px !important;
        text-align: left !important;
    }

    .problem-card p {
        font-size: 19px !important;
        text-align: left !important;
    }

    .watermark-icon {
        width: 200px !important;
        height: 200px !important;
        top: -20px;
        right: -30px;
        opacity: 0.1;
        /* Aumentado para maior impacto visual no mobile */
    }
}

/* NEW: Emotional Box Responsive */
@media (max-width: 768px) {
    .emotional-box {
        padding: 30px 20px !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .emotional-box h3 {
        font-size: 24px !important;
    }

    .emotional-box p {
        font-size: 18px !important;
    }

    .highlight-card {
        padding: 24px !important;
    }

    .highlight-card p {
        font-size: 19px !important;
    }
}

/* NEW: Comparison Table (Visceral & Premium) - Compacta */
/* Communication Gap Section (Two Worlds Split) */
.gap-container {
    max-width: 1000px;
    margin: 64px auto 0;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-soft);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
}

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

.gap-side {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
}

.gap-side.doctor {
    background: #fdfdfd;
    text-align: left;
}

.gap-side.patient {
    background: #ffffff;
    text-align: right;
}

.gap-divider {
    background: linear-gradient(to bottom, transparent, var(--border-soft), transparent);
    position: relative;
}

.gap-divider::after {
    content: '!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 14px;
    box-shadow: 0 0 0 8px white;
}

.gap-header {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text-muted);
}

.gap-row {
    margin-bottom: 40px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gap-row:last-child {
    margin-bottom: 0;
}

.doctor .gap-row p {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.patient .gap-row p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 500;
}

.patient .gap-row p strong {
    color: var(--accent) !important;
}

.gap-footer {
    padding: 64px 48px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-soft);
    text-align: center;
}

.gap-footer h4 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.gap-footer p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .gap-container {
        margin: 56px 0 !important;
        border-radius: var(--radius-l) !important;
    }

    .gap-split {
        grid-template-columns: 1fr;
    }

    .gap-divider {
        height: 2px;
        width: 100%;
    }

    .gap-side {
        padding: 48px 24px;
        text-align: left !important;
    }

    .gap-header {
        margin-bottom: 32px;
        font-size: 11px !important;
    }

    .gap-row {
        min-height: auto;
        margin-bottom: 28px;
    }

    .doctor .gap-row p {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    .patient .gap-row p {
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    .gap-footer {
        padding: 48px 24px !important;
    }

    .gap-footer h4 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .gap-footer p {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }
}

.cell-you>* {
    position: relative;
    z-index: 2;
}

.cell-you::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(28, 28, 28, 0.02) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.cell-icon {
    background: #f8f8f8;
    border-left: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
    position: relative;
    z-index: 1;
}

/* Solution Mechanism Section */
.section-solution {
    background: radial-gradient(circle at top, #fcfdfd 0%, #f7f9fa 100%) !important;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.section-solution::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 71, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 64px 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.mechanism-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-l);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.mechanism-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(255, 71, 38, 0.1);
    background: white;
}

.mechanism-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mechanism-item .label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 71, 38, 0.2);
}

.mechanism-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

.mechanism-item p strong {
    color: var(--text-primary) !important;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* Investigation Card Refined */
.investigation-card {
    max-width: 800px;
    margin: 100px auto;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.investigation-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
}

.negation-list {
    padding: 64px 48px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    border-right: 1px solid var(--border-soft);
}

.negation-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    opacity: 0.5;
    font-weight: 700;
    font-size: 18px;
    text-decoration: line-through;
}

.negation-item i {
    width: 20px;
    height: 20px;
}

.affirmation-box {
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #ffffff;
}

.affirmation-tag {
    font-size: 10px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.3em;
    margin-bottom: 12px;
}

.affirmation-main {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 950;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.affirmation-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 120px;
    height: 120px;
    color: var(--accent);
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

@media (max-width: 768px) {
    .investigation-content {
        grid-template-columns: 1fr;
    }

    .negation-list {
        padding: 40px 16px;
        /* Reduced padding for more text room */
        border-right: none;
        border-bottom: 1px solid var(--border-soft);
        gap: 20px;
    }

    .affirmation-box {
        padding: 48px 16px;
        /* Reduced padding for more text room */
    }

    .affirmation-main {
        font-size: 32px;
    }

    .affirmation-icon {
        width: 80px;
        height: 80px;
        right: 20px;
        bottom: 20px;
    }
}

.patient-internal-dialog {
    background: #f8faf9;
    padding: 48px;
    border-radius: var(--radius-l);
    border: 1px solid #dcfce7;
    margin-top: 64px;
    position: relative;
}

.dialog-quote {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
    line-height: 1.4;
    font-style: italic;
}

.dialog-quote::before {
    content: '“';
    color: var(--accent);
}

.dialog-quote::after {
    content: '”';
    color: var(--accent);
}

.status-change {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.status-change h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .mechanism-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .affirmation-line {
        font-size: 36px;
    }

    .patient-internal-dialog {
        padding: 32px 24px;
    }
}

.cell-him {
    background: #fffdf8;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.4;
    position: relative;
}

.cell-him::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 71, 38, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* Hover effect on row */
.comparison-table>div:not(.table-header-cell):hover {
    filter: brightness(0.99);
    background: #fafafa;
}

@media (max-width: 850px) {
    .comparison-table {
        grid-template-columns: 1fr;
        margin-top: 48px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 0;
    }

    .table-header-cell,
    .cell-icon {
        display: none;
    }

    .cell-you,
    .cell-him {
        border-radius: var(--radius-m);
        border: 1px solid var(--border-soft);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .cell-you {
        padding: 24px 20px 16px !important;
        background: #fafafa;
        font-size: 16px;
        line-height: 1.55;
        border-bottom: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-bottom: 0;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        border-left: 4px solid var(--text-primary);
        color: var(--text-primary);
        font-weight: 600;
    }

    .cell-you::before {
        content: "O QUE VOCÊ FALA:";
        display: block;
        font-size: 10px;
        font-weight: 900;
        margin-bottom: 12px;
        letter-spacing: 0.15em;
        color: var(--text-primary);
        text-align: left;
    }

    .cell-him {
        padding: 16px 20px 28px !important;
        background: #fffbeb;
        font-size: 17px;
        line-height: 1.5;
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-bottom: 24px;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
    }

    .cell-him:last-child {
        margin-bottom: 0;
    }

    .cell-him::before {
        content: "O QUE ELE ESCONDE:";
        display: block;
        font-size: 10px;
        font-weight: 900;
        margin-bottom: 12px;
        letter-spacing: 0.15em;
        color: var(--accent);
        text-align: left;
    }
}

.comparison-card {
    padding: 32px;
    border-radius: var(--radius-m);
    border: 1px solid var(--border);
}

.comparison-card.negative {
    background: #fff5f5;
    border-color: #feb2b2;
}

.comparison-card.positive {
    background: #f0fff4;
    border-color: #9ae6b4;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 16px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
/* Footer */
footer {
    padding: 64px 0;
    background: var(--bg-primary);
    border-top: 1px dotted var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {

    /* Layout geral */
    .section {
        padding: 56px 0;
    }

    .container,
    .container-narrow {
        padding: 0 12px;
        /* Optimized container padding for max width */
    }

    .hide-mobile {
        display: none !important;
    }

    /* Hero section específico */
    .hero {
        padding: 60px 0 48px;
    }

    /* Card principal container */
    .card[style*="max-width: 900px"] {
        max-width: 100% !important;
        padding: 40px 16px !important;
    }

    /* Typography responsive - Hierarquia clara e espaçada */
    h1 {
        font-size: clamp(30px, 7.5vw, 44px) !important;
        margin-bottom: 28px !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: clamp(26px, 6vw, 36px) !important;
        margin-bottom: 24px !important;
        line-height: 1.25 !important;
    }

    h3 {
        font-size: clamp(22px, 5vw, 28px) !important;
        margin-bottom: 16px !important;
        line-height: 1.3 !important;
    }

    /* Eyebrow */
    .eyebrow {
        font-size: 11px !important;
        margin-bottom: 16px !important;
        letter-spacing: 0.15em !important;
    }

    /* Section subhead */
    .section-subhead {
        font-size: 13px !important;
        margin-bottom: 40px !important;
        letter-spacing: 0.12em !important;
        line-height: 1.6 !important;
    }

    .lead {
        font-size: 18px !important;
        line-height: 1.65 !important;
        margin-bottom: 24px !important;
    }

    /* Cards - ajustes gerais com mais respiração */
    .card {
        padding: 36px 24px !important;
        margin-bottom: 40px !important;
    }

    /* Cards com padding 48px no desktop */
    .card[style*="padding: 48px"] {
        padding: 40px 24px !important;
    }

    /* Cards aninhados dentro de outros cards */
    .card .card {
        padding: 32px 24px !important;
        margin: 32px 0 !important;
    }

    /* Cards com backgrounds específicos */
    [style*="background: #fafaf9"][style*="padding: 32px"] {
        padding: 32px 24px !important;
    }

    [style*="background: rgba(15, 76, 92"][style*="padding: 40px"] {
        padding: 36px 24px !important;
    }

    [style*="background: #fffafa"][style*="padding: 48px"] {
        padding: 40px 24px !important;
    }

    [style*="background: #fffbeb"][style*="padding: 32px"] {
        padding: 32px 24px !important;
    }

    /* Buttons - maior e mais proeminente */
    .btn {
        padding: 20px 24px;
        /* Reduced lateral padding */
        font-size: 18px;
        min-height: 64px;
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

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

    /* Hero image */
    .hero-image {
        margin: 40px auto !important;
        max-width: 100% !important;
    }

    /* Badge tag */
    .badge-tag {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 28px;
    }

    /* Spacing adjustments - hierarquia mais clara */
    [style*="margin-bottom: 56px"] {
        margin-bottom: 48px !important;
    }

    [style*="margin-bottom: 48px"] {
        margin-bottom: 40px !important;
    }

    [style*="margin-bottom: 40px"] {
        margin-bottom: 32px !important;
    }

    [style*="margin-bottom: 32px"] {
        margin-bottom: 28px !important;
    }

    [style*="margin-bottom: 24px"] {
        margin-bottom: 24px !important;
    }

    [style*="margin-bottom: 16px"] {
        margin-bottom: 16px !important;
    }

    [style*="margin-bottom: 8px"] {
        margin-bottom: 12px !important;
    }

    [style*="margin: 48px auto"] {
        margin: 40px auto !important;
    }

    [style*="margin: 56px auto 0"] {
        margin: 48px auto 0 !important;
    }

    [style*="margin-top: 32px"] {
        margin-top: 28px !important;
    }

    [style*="margin-top: 24px"] {
        margin-top: 24px !important;
    }

    [style*="margin-top: 12px"] {
        margin-top: 12px !important;
    }

    [style*="margin: 12px 0"] {
        margin: 12px 0 !important;
    }

    [style*="margin: 0 0 16px"] {
        margin: 0 0 16px !important;
    }

    [style*="padding: 24px"] {
        padding: 28px 24px !important;
    }

    [style*="padding: 32px"]:not([style*="background"]) {
        padding: 32px 24px !important;
    }

    [style*="padding: 40px"] {
        padding: 36px 24px !important;
    }

    [style*="padding: 48px"] {
        padding: 40px 24px !important;
    }

    [style*="gap: 40px"] {
        gap: 32px !important;
    }

    [style*="gap: 32px"] {
        gap: 28px !important;
    }

    [style*="gap: 24px"] {
        gap: 24px !important;
    }

    [style*="gap: 16px"] {
        gap: 16px !important;
    }

    [style*="gap: 12px"] {
        gap: 12px !important;
    }

    /* Border-left padding adjustment */
    [style*="border-left: 6px solid"] {
        border-left-width: 4px !important;
        padding: 32px 24px !important;
    }

    [style*="border-left: 2px solid"] {
        border-left-width: 3px !important;
        padding-left: 20px !important;
    }

    /* Font size adjustments - hierarquia preservada */
    [style*="font-size: 36px"] {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    [style*="font-size: 32px"] {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    [style*="font-size: 28px"] {
        font-size: 24px !important;
        line-height: 1.35 !important;
    }

    [style*="font-size: 26px"] {
        font-size: 22px !important;
        line-height: 1.35 !important;
    }

    [style*="font-size: 24px"] {
        font-size: 21px !important;
        line-height: 1.4 !important;
    }

    [style*="font-size: 22px"] {
        font-size: 19px !important;
        line-height: 1.45 !important;
    }

    [style*="font-size: 21px"] {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    [style*="font-size: 20px"] {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    [style*="font-size: 19px"] {
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    [style*="font-size: 18px"] {
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    [style*="font-size: 16px"] {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    [style*="font-size: 15px"] {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    [style*="font-size: 14px"] {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    [style*="font-size: 13px"] {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    [style*="font-size: 12px"] {
        font-size: 12px !important;
    }

    [style*="font-size: 11px"] {
        font-size: 11px !important;
    }

    /* Icons */
    [data-lucide] {
        width: 16px !important;
        height: 16px !important;
    }

    /* Dividers */
    [style*="width: 40px; height: 1px"] {
        width: 28px !important;
    }

    /* Max-width containers */
    [style*="max-width: 900px"],
    [style*="max-width: 800px"],
    [style*="max-width: 600px"],
    [style*="max-width: 580px"] {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Letter spacing adjustments */
    [style*="letter-spacing: 0.2em"] {
        letter-spacing: 0.15em !important;
    }

    /* Border adjustments for better mobile UX */
    [style*="border: 2px solid"] {
        border-width: 2px !important;
    }

    /* Box shadow reductions */
    [style*="box-shadow: 0 20px 40px"] {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    }

    /* Flex wrapping */
    [style*="display: flex; flex-wrap: wrap"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    /* Grid adjustments */
    [style*="display: grid"] {
        gap: 16px !important;
    }

    /* Price list */
    .price-list-model {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .price-list-model li {
        gap: 12px !important;
    }

    .bonuses-grid-wrapper {
        grid-template-columns: 1fr !important;
        padding: 24px 16px !important;
        gap: 16px !important;
    }

    .section-pure {
        padding: 40px 5px !important;
    }

    .price-card-premium {
        padding: 32px 18px !important;
        border-radius: 20px !important;
        width: 100% !important;
    }

    .price-list-model {
        gap: 12px !important;
    }

    /* Check icons */
    .check-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .check-icon i {
        width: 12px !important;
        height: 12px !important;
    }

    /* Listas */
    ul[style*="gap: 16px"] {
        gap: 14px !important;
    }

    ul[style*="gap: 12px"] {
        gap: 10px !important;
    }

    /* Position absolute adjustments */
    [style*="position: absolute"][style*="left: 24px"] {
        left: 20px !important;
    }

    [style*="position: absolute"][style*="top: -14px"] {
        font-size: 11px !important;
        padding: 3px 12px !important;
    }

    /* Ícones decorativos grandes */
    [style*="width: 140px; height: 140px"] {
        width: 80px !important;
        height: 80px !important;
        right: -10px !important;
        bottom: -10px !important;
    }

    /* Border radius adjustments */
    [style*="border-radius: var(--radius-m)"] {
        border-radius: 12px !important;
    }

    /* Padding-top para elementos com border-top */
    [style*="border-top: 1px solid"][style*="padding-top: 24px"] {
        padding-top: 20px !important;
    }

    /* Inline-flex containers */
    [style*="display: inline-flex"][style*="gap: 16px"] {
        gap: 14px !important;
    }

    /* Text decoration offsets */
    [style*="text-underline-offset: 4px"] {
        text-underline-offset: 3px !important;
    }

    /* Ajustes específicos para evitar compressão */
    div[style*="display: flex; flex-direction: column; gap: 32px"] {
        gap: 24px !important;
    }

    div[style*="display: flex; flex-direction: column; gap: 8px"] {
        gap: 8px !important;
    }

    /* Background com padding específico */
    [style*="background: #fffbeb"][style*="border: 2px solid"] {
        padding: 28px 20px !important;
    }

    [style*="border: 3px dotted"] {
        border-width: 2px !important;
        padding: 32px 24px !important;
    }

    /* Padding para elementos com border-top */
    [style*="border-top: 1px solid rgba(0,0,0,0.05)"] {
        padding-top: 20px !important;
    }

    /* Ajuste de padding em backgrounds coloridos */
    [style*="background: #fffbeb; padding: 2px 6px"] {
        padding: 2px 6px !important;
    }

    /* Margin para cards internos com margin-top */
    [style*="margin-top: 32px"][style*="padding: 32px"] {
        margin-top: 24px !important;
        padding: 28px 20px !important;
    }

    /* Garantir que texto não fique espremido */
    p[style*="line-height: 1.6"] {
        line-height: 1.6 !important;
    }

    p[style*="line-height: 1.4"] {
        line-height: 1.5 !important;
    }

    /* Espaçamento de elementos com display flex e gap */
    [style*="display: flex; align-items: center; gap: 8px"] {
        gap: 8px !important;
    }

    [style*="display: flex; align-items: center; gap: 12px"] {
        gap: 10px !important;
    }

    /* Shadow box adjustment */
    [style*="box-shadow: 8px 8px 0px"] {
        box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05) !important;
    }

    /* Modules grid - mobile */
    .modules-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        margin-top: 48px !important;
    }

    /* Remove grid-column span no mobile */
    .modules-grid .card[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }

    /* Cards da jornada - espaçamento específico */
    .modules-grid .card {
        padding: 32px 16px !important;
    }

    /* Badge dentro dos cards da jornada */
    .modules-grid .badge-tag {
        margin-bottom: 20px !important;
        font-size: 12px !important;
        padding: 8px 14px !important;
    }

    /* Títulos dentro da jornada */
    .modules-grid h3 {
        font-size: 22px !important;
        margin-bottom: 16px !important;
    }

    /* Parágrafos dentro da jornada */
    .modules-grid p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .modules-grid p[style*="font-size: 20px"] {
        font-size: 18px !important;
    }

    /* Números dos módulos */
    .modules-grid span[style*="width: 32px; height: 32px"] {
        width: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }

    /* Cards com padding 32px dentro da grid */
    .modules-grid .card[style*="padding: 32px"] {
        padding: 32px 16px !important;
    }

    /* Listas dentro dos módulos */
    .modules-grid ul {
        font-size: 15px !important;
        gap: 10px !important;
    }

    /* Caixas internas nos cards de módulos */
    .modules-grid div[style*="padding: 16px"] {
        padding: 20px 16px !important;
        font-size: 14px !important;
    }

    .modules-grid div[style*="padding: 16px"] p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Ajuste de gap para flex dentro de módulos */
    .modules-grid [style*="display: flex; align-items: flex-start; gap: 12px"] {
        gap: 12px !important;
    }
}

/* Ajustes adicionais para problem cards e seções específicas no mobile */
@media (max-width: 768px) {
    .section {
        padding: 96px 0;
        /* Balanced mobile breathing room */
    }

    .container {
        padding: 0 24px;
    }

    h1 {
        font-size: 38px !important;
        margin-bottom: 32px !important;
    }

    h2 {
        font-size: 30px !important;
        margin-bottom: 24px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    .eyebrow {
        font-size: 10px !important;
        margin-bottom: 20px !important;
        letter-spacing: 0.2em !important;
    }

    .manifesto-container {
        padding: 80px 20px;
        width: calc(100% + 32px);
        /* Proper full-width logic */
        margin-left: -16px;
        /* Aligns with container padding */
        box-sizing: border-box;
    }

    .manifesto-line {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .manifesto-highlights {
        flex-direction: column;
        gap: 16px;
    }

    .manifesto-highlights p::after {
        display: none;
    }

    .mechanism-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .discovery-grid,
    .problem-grid,
    .modules-grid,
    .bonus-grid,
    .journey-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .hero-split {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 48px;
    }

    .hero-split div[style*="align-items: flex-start"] {
        align-items: center !important;
    }

    /* Prevent text leaking */
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .visceral-impact p {
        font-size: 20px !important;
    }

    .visceral-impact p span {
        font-size: 24px !important;
    }
}

/* Price List Styling Premium */
.price-list-model {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 48px;
    /* More horizontal gap */
}

.price-list-model li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    /* Better for multiline text */
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-soft);
}

.price-list-model li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #1c1c1c;
    color: white;
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.check-icon i {
    width: 16px;
    height: 16px;
}

.price-list-model p[style*="font-weight:700"] {
    font-size: 16px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.price-list-model p[style*="font-size:13px"] {
    color: var(--text-secondary);
    line-height: 1.4;
}

.price-list-model li .value-tag {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    text-decoration: line-through;
}

/* Closing Section Components */
/* Apple Final Narrative */
.apple-final-narrative {
    padding: 60px 0 100px;
    max-width: 900px;
    margin: 0 auto;
}

.final-title {
    font-size: clamp(36px, 6vw, 72px) !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: -0.06em !important;
    margin-bottom: 64px !important;
}

.final-title span {
    color: var(--accent);
}

.final-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-step {
    font-size: 22px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.final-consequence {
    font-size: 22px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 48px;
}

.final-consequence strong {
    color: var(--text-primary);
}

.final-divider {
    width: 60px;
    height: 1px;
    background: var(--border-soft);
    margin-bottom: 48px;
}

.final-bridge {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 80px;
}

.final-bridge span {
    background: linear-gradient(to right, var(--accent), #ff7e5f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.final-cta-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 48px;
    background: #f8fafc;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
}

.final-punch {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.final-punch strong {
    color: var(--text-primary);
    font-weight: 900;
}

/* apple-btn styles removed */

@media (max-width: 768px) {
    .apple-final-narrative {
        padding: 40px 0 60px;
    }

    .final-step,
    .final-consequence {
        font-size: 18px;
        line-height: 1.4;
    }

    .final-bridge {
        font-size: 26px;
    }

    .final-cta-box {
        padding: 48px 24px;
    }

    .final-punch {
        font-size: 20px;
    }

    .apple-btn {
        padding: 24px 32px;
        width: 100%;
    }

    .apple-btn-text {
        font-size: 18px;
        text-align: center;
    }

    .apple-btn-sub {
        font-size: 11px;
    }
}

/* Comparison / Selection Cards */
/* Selection Narrative Section */
.selection-narrative {
    margin-top: 40px;
}

.selection-lead {
    max-width: 700px;
    margin: 0 auto 80px;
}

.selection-lead p {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-muted);
}

.selection-lead span {
    color: var(--text-primary);
    font-weight: 950;
    display: block;
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.selection-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 64px 48px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.selection-card.positive {
    background: #f0fdf4;
    /* Subtle emerald green */
    border-color: #dcfce7;
}

.selection-card.negative {
    background: #fef2f2;
    /* Subtle rose red */
    border-color: #fee2e2;
}

.selection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.05);
}

.selection-card.positive:hover {
    border-color: #bbf7d0;
    box-shadow: 0 40px 80px -20px rgba(22, 163, 74, 0.1);
}

.selection-card.negative:hover {
    border-color: #fecaca;
    box-shadow: 0 40px 80px -20px rgba(220, 38, 38, 0.1);
}

.selection-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.selection-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    /* Vibrant Green */
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.selection-dot.gray {
    background: #ef4444;
    /* Vibrant Red */
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.selection-card h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.selection-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selection-list li {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.selection-list li:last-child {
    border-bottom: none;
}

/* Selection Footer Premium */
.selection-footer-premium {
    max-width: 800px;
    margin: 100px auto 0;
    padding-top: 80px;
    border-top: 1px solid var(--border-soft);
}

.footer-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.footer-main {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.footer-main span {
    color: var(--accent);
}

.footer-cta-block p {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-cta-block .highlight {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .selection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .selection-card {
        padding: 40px 16px;
        /* More horizontal space for text */
    }

    .footer-main {
        font-size: 38px;
    }

    .footer-cta-block .highlight {
        font-size: 24px;
    }

    .closing-text-large {
        font-size: 20px;
    }

    .closing-card {
        padding: 24px;
    }
}

/* Selection Footer Old Removed */

/* Product Badge & Solution Highlights */
.product-badge-container {
    display: flex;
    justify-content: center;
    margin: 40px 0 56px;
}

.product-badge {
    background: #ffffff;
    padding: 32px 80px;
    /* Expansive padding for premium weight */
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    flex-direction: column;
    /* Vertical stacking for presence */
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.product-badge-prefix {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    /* Accent color for the label */
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.9;
}

.product-badge-name {
    font-size: clamp(32px, 6vw, 52px);
    /* High impact size */
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.05em;
    font-family: var(--font-heading);
    line-height: 1;
}

.mechanism-lead {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 64px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .product-badge {
        padding: 24px 32px;
        gap: 8px;
        width: 100%;
        border-radius: var(--radius-l);
    }

    .product-badge-name {
        font-size: 28px;
    }

    .product-badge-prefix {
        font-size: 10px;
        letter-spacing: 0.25em;
    }

    .mechanism-lead {
        font-size: 11px;
        letter-spacing: 0.15em;
        margin-bottom: 48px;
    }
}

/* Sobre Mim - Style Reformr */
.section-about {
    padding: 100px 0;
    background: transparent;
    color: white;
    overflow: hidden;
    /* Prevent glow overflow */
}

.section-about .container {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 48px;
    padding: 80px 100px;
    max-width: 1400px;
    width: 95%;
    position: relative;
}

.about-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-header .eyebrow {
    color: var(--accent);
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-header h2 {
    color: white;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-image-stage {
    position: relative;
    width: 100%;
}

.about-image {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(255, 71, 38, 0.15);
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 71, 38, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-experience-badge .years {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
}

.about-experience-badge .label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1.1;
}

.btn-social-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.2);
}

.btn-social-instagram:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(214, 36, 159, 0.4);
    filter: brightness(1.1);
}

.btn-social-instagram svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.about-body {
    width: 100%;
    text-align: left;
}

.about-intro {
    margin-bottom: 25px;
}

.about-intro p {
    font-size: 24px;
    line-height: 1.6;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-intro strong {
    color: white !important;
    font-weight: 800;
    font-size: 28px;
}

.boston-highlight {
    background: rgba(255, 71, 38, 0.1);
    border: 1px solid rgba(255, 71, 38, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 25px;
}

.boston-highlight p {
    font-size: 16px !important;
    line-height: 1 !important;
    color: white;
    margin: 0 !important;
    font-weight: 500 !important;
}

.boston-highlight strong {
    color: var(--accent) !important;
    font-weight: 800;
    font-size: 16px !important;
}

.about-body p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.about-body strong {
    color: white !important;
}

.about-bottom {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.about-bottom p {
    font-size: 17px;
    line-height: 1.6;
    color: white;
}

@media (max-width: 768px) {
    .section-about {
        padding: 40px 5px;
    }

    .section-about .container {
        padding: 32px 18px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-header h2 {
        font-size: 32px;
    }

    .about-intro p {
        font-size: 20px;
    }

    .about-intro strong {
        font-size: 24px;
    }

    .boston-highlight {
        padding: 8px 16px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .boston-highlight p {
        font-size: 18px;
    }

    .boston-highlight strong {
        font-size: 20px;
    }

    .about-body p {
        font-size: 17px;
    }
}

/* FOOTER PREMIUM */
.footer {
    padding: 20px 0 0;
    background: #ffffff;
    border-top: 1px solid var(--border-soft);
    text-align: center;
}

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

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    padding-top: 15px;
    border-top: 1px solid var(--border-soft);
}

.footer-disclaimer p {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 15px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Alinhamento de largura entre Investimento e Sobre Mim */
#investimento .container {
    max-width: 1400px;
    width: 95%;
}

@media (max-width: 768px) {
    #investimento .container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}