:root {
    /* Colors */
    --primary: #000400;
    /* All-In Black */
    --primary-light: #151515;
    --primary-dark: #000000;
    --primary-stitch: #135bec;
    /* Stitch Reference */
    --accent: #d4af37;
    /* Gold */
    --accent-light: #e5c14d;
    --text-dark: #2e2e2e;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    --bg-surface: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Section Spacing */
    --section-spacing: 5rem;
    --section-spacing-lg: 6rem;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --container-padding: 1.5rem;
    --header-height: 80px;

    /* Radius - Stitch ROUND_EIGHT */
    --radius-sm: 0.25rem;
    /* 4px */
    --radius-md: 0.5rem;
    /* 8px - Standard Stitch */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --stitch-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

/* 2. Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--stitch-transition);
}

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

/* 3. Layouts */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding: var(--section-spacing) 0;
}

.section--alt {
    background-color: var(--bg-surface);
}

.section--primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section__title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section__header--modern {
    text-align: left;
    max-width: 100%;
    margin-bottom: 3rem;
}

.section__title--modern {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.1;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 768px) {
    .grid--modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (min-width: 1024px) {
    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (min-width: 768px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

.grid--5-7 {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .grid--5-7 {
        grid-template-columns: 5fr 7fr;
    }
}

/* Split Section */
.st-split-section {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .st-split-section {
        grid-template-columns: 1fr 1fr;
    }
}

.st-split-panel {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.st-split-panel--dark {
    background-color: var(--primary);
    color: white;
}

.st-split-panel--light {
    background-color: var(--bg-surface);
    color: var(--text-dark);
}

.st-split-panel__blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
}

.st-split-panel__content {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.st-split-panel__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Buttons - Unified System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent; /* Ensure consistent box-model with outlines */
    transition: var(--stitch-transition);
    text-decoration: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

/* Variant: Accent (Gold/Yellow) */
.btn--accent {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn--header{
    padding: 0.75rem 0.70rem !important;
}

.btn--accent:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Variant: Primary (Blue) */
.btn--primary {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

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

/* Variant: Outline (Dark/Primary) */
.btn--outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

/* Variant: Outline White */
.btn--outline-white {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

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

/* Sizes */
.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
    display: flex;
}

.btn--whatsapp {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.btn--whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* Badges */
.st-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    /* Stitch BG */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.8);
    /* Stitch Text */
    font-size: 0.75rem;
    /* Stitch Size */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* Stitch Tracking */
}

.st-badge__dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Header */
.st-header {
    background-color: var(--primary);
    /* Stitch: Azul (Dark Mode) */
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    /* Always Fixed/Sticky */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: var(--stitch-transition);
}

.st-header--scrolled {
    background-color: rgba(0, 33, 71, 0.95);
    /* Slightly transparent on scroll */
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 80px;
    /* Shrink on scroll */
}

.st-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.st-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    /* Stitch: White Logo Text */
}

.st-header__logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Force White Logo if image is dark */
}

.st-nav {
    display: none;
}

@media (min-width: 1024px) {
    .st-nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
}

/* Mobile Nav State */
@media (max-width: 1023px) {
    .st-nav.st-nav--open {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        /* Dark Mobile Menu */
        flex-direction: column;
        padding: 2rem;
        z-index: 999;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .st-nav.st-nav--open .st-nav__link {
        font-size: 1.25rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        color: rgba(255, 255, 255, 0.9);
    }
}

.st-nav__link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    /* Stitch: Light Text */
    font-size: 0.875rem;
    /* Stitch Size */
    position: relative;
    padding: 0.5rem 0;
}

.st-nav__link:hover,
.st-nav__link--active {
    color: var(--accent);
    /* Stitch Hover */
}

.st-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

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

.st-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .st-mobile-toggle {
        display: none;
    }
}

.st-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    /* White Toggle Icon */
    transition: all 0.3s ease;
}

.st-mobile-toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.st-mobile-toggle--active span:nth-child(2) {
    opacity: 0;
}

.st-mobile-toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Scroll Lock */
.u-scroll-lock {
    overflow: hidden !important;
}

/* Footer */
.st-footer {
    background-color: var(--primary);
    /* All-In Black */
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* border-white/5 */
}

.st-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.st-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .st-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.st-footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .st-footer-col--brand {
        grid-column: span 1;
    }
}

.st-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.st-footer-logo__img {
    height:3rem;
    width: auto;
    color: white;
}

.st-footer-logo__text {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.st-footer-brand-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    line-height: 1.625;
}

.st-footer-social {
    display: flex;
    gap: 1rem;
}

.st-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.st-social-link:hover {
    color: var(--accent);
}

.st-social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.st-footer-heading {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    margin-bottom: 0;
}

.st-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.st-footer-links a,
.st-footer-address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.625;
}

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

.st-footer-phone-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.st-footer-phone-link:hover {
    text-decoration: underline;
}

.st-footer-map-wrapper {
    border-radius: var(--radius-sm);
    overflow: hidden;
    filter: grayscale(100%) brightness(75%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 10rem;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-footer-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.st-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .st-footer-bottom {
        flex-direction: row;
    }
}

.st-footer-copyright,
.st-footer-dev {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.st-footer-dev a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.st-footer-legal {
    display: flex;
    gap: 2rem;
}

.st-footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.st-footer-legal a:hover {
    color: white;
}

.u-mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

/* Hero BG Correction */
.st-hero {
    background-color: var(--primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .st-hero {
        padding: 8rem 0;
    }
}

.st-hero__bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at top right, var(--primary-light), var(--primary), var(--primary-dark));
}

.st-hero__bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=");
    opacity: 0.2;
    pointer-events: none;
}

.st-hero__container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .st-hero__container {
        /* Single column layout for Stitch Hero */
        display: block;
    }
}

.st-hero__content {
    max-width: 900px;
    /* Increased Width for single col */
}

.st-hero__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
    color: var(--bg-white);
}

.st-hero__title--gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #ffffff, #ffffff, rgba(255, 255, 255, 0.7));
}

@media (min-width: 1024px) {
    .st-hero__title {
        font-size: 3rem;
    }
}

.st-hero__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 42rem;
    margin-bottom: 2rem;
    line-height: 1.625;
}

@media (min-width: 1024px) {
    .st-hero__desc {
        font-size: 1.25rem;
    }
}

/* Hero Modifiers */
.st-hero--center {
    text-align: center;
    justify-content: center;
}

.st-hero--center .st-hero__content {
    margin: 0 auto;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.st-hero--overlap {
    padding-bottom: 9rem;
}

.st-hero--sm {
    min-height: 400px;
    padding: 4rem 0;
}

.st-hero__bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

/* Hero Meta (Badge + Date) */
.st-hero-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.st-hero-meta__date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Author */
.st-hero-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.st-hero-author__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #475569;
}

.st-hero-author__initials {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.st-hero-author__info {
    text-align: left;
}

.st-hero-author__name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.st-hero-author__role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Hero Graphic */
.st-portrait--hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Deep Shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    /* Mobile hidden by default */
}

/* Success Checkmark */
.st-checkmark {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 16px rgba(212, 175, 55, 0.12);
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .st-portrait--hero {
        display: block;
    }
}

.st-portrait--hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Bar */
.st-stats-bar {
    border-bottom: 1px solid var(--border-color);
    background: white;
    position: relative;
    z-index: 20;
}

.st-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
}

@media (min-width: 1024px) {
    .st-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 0;
        gap: 0;
    }
}

.st-stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .st-stats-item {
        justify-content: flex-start;
        border-right: 1px solid var(--border-color);
    }

    .st-stats-item:last-child {
        border-right: none;
    }
}

.st-stats-item span.material-symbols-outlined {
    color: rgba(0, 33, 71, 0.7);
}

.st-stats-item span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}


/* Cards */
.st-highlight-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.st-highlight-card__bg-icon {
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-size: 12rem;
    color: rgba(0, 33, 71, 0.03);
    pointer-events: none;
    z-index: 0;
}

.st-highlight-card__year {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    bottom: -1rem;
    left: 1rem;
    z-index: 0;
}

.st-highlight-card__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.st-highlight-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.st-highlight-card__quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.st-practice-card {
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--stitch-transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.st-practice-card:hover {
    box-shadow: var(--shadow-md);
}

.card--border-top-primary {
    border-top-color: transparent;
}

.card--border-top-accent {
    border-top-color: transparent;
}

.st-practice-card__icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.st-practice-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.st-practice-card__text {
    font-size: 0.875rem;
    /* Stitch Size */
    color: rgba(0, 0, 0, 0.7);
    /* Stitch Text Color */
    line-height: 1.6;
}

/* Service Card (Soluções) */
.st-service-card {
    display: block;
    background-color: var(--bg-surface);
    padding: 2rem;
    transition: var(--stitch-transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.st-service-card:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.st-service-card__icon-box {
    margin-bottom: 1.5rem;
}

.st-service-card__icon-box span {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--stitch-transition);
}

.st-service-card:hover .st-service-card__icon-box span {
    color: var(--accent);
}

.st-service-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
    transition: var(--stitch-transition);
}

.st-service-card:hover .st-service-card__title {
    color: white;
}

.st-service-card__desc {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    min-height: 60px;
    transition: var(--stitch-transition);
}

.st-service-card:hover .st-service-card__desc {
    color: rgba(255, 255, 255, 0.7);
}

.st-service-card__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--stitch-transition);
}

.st-service-card:hover .st-service-card__link {
    color: white;
}

/* Legado Section Styles (History) */
.st-section-legado {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6rem 0;
    overflow: hidden;
}

.st-container-legado {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.st-history-grid {
    display: grid;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .st-history-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.st-legado-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.st-legado-badge {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1rem;
}

.st-legado-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: white;
}

@media (min-width: 1024px) {
    .st-legado-title {
        font-size: 3rem;
    }
}

.st-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.st-timeline__item {
    position: relative;
}

.st-timeline__dot {
    position: absolute;
    left: -2.5rem;
    /* Adjust based on padding/border */
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
    z-index: 10;
}

.st-timeline__dot--hollow {
    background-color: rgba(255, 255, 255, 0.2);
}

.st-timeline__dot--filled {
    background-color: var(--accent);
}

.st-timeline__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.st-timeline__desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.625;
}

.st-signature {
    width: 180px;
    filter: invert(1) brightness(200%);
    opacity: 0.7;
    display: block;
}

.st-portrait-wrapper {
    position: relative;
    display: block;
}

.st-portrait-bg-rotate {
    position: absolute;
    inset: -1rem;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
    z-index: 0;
}

.st-portrait-wrapper:hover .st-portrait-bg-rotate {
    transform: rotate(2deg);
}

.st-portrait--history {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 4/5;
    z-index: 10;
    background-color: #002b5c;
}

.st-portrait__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

@media (min-width: 1024px) {
    .st-portrait__img {
        mix-blend-mode: normal;
        opacity: 1;
    }
}

.st-portrait-wrapper:hover .st-portrait__img {
    filter: grayscale(0%);
}

.st-portrait__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, var(--primary), transparent);
}

.st-portrait__quote-custom {
    color: white;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 1.125rem;
    text-align: center;
}

/* CTA Section */
.st-section-cta {
    background-color: var(--bg-surface);
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.st-container-cta {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.st-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .st-cta-title {
        font-size: 3rem;
    }
}

.st-cta-desc {
    color: rgba(30, 41, 59, 0.7);
    /* graphite/70 */
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.st-btn-whatsapp {
    background-color: var(--primary);
    color: var(--accent);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin: 0 auto;
    text-decoration: none;
}

.st-btn-whatsapp:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.st-btn-whatsapp__icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

@media (min-width: 320px) {
    .st-btn-whatsapp__icon {
    width: 2.5rem;
    height: 2.5rem;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-medium);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-surface);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--stitch-transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 37, 0.1);
}

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

/* Utility Classes */
.u-text-white {
    color: white;
}

.u-text-white-opacity {
    color: rgba(255, 255, 255, 0.6);
}

.u-text-gold {
    color: var(--accent);
}

.u-text-primary {
    color: var(--primary);
}

.u-text-medium {
    color: var(--text-medium);
}

.u-font-bold {
    font-weight: 700;
}

.u-font-normal {
    font-style: normal;
}

.u-italic {
    font-style: italic;
}

.u-uppercase {
    text-transform: uppercase;
}

.u-tracking-widest {
    letter-spacing: 0.2em;
}

.u-leading-relaxed {
    line-height: 1.625;
}

.u-mb-2 {
    margin-bottom: 0.5rem;
}

.u-mb-4 {
    margin-bottom: 1rem;
}

.u-mb-6 {
    margin-bottom: 1.5rem;
}

.u-mb-8 {
    margin-bottom: 2rem;
}

.u-mb-12 {
    margin-bottom: 3rem;
}

.u-mt-1 {
    margin-top: 0.25rem;
}

.u-mt-8 {
    margin-top: 2rem;
}

.u-mt-12 {
    margin-top: 3rem;
}

.u-ml-2 {
    margin-left: 0.5rem;
}

.u-mr-2 {
    margin-right: 0.5rem;
}

.u-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.u-my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.u-p-6 {
    padding: 1.5rem;
}

.u-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.u-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.u-w-4 {
    width: 1rem;
}

.u-h-4 {
    height: 1rem;
}

.u-w-0\.5 {
    width: 0.125rem;
}

.u-bg-white {
    background-color: white;
}

.u-bg-white-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.u-bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.u-bg-gold {
    background-color: var(--accent);
}

.u-rounded-full {
    border-radius: 9999px;
}

.u-rounded {
    border-radius: var(--radius-sm);
}

.u-shadow-lg {
    box-shadow: var(--shadow-lg);
}

.u-flex {
    display: flex;
}

.u-flex-col {
    display: flex;
    flex-direction: column;
}

.u-flex-grow {
    flex-grow: 1;
}

.u-items-center {
    align-items: center;
}

.u-gap-3 {
    gap: 0.75rem;
}

.u-gap-4 {
    gap: 1rem;
}

.u-gap-6 {
    gap: 1.5rem;
}

.u-gap-8 {
    gap: 2rem;
}

.u-gap-12 {
    gap: 3rem;
}

.u-flex-wrap {
    flex-wrap: wrap;
}

.u-block {
    display: block;
}

.u-inline-block {
    display: inline-block;
}

.u-overflow-hidden {
    overflow: hidden;
}

.u-relative {
    position: relative;
}

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

.u-text-left {
    text-align: left;
}

.u-text-3xl {
    font-size: 1.875rem;
}

.u-text-4xl {
    font-size: 2.25rem;
}

.u-text-lg {
    font-size: 1.125rem;
}

.u-text-sm {
    font-size: 0.875rem;
}

.u-max-w-500 {
    max-width: 500px;
}

.u-max-w-600 {
    max-width: 600px;
}

.u-max-w-700 {
    max-width: 700px;
}

.u-divider-gold {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--accent);
    margin-top: 2rem;
}

.st-history-image-wrapper {
    margin-top: 2rem;
    position: relative;
}

@media (min-width: 1024px) {
    .st-history-image-wrapper {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .u-hidden-mobile {
        display: none !important;
    }
}

/* Custom specific button animations */
.st-btn-animate:hover .st-btn-animate__icon {
    transform: translateX(4px);
}

.st-btn-animate__icon {
    transition: transform 0.3s ease;
}

.u-max-w-900 {
    max-width: 900px;
}

.u-font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

/* --- BLOG PAGE SPECIFIC --- */

.st-section--white {
    background-color: var(--bg-white);
}

.st-section--bg-light {
    background-color: var(--bg-surface);
}

.st-section--blog-grid {
    padding-top: 1.5rem;
}

/* Hero Search */
.st-hero-search {
    max-width: 36rem;
    position: relative;
    z-index: 50;
    /* Add Z Index just in case for dropdown */
}

/* -- Search Results Dropdown BEM Block -- */
.st-hero-search__results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    max-height: 24rem;
    overflow-y: auto;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    text-align: left;
    color: var(--primary);
}

.u-hidden {
    display: none !important;
}

.st-section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.st-section--featured {
    /* Padding is inherited from .st-section to avoid conflicts */
    /* Only adding a slight increase in bottom spacing for visual weight if needed, or keeping it strictly identical */
    background-color: var(--bg-white);
}

.st-hero-search__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.st-hero-search:focus-within .st-hero-search__icon {
    color: var(--accent);
}

.st-hero-search__input {
    display: block;
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.st-hero-search__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.st-hero-search__input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

/* Featured Post */
.st-featured-post {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background-color: white;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .st-featured-post {
        grid-template-columns: 1fr 1fr;
    }
}

.st-featured-post__image-wrap {
    position: relative;
    height: 20rem;
    overflow: hidden;
    background-color: var(--bg-surface);
}

@media (min-width: 1024px) {
    .st-featured-post__image-wrap {
        height: auto;
    }
}

.st-featured-post__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 33, 71, 0.2);
    z-index: 10;
    transition: background-color 0.3s ease;
}

.st-featured-post:hover .st-featured-post__overlay {
    background-color: transparent;
}

.st-featured-post__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.st-featured-post:hover .st-featured-post__img {
    transform: scale(1.05);
}

.st-featured-post__content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: white;
}

@media (min-width: 1024px) {
    .st-featured-post__content {
        padding: 3.5rem;
    }
}

.st-featured-post__border {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--accent);
    transition: height 0.5s ease;
}

.st-featured-post:hover .st-featured-post__border {
    height: 100%;
}

.st-featured-post__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.st-featured-post__badge {
    padding: 0.25rem 0.5rem;
    background-color: rgba(0, 33, 71, 0.05);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.st-featured-post__date {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
}

.st-featured-post__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.st-featured-post:hover .st-featured-post__title {
    color: var(--primary-light);
}

.st-featured-post__excerpt {
    color: rgba(46, 46, 46, 0.7);
    margin-bottom: 2rem;
    line-height: 1.625;
    font-weight: 300;
}

.st-link-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
    text-decoration: none;
}

.st-link-more--primary {
    color: var(--primary);
}

.st-link-more--primary:hover {
    color: var(--accent);
}

.st-link-more__icon {
    font-size: 1.125rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.st-link-more:hover .st-link-more__icon {
    transform: translateX(4px);
}

/* Category Filters */
.st-blog-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.25rem;
}

.st-blog-filters__link {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.st-blog-filters__link:hover {
    color: var(--primary);
    background-color: #f9fafb;
}

.st-blog-filters__link--active {
    font-weight: 700;
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Grid System */
.st-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .st-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .st-grid--3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@keyframes st-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.st-blog-card--fade-in {
    opacity: 0;
    animation: st-fade-in-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Blog Card */
.st-blog-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.st-blog-card:hover {
    box-shadow: var(--shadow-lg);
}

.st-blog-card__image-wrap {
    height: 12rem;
    overflow: hidden;
    position: relative;
    background-color: var(--primary);
}

.st-blog-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background-color: var(--primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.5rem;
}

.st-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.st-blog-card:hover .st-blog-card__img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.st-blog-card__img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.st-blog-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.st-blog-card__date {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.st-blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.st-blog-card:hover .st-blog-card__title {
    color: var(--primary-light);
}

.st-blog-card__excerpt {
    font-size: 0.875rem;
    color: rgba(46, 46, 46, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.st-blog-card__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Button Outline */
.st-btn-outline {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.st-btn-outline:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

/* Newsletter */
.st-newsletter-wrapper {
    background-color: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.st-newsletter-skew {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 33.333%;
    background-color: rgba(255, 255, 255, 0.05);
    transform: skewX(12deg) translateX(5rem);
}

.st-newsletter-container {
    position: relative;
    z-index: 10;
}

.st-newsletter-box {
    background-color: var(--primary-dark);
    padding: 2.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: var(--shadow-lg);
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .st-newsletter-box {
        flex-direction: row;
        padding: 4rem;
    }
}

.st-newsletter-box__text {
    flex: 1;
}

.st-newsletter-box__badge {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.st-newsletter-box__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.st-newsletter-box__desc {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.6;
}

.st-newsletter-box__form-area {
    width: 100%;
}

@media (min-width: 1024px) {
    .st-newsletter-box__form-area {
        width: 50%;
    }
}

.st-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .st-newsletter-form {
        flex-direction: row;
    }
}

.st-newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s ease;
}

.st-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.st-newsletter-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.st-newsletter-btn {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.st-newsletter-btn:hover {
    background-color: #bfa040;
}

.st-newsletter-note {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    margin-top: 0.75rem;
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */

/* Wrapper and Floating Featured Image */
.st-post-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .st-post-featured-wrapper {
        max-width: 1040px;
        margin: 0 auto;
        padding: 0 1.5rem;
        margin-bottom: 4rem;
    }
}

.st-post-featured {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
}

.st-post-featured__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .st-post-featured__img {
        height: 500px;
    }
}

/* 2-Column Post Layout */
.st-post-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1240px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .st-post-layout {
        flex-direction: row;
    }

    .st-post-main {
        flex: 1;
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Article Content Typography */
.st-post-content__lead {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--primary);
    font-weight: 500;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.st-post-content__body {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.125rem;
}

.st-post-content__body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.875rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.st-post-content__body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #2e2e2e;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.st-post-content__body h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.st-post-content__body p {
    margin-bottom: 1.5rem;
}

.st-post-content__body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.st-post-content__body a:hover {
    color: var(--accent);
}

.st-post-content__body blockquote {
    position: relative;
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.st-post-content__body blockquote::before {
    content: "format_quote";
    font-family: 'Material Symbols Outlined';
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.st-post-content__body blockquote p {
    position: relative;
    z-index: 10;
    font-size: 1.125rem;
    font-weight: 300;
    font-style: italic;
    color: white;
    margin-bottom: 1rem;
}

.st-post-content__body ul,
.st-post-content__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

.st-post-content__body li {
    margin-bottom: 0.5rem;
}

.st-post-content__body img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.st-post-content__body pre,
.st-post-content__body code {
    background-color: #1e293b;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    padding: 0.2em 0.4em;
}

.st-post-content__body pre {
    padding: 1rem 1.25rem;
    overflow-x: auto;
}

.st-post-content__body pre code {
    background: none;
    padding: 0;
}

/* Share Row */
.st-post-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.st-post-share__buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.st-post-share__label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

.st-post-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    transition: var(--stitch-transition);
}

.st-post-share__btn svg {
    width: 16px;
    height: 16px;
}

.st-post-share__btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Sidebar */
.st-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.st-post-sidebar__widget {
    background-color: var(--bg-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.st-post-sidebar__widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Search in sidebar */
.st-post-sidebar__search {
    display: flex;
    gap: 0.5rem;
}

.st-post-sidebar__search-input {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-dark);
    background-color: white;
    transition: border-color 0.2s ease;
}

.st-post-sidebar__search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.st-post-sidebar__search-btn {
    padding: 0.6rem 0.75rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.st-post-sidebar__search-btn:hover {
    background-color: var(--primary-light);
}

.st-post-sidebar__search-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Related Posts List */
.st-post-related {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.st-post-related__link {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
}

.st-post-related__link:hover .st-post-related__title {
    color: var(--accent);
}

.st-post-related__thumb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-post-related__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-post-related__thumb-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
}

.st-post-related__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.st-post-related__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.st-post-related__date {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* CTA Widget */
.st-post-sidebar__widget--cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
}

.st-post-sidebar__cta-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.st-post-sidebar__cta-title {
    font-size: 1rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.st-post-sidebar__cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.st-post-sidebar__cta-input {
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.875rem;
}

.st-post-sidebar__cta-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.st-post-sidebar__cta-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.12);
}

/* --- ABOUT PAGE (QUEM SOMOS) SPECIFIC --- */

/* Hero */
.st-about-hero {
    position: relative;
    background-color: var(--primary);
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .st-about-hero {
        padding: 9rem 0;
    }
}

.st-about-hero__bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(ellipse at top right, var(--primary-light), var(--primary), var(--primary-dark));
}

.st-about-hero__bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.2;
    background-size: cover;
    background-position: center;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
}

.st-about-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.st-about-hero__inner {
    max-width: 64rem;
}

.st-about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.st-about-hero__title {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .st-about-hero__title {
        font-size: 3.75rem;
    }
}

.st-about-hero__title-gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--accent), white, white);
}

.st-about-hero__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    max-width: 42rem;
    line-height: 1.625;
    margin-bottom: 2.5rem;
    font-weight: 300;
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
}

@media (min-width: 1024px) {
    .st-about-hero__desc {
        font-size: 1.25rem;
    }
}

/* History */
.st-about-history {
    padding: 6rem 0;
    background-color: white;
}

.st-about-history__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.st-about-history__grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .st-about-history__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.st-about-history__image-column {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .st-about-history__image-column {
        order: 1;
    }

    .st-about-history__text-column {
        order: 2;
    }
}

.st-about-history__image-glow {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 9999px;
    filter: blur(24px);
    z-index: -10;
}

.st-about-history__card {
    background-color: var(--bg-surface);
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.st-about-history__card-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0.1;
    color: var(--primary);
}

.st-about-history__card-bg-icon span {
    font-size: 8rem;
}

.st-about-history__card-year {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(0, 33, 71, 0.05);
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: -1rem;
    margin-left: -1rem;
    z-index: 0;
}

.st-about-history__card-content {
    position: relative;
    z-index: 10;
}

.st-about-history__card-badge {
    display: block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.st-about-history__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.st-about-history__card-quote {
    color: rgba(46, 46, 46, 0.7);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    font-style: italic;
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}

.st-about-history__card-desc {
    color: rgba(46, 46, 46, 0.8);
    line-height: 1.625;
    font-size: 0.875rem;
}

.st-about-history__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .st-about-history__title {
        font-size: 2.25rem;
    }
}

.st-about-history__desc {
    color: rgba(46, 46, 46, 0.7);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.st-about-history__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.st-about-history__list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.st-about-history__list-icon {
    color: var(--accent);
}

.st-about-history__list-text {
    color: var(--primary);
    font-weight: 500;
}

/* Succession */
.st-about-succession {
    padding: 6rem 0;
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.st-about-succession__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-attachment: fixed;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
}

.st-about-succession__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.st-about-succession__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .st-about-succession__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .st-about-succession__image-column {
        grid-column: span 5 / span 5;
    }

    .st-about-succession__text-column {
        grid-column: span 7 / span 7;
    }
}

.st-about-succession__image-column {
    position: relative;
}

.st-about-succession__image-rotate-bg {
    position: absolute;
    inset: -0.5rem;
    background-color: rgba(212, 175, 55, 0.2);
    transform: rotate(1deg);
    transition: transform 0.5s ease;
    border-radius: var(--radius-sm);
}

.st-about-succession__image-column:hover .st-about-succession__image-rotate-bg {
    transform: rotate(0deg);
}

.st-about-succession__image-wrapper {
    aspect-ratio: 3/4;
    background-color: var(--primary-light);
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.st-about-succession__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: grayscale(100%);
    mix-blend-mode: luminosity;
    transition: all 0.7s ease;
}

.st-about-succession__image-column:hover .st-about-succession__img {
    filter: grayscale(0%);
    mix-blend-mode: normal;
}

.st-about-succession__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    padding: 1.5rem;
    padding-top: 5rem;
}

.st-about-succession__img-name {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.st-about-succession__img-role {
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.st-about-succession__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
}

.st-about-succession__title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.25;
    color: white;
}

@media (min-width: 1024px) {
    .st-about-succession__title {
        font-size: 3rem;
    }
}

.st-about-succession__title-accent {
    color: var(--accent);
}

.st-about-succession__quote {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.st-about-succession__desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.625;
    margin-bottom: 2rem;
}

.st-about-succession__comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .st-about-succession__comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.st-about-succession__comparison-title {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.st-about-succession__comparison-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.st-about-succession__signature {
    margin-top: 2rem;
}

.st-about-succession__signature-img {
    opacity: 0.6;
    filter: invert(1) brightness(200%);
    width: 8rem;
}

/* Principles */
.st-about-principles {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.st-about-principles__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.st-about-principles__header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.st-about-principles__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.st-about-principles__subtitle {
    color: rgba(46, 46, 46, 0.6);
}

.st-about-principles__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .st-about-principles__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.st-about-principles__card {
    background-color: white;
    padding: 2.5rem;
    border-top: 4px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.st-about-principles__card:hover {
    box-shadow: var(--shadow-xl);
}

.st-about-principles__card--navy {
    border-top-color: var(--primary);
}

.st-about-principles__card--gold {
    border-top-color: var(--accent);
}

.st-about-principles__card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(0, 33, 71, 0.05);
    /* navy/5 */
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.st-about-principles__card:hover .st-about-principles__card-icon {
    background-color: var(--primary);
    color: var(--accent);
}

.st-about-principles__card-icon span {
    font-size: 1.875rem;
}

.st-about-principles__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.st-about-principles__card-text {
    color: rgba(46, 46, 46, 0.7);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* Headquarters */
.st-about-hq {
    padding: 6rem 0;
    background-color: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.st-about-hq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.st-about-hq__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .st-about-hq__grid {
        flex-direction: row;
    }

    .st-about-hq__image-column,
    .st-about-hq__text-column {
        width: 50%;
    }
}

.st-about-hq__image-column {
    width: 100%;
    background-color: var(--primary);
    padding: 0.25rem;
    /* p-1 */
}

.st-about-hq__map-wrapper {
    height: 16rem;
    /* h-64 */
    background-color: #e2e8f0;
    /* bg-slate-200 */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.st-about-hq__map-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.st-about-hq__map-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
    mix-blend-mode: multiply;
    opacity: 0.2;
}

.st-about-hq__map-icon {
    font-size: 3.75rem;
    color: rgba(0, 33, 71, 0.3);
}

.st-about-hq__map-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: white;
    padding: 0.5rem 1rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-lg);
}

.st-about-hq__text-column {
    width: 100%;
}

.st-about-hq__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.st-about-hq__desc {
    color: rgba(46, 46, 46, 0.7);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.st-about-hq__link {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.st-about-hq__link:hover {
    color: var(--accent);
}

.st-about-hq__link span {
    font-size: 0.875rem;
}

/* CTA */
.st-about-cta {
    background-color: var(--primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.st-about-cta__glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 9999px;
    filter: blur(48px);
    transform: translate(50%, -50%);
}

.st-about-cta__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.st-about-cta__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .st-about-cta__title {
        font-size: 2.25rem;
    }
}

.st-about-cta__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.st-about-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .st-about-cta__buttons {
        flex-direction: row;
    }
}

.st-btn--primary-gold {
    background-color: var(--accent);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.st-btn--primary-gold:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    color: var(--primary);
}

.st-btn--outline-white {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.st-btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   SERVICES PAGE (SOLUÇÕES)
   ========================================================================== */

/* Hero Overrides for Services */
.st-hero--services {
    text-align: center;
}

@media (min-width: 1024px) {
    .st-hero--services {
        text-align: left;
    }
}

.st-hero__content--services {
    max-width: 48rem;
    /* max-w-3xl */
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .st-hero__content--services {
        margin: 0;
    }
}

.st-hero__title-highlight {
    color: var(--accent);
}



/* Services Section */
.st-services-section {
    background-color: var(--bg-surface);
    padding: 6rem 0;
    /* py-24 */
}

.st-services-section__header {
    text-align: center;
    max-width: 42rem;
    /* max-w-2xl */
    margin: 0 auto 4rem;
    /* mb-16 */
}

.st-pre-title {
    color: rgba(0, 33, 71, 0.6);
    /* navy/60 */
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.st-section-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.st-services-grid {
    display: grid;
    gap: 2rem;
    /* gap-8 */
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .st-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .st-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.st-service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    /* p-8 */
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
    transition: var(--stitch-transition);
}

.st-service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    /* -translate-y-1 */
}

.st-service-card__icon-box {
    width: 3rem;
    /* w-12 */
    height: 3rem;
    /* h-12 */
    border-radius: 0.25rem;
    background-color: rgba(0, 33, 71, 0.05);
    /* navy/5 */
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    /* mb-6 */
    transition: background-color 0.3s, color 0.3s;
}

.st-service-card:hover .st-service-card__icon-box {
    background-color: var(--primary);
    color: var(--accent);
}

.st-service-card__icon {
    font-size: 1.5rem;
    /* text-2xl */
}

.st-service-card__title {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    /* mb-3 */
    transition: color 0.3s;
}

.st-service-card:hover .st-service-card__title {
    color: white;
}

.st-service-card__desc {
    font-size: 0.875rem;
    /* text-sm */
    color: rgba(46, 46, 46, 0.7);
    /* graphite/70 */
    line-height: 1.625;
    margin-bottom: 1.5rem;
    /* mb-6 */
    min-height: 60px;
}

.st-service-card__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* tracking-wider */
    color: var(--primary);
    transition: color 0.3s;
    text-decoration: none;
}

.st-service-card__link .material-symbols-outlined {
    font-size: 1rem;
    /* text-base */
    margin-left: 0.25rem;
}

.st-service-card:hover .st-service-card__link,
.st-service-card__link:hover {
    color: var(--accent);
}

/* Why Section */
.st-why-section {
    background-color: var(--bg-white);
    padding: 6rem 0;
    /* py-24 */
    border-top: 1px solid var(--border-color);
}

.st-why-grid {
    display: grid;
    gap: 4rem;
    /* gap-16 */
    align-items: center;
}

@media (min-width: 1024px) {
    .st-why-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.st-why-content {
    order: 2;
}

@media (min-width: 1024px) {
    .st-why-content {
        grid-column: span 5;
        order: 1;
    }
}

.st-why-header {
    position: relative;
    padding-left: 2rem;
    /* pl-8 */
    border-left: 4px solid var(--accent);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.st-why-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    letter-spacing: -0.025em;
    /* tracking-tight */
    color: var(--primary);
    line-height: 1.25;
    /* leading-tight */
    margin-bottom: 1.5rem;
    /* mb-6 */
}

@media (min-width: 1024px) {
    .st-why-title {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

.st-why-desc {
    color: rgba(46, 46, 46, 0.7);
    /* graphite/70 */
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.625;
    margin-bottom: 0;
}

.st-why-stats {
    margin-top: 2rem;
    /* mt-8 */
    display: flex;
    gap: 2rem;
    /* gap-8 */
    padding-left: 2rem;
}

.st-stat-item {
    display: flex;
    flex-direction: column;
}

.st-stat-item__value {
    display: block;
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    /* mb-1 */
}

.st-stat-item__label {
    font-size: 0.875rem;
    /* text-sm */
    color: rgba(46, 46, 46, 0.6);
    /* graphite/60 */
    text-transform: uppercase;
    letter-spacing: 0.025em;
    /* tracking-wide */
    font-weight: 500;
}

.st-why-testimonial {
    order: 1;
}

@media (min-width: 1024px) {
    .st-why-testimonial {
        grid-column: span 7;
        order: 2;
    }
}

.st-testimonial-card {
    background-color: var(--primary-dark);
    padding: 2.5rem;
    /* p-10 */
    border-radius: var(--radius-sm);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .st-testimonial-card {
        padding: 3.5rem;
        /* p-14 */
    }
}

.st-testimonial-card__pattern {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    opacity: 0.05;
}

.st-testimonial-card__svg {
    width: 16rem;
    /* w-64 */
    height: 16rem;
    /* h-64 */
}

.st-testimonial-card__title {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    /* mb-6 */
    position: relative;
    z-index: 10;
}

.st-testimonial-card__quote {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
    margin-bottom: 1.5rem;
    /* mb-6 */
    position: relative;
    z-index: 10;
}

.st-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* gap-4 */
    position: relative;
    z-index: 10;
}

.st-testimonial-card__avatar {
    width: 2.5rem;
    /* w-10 */
    height: 2.5rem;
    /* h-10 */
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.st-testimonial-card__name {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0;
}

.st-testimonial-card__role {
    font-size: 0.75rem;
    /* text-xs */
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* tracking-wider */
    margin-bottom: 0;
}

/* CTA Services */
.st-cta-section--services {
    background-color: var(--primary);
    padding: 5rem 0;
    /* py-20 */
    position: relative;
    overflow: hidden;
}

.st-cta-section__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=");
    opacity: 0.05;
    background-size: cover;
    background-position: center;
}

.st-cta-section__container {
    max-width: 800px;
    /* max-w-[1000px] */
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.st-cta-section__title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 2rem;
    /* mb-8 */
    letter-spacing: -0.025em;
    /* tracking-tight */
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .st-cta-section__title {
        font-size: 2.25rem;
        /* text-4xl */
    }
}

.st-cta-section__btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    /* px-10 py-5 */
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.st-cta-section__btn:hover {
    background-color: #bfa040;
    /* hover:bg-[#bfa040] */
    transform: scale(1.05);
    /* hover:scale-105 */
    color: var(--primary);
}

.st-cta-section__desc {
    margin-top: 1.5rem;
    /* mt-6 */
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    /* text-sm */
    margin-bottom: 0;
}

/* ============================================
   PÁGINA DE CONTATO
   ============================================ */

/* Split Card Container */
.contact-split-card {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    .contact-split-card {
        grid-template-columns: 5fr 7fr;
    }
}

/* Panel Escuro - Informações de Contato */
.contact-panel {
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-panel--dark {
    background-color: var(--primary);
    color: white;
}

.contact-panel--light {
    background-color: var(--bg-white);
    padding: 3rem 2.5rem;
    position: relative;
}

@media (min-width: 1024px) {
    .contact-panel {
        padding: 4rem 3rem;
    }

    .contact-panel--light {
        padding: 4rem 3rem;
    }
}

/* Blob decorativo */
.contact-panel__blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    
    border-radius: 50%;
    pointer-events: none;
}

/* Ícone de fundo decorativo */
.contact-panel__bg-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.05;
    pointer-events: none;
}

.contact-panel__bg-icon .material-symbols-outlined {
    font-size: 9rem;
    color: white;
}

/* Conteúdo com z-index sobre o blob */
.contact-panel__content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Título do painel */
.contact-panel__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-panel__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
}

/* Info Items (endereço, telefone, horário) */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.info-item__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(212, 175, 37, 0.15);
    border: 1px solid rgba(212, 175, 37, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--accent);
}

.info-item__icon-box .material-symbols-outlined {
    font-size: 1.125rem;
}

.info-item__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.info-item__text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Divisor + botão WhatsApp */
.contact-panel__whatsapp {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Badge Decorativo (Lado Formulário) */
.contact-badge-deco {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.45;
}

.contact-badge-deco__text-wrap {
    text-align: right;
}

.contact-badge-deco__label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 0;
}

.contact-badge-deco__since {
    font-size: 0.625rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-badge-deco__icon {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Título do formulário */
.contact-form__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.contact-form__subtitle {
    font-size: 0.8125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Grid do formulário */
.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .contact-form__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form__field {
    display: flex;
    flex-direction: column;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

/* Labels */
.form-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-medium);
}

/* Inputs & Textarea */
.form-input {
    width: 100%;
    padding: 0.6875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 33, 71, 0.08);
}

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

/* Botão de submit */
.form-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.02em;
}

.form-submit-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 33, 71, 0.2);
}

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

.contact-form__disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Seção do Mapa */

.st-map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 420px;
}

@media (min-width: 1024px) {
    .st-map-container {
        height: 480px;
    }
}

.st-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Overlay Pin no mapa */
.st-map-pin {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
    pointer-events: none;
    white-space: nowrap;
}

.st-map-pin__label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0;
}

.st-map-pin__label .material-symbols-outlined {
    font-size: 1rem;
    color: var(--accent);
}

/* =========================================================
   MÓDULO: ORCAMENTO / SOLICITAR CONSULTORIA
   Stitch ID: 846e9bd818114e7a94f5eb7c1833ee9c
   ========================================================= */

/* Hero Compacto para a página de consultoria */
.st-hero--compact {
    min-height: 420px;
    padding: 7rem 0 6rem;
}

@media (min-width: 1024px) {
    .st-hero--compact {
        padding: 9rem 0 7rem;
    }
}

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

.u-mb-4 {
    margin-bottom: 1rem;
}

/* Título hero com accent em dourado */
.st-hero__title--accent {
    color: var(--accent);
}

/* Card principal split */
.orcamento-main {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
}

.orcamento-card {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
    .orcamento-card {
        grid-template-columns: 1fr 1fr;
    }
}

/* Painel esquerdo - dark overrides */
.orcamento-panel__title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.orcamento-panel__subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Lista de benefícios */
.orcamento-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.orcamento-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.orcamento-benefit__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orcamento-benefit__icon .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--accent);
}

.orcamento-benefit__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.orcamento-benefit__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonial */
.orcamento-testimonial {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.orcamento-testimonial__quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.orcamento-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.orcamento-testimonial__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent);
    flex-shrink: 0;
}

.orcamento-testimonial__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.125rem;
}

.orcamento-testimonial__role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

/* Painel direito - formulário */
.orcamento-form-panel {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
}

.orcamento-form__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.375rem;
}

.orcamento-form__subtitle {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.orcamento-form__fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Row de dois campos lado a lado */
.orcamento-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .orcamento-form__row {
        grid-template-columns: 1fr;
    }
}

/* Select styled */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234b5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 14px 14px;
    cursor: pointer;
}

/* Campo obrigatório asterisco */
.orcamento-required {
    color: var(--error);
}

/* Botão submit dourado (override para orcamento) */
.orcamento-submit-btn {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.orcamento-submit-btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    color: var(--primary);
}

/* Disclaimer abaixo do botão */
.orcamento-form__disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
}

.orcamento-form__disclaimer .material-symbols-outlined {
    font-size: 0.9rem;
    line-height: 1;
}

/* Trust / Credibility Section */
.orcamento-trust {
    padding: 5rem 0;
}

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

.orcamento-trust__label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.orcamento-trust__desc {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.orcamento-trust__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.orcamento-trust__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1.125rem;
}

.orcamento-trust__item .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--accent);
}

/* Responsive: ajuste do painel dark para mobile */
@media (max-width: 1023px) {
    .orcamento-form-panel {
        padding: 2.5rem 1.5rem;
    }

    .orcamento-main {
        margin-top: -2rem;
    }
}

/* ============================================================
   HELLOBAR (Popup Modal) — Layout: Título → Imagem → Descrição → Botão
   ============================================================ */

/* Overlay */
.hellobar-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hellobar-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Card do modal */
.hellobar__content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--hb-bg, #ffffff);
    color: var(--hb-text, #1e293b);
    border-radius: var(--radius-md, 8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    max-width: 520px;
    width: 100%;
    /* Scroll interno garante que nunca estoura a viewport */
    max-height: min(90dvh, 90vh);
    overflow-y: auto;
    transform: translateY(-16px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
}

.hellobar-overlay.visible .hellobar__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Botão fechar — canto superior direito, sempre visível */
.hellobar__close {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    z-index: 20;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.18);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hellobar__close:hover {
    background-color: rgba(0, 0, 0, 0.35);
    transform: scale(1.1);
}

/* 1. Cabeçalho com título — sempre no topo, centralizado */
.hellobar__header {
    padding: 1.25rem 3rem 1rem 1.5rem;
    /* lado direito com espaço para o botão X */
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    flex-shrink: 0;
}

.hellobar__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: inherit;
    line-height: 1.25;
    margin: 0;
}

/* 2. Imagem — 100% visível, sem corte */
.hellobar__banner-wrap {
    flex-shrink: 0;
    line-height: 0;
    /* remove gap abaixo da img */
}

.hellobar__banner {
    display: block;
    width: 100%;
    height: auto;
    /* respeita proporção original da imagem */
}

/* 3 + 4. Descrição e Botão — área com scroll se necessário */
.hellobar__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    overflow-y: auto;
    flex: 1 1 auto;
}

.hellobar__message {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: inherit;
    opacity: 0.88;
    margin: 0;
}

.hellobar__btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent, #d4af25);
    color: var(--primary, #002147);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius-sm, 4px);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.hellobar__btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: var(--primary, #002147);
}

/* === Mobile (<= 480px) — modal centralizado, 80% da tela === */
@media (max-width: 480px) {
    .hellobar-overlay {
        align-items: center;
        padding: 1rem;
    }

    .hellobar__content {
        max-width: 100%;
        max-height: 80dvh;
        border-radius: var(--radius-md, 8px);
        transform: translateY(-16px) scale(0.97);
    }

    .hellobar-overlay.visible .hellobar__content {
        transform: translateY(0) scale(1);
    }

    /* imagem continua 100% visível em mobile, sem corte */

    .hellobar__title {
        font-size: 1.125rem;
    }

    .hellobar__body {
        padding: 1.25rem 1rem;
    }

    .hellobar__btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   CONTACT PAGE — Mapa Full-Width
   ============================================================ */

.st-map-section {
    width: 100%;
}

.st-map-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    /* aplica o clip do border-radius no iframe */
}

.st-map-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Badge decorativo sobreposto ao mapa */
.st-map-pin {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.st-map-pin__label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;    
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 0.875rem;
    margin: 0;
}

.st-map-pin__label .material-symbols-outlined {
    font-size: 1rem;
    color: var(--accent, #d4af25);
}

@media (max-width: 767px) {
    .st-map-container {
        height: 320px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border-color);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
    .cookie-banner__content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
    }
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner a:hover {
    color: var(--accent);
}

.cookie-banner__actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9990; /* Abaixo do cookie banner (9999) */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .back-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* ALERTS SISTEMA */
.crux-alert { padding: 1rem 0; font-weight: 500; position: sticky; top: 0; z-index: 2000; animation: slideDown 0.3s ease-out; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.crux-alert .container { display: flex; align-items: center; gap: 12px; }
.crux-alert p { margin: 0; flex: 1; font-size: 0.95rem; }
.crux-alert__close { background: transparent; border: none; color: inherit; font-size: 1.5rem; cursor: pointer; line-height: 1; opacity: 0.8; transition: all 0.2s; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 4px; padding: 0; }
.crux-alert__close:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.crux-alert--error { background: #ef4444; color: white; }
.crux-alert--success { background: #10b981; color: white; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(0); } to { transform: translateY(-100%); } }
.crux-alert--closing { animation: slideUp 0.3s ease-in forwards !important; }

/* ============================================================
   REFACTOR — Classes extraídas de inline CSS (auditoria 2026)
   ============================================================ */

/* success.php */
.u-text-accent         { color: var(--accent); }
.alert--flash-centered { max-width: 520px; margin: 0 auto 1.5rem; }

/* footer.php */
.st-footer-map-icon { font-size: 2.5rem; }
.st-footer-map-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-medium); text-decoration: none; transition: color 0.2s; }
.st-footer-map-link:hover { color: var(--primary); }
.st-footer-map-link .material-symbols-outlined { font-size: 1rem; }

/* ============================================================
   WhatsApp Float
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    z-index: 900;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 4rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }
}

/* ============================================================
   WhatsApp Lead Modal
   ============================================================ */
.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wa-modal[hidden] {
    display: none;
}

.wa-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.wa-modal__card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem 1.75rem;
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: waModalIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes waModalIn {
    from { opacity: 0; transform: scale(0.93) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.wa-modal__close {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
}

.wa-modal__close:hover {
    color: var(--text-dark);
}

.wa-modal__icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.wa-modal__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.wa-modal__desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.wa-modal__form {
    text-align: left;
}

.wa-modal__field {
    margin-bottom: 1rem;
}

.wa-modal__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.wa-modal__input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.wa-modal__input:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wa-modal__error {
    font-size: 0.85rem;
    color: var(--error);
    margin-bottom: 0.75rem;
}

.wa-modal__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    margin-bottom: 0.75rem;
}

.wa-modal__submit:hover:not(:disabled) {
    background-color: #1ebe59;
    transform: translateY(-1px);
}

.wa-modal__submit:disabled,
.wa-modal__submit[data-loading="1"] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.wa-modal__skip {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 0.8rem;
    font-family: var(--font-sans);
    cursor: pointer;
    padding: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.wa-modal__skip:hover {
    color: var(--text-medium);
}

body.wa-modal--open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .wa-modal__card {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================================
   LP Test — Homologação de Microconversões
   ============================================================ */
.lp-test__section { padding: 4rem 0; }
.lp-test__section--download { background-color: var(--bg-light, #f8f9fa); }
.lp-test__heading { font-size: 1.75rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-dark); }

.lp-test__video-wrapper { max-width: 800px; margin: 0 auto; }
.lp-test__video { width: 100%; border-radius: 0.5rem; display: block; }

.lp-test__download-block { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; max-width: 520px; }
.lp-test__download-desc { color: var(--text-medium); line-height: 1.6; }
.lp-test__download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.lp-test__download-link:hover { background-color: var(--accent); transform: translateY(-1px); color: var(--bg-white); }

/* ============================================================
   Contact Template
   ============================================================ */
.contact-section { padding: 4rem 0; }

.contact-section__header { text-align: center; margin-bottom: 2.5rem; }
.contact-section__title { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.contact-section__subtitle { color: var(--text-medium); font-size: 1.05rem; }

.contact-section__body { max-width: 600px; margin: 0 auto; }

.contact-form__field { margin-bottom: 1.25rem; }
.contact-form__required { color: var(--accent); }
.contact-form__actions { margin-top: 1.5rem; }
.contact-form__error { color: #ef4444; font-size: 0.9rem; margin-bottom: 1rem; min-height: 1.25rem; }
.contact-form__actions .form-submit-btn { display: inline-flex; align-items: center; gap: 0.5rem; }
