/* ================================================================
   Maison Capital — Soluções Imobiliárias (landing técnica)
   Premium redesign — aligned with main Maison Capital identity
   ================================================================ */

:root {
    --sol-bg: #07070f;
    --sol-bg-alt: #0c0c18;
    --sol-bg-card: #0f0f1a;
    --sol-bg-card-hover: #141425;
    --sol-border: rgba(201, 169, 110, 0.14);
    --sol-border-hover: rgba(201, 169, 110, 0.35);
    --sol-accent: #c9a96e;
    --sol-accent-light: #d4b87a;
    --sol-accent-dark: #b8944f;
    --sol-accent-soft: rgba(201, 169, 110, 0.10);
    --sol-accent-glow: rgba(201, 169, 110, 0.25);
    --sol-text: #f4f4f8;
    --sol-muted: rgba(255, 255, 255, 0.58);
    --sol-font-display: 'Playfair Display', Georgia, serif;
    --sol-font-elegant: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sol-font-body: 'Montserrat', system-ui, sans-serif;
    --sol-max: 1200px;
    --sol-radius: 12px;
    --sol-radius-lg: 20px;
    --sol-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --sol-ease-elegant: cubic-bezier(0.16, 1, 0.3, 1);
    --sol-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
    --sol-shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.2);
    --sol-shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.3);
    --sol-shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.2);
    --sol-gold-gradient: linear-gradient(135deg, #c9a96e, #f0d48a, #c9a96e);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.solucoes-page {
    margin: 0;
    font-family: var(--sol-font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--sol-text);
    background: var(--sol-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.solucoes-page a { color: inherit; text-decoration: none; }

.sol-container {
    width: 100%;
    max-width: var(--sol-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* ================================================================
   HEADER
   ================================================================ */
.sol-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.5s var(--sol-ease-elegant),
                box-shadow 0.5s var(--sol-ease-elegant),
                padding 0.4s var(--sol-ease-elegant);
}

.sol-header.scrolled {
    background: rgba(7, 7, 15, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35),
                0 1px 0 rgba(201, 169, 110, 0.08);
    padding: 10px 0;
}

.sol-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(12px, 2.5vw, 32px);
}

.sol-brand {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    justify-self: start;
    white-space: nowrap;
    min-width: 0;
    text-decoration: none;
}

.sol-brand-main {
    font-family: var(--sol-font-elegant);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--sol-accent);
    line-height: 1;
}

.sol-brand-divider {
    width: 1px;
    height: 24px;
    flex-shrink: 0;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.5), transparent);
}

.sol-brand-tag {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sol-muted);
    line-height: 1;
}

.sol-brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sol-muted);
}

.sol-nav {
    justify-self: center;
    max-width: 100%;
    min-width: 0;
}

.sol-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(6px, 1.1vw, 18px);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sol-nav-links::-webkit-scrollbar {
    display: none;
    height: 0;
}

.sol-nav-links a {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s var(--sol-ease);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    padding: 4px 0;
}

.sol-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--sol-accent);
    transition: width 0.35s var(--sol-ease-elegant), left 0.35s var(--sol-ease-elegant);
}

.sol-nav-links a:hover,
.sol-nav-links a.active {
    color: var(--sol-accent);
}

.sol-nav-links a:hover::after,
.sol-nav-links a.active::after {
    width: 100%;
    left: 0;
}

.sol-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 14px;
    justify-self: end;
}

/* Voltar à seleção de experiências — discreto e premium */
.sol-experience-return {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 0;
    transition: color 0.35s var(--sol-ease-elegant);
}

.sol-experience-return__glyph {
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.45), transparent);
    flex-shrink: 0;
    transition: opacity 0.35s, transform 0.35s var(--sol-ease-elegant);
}

.sol-experience-return:hover {
    color: var(--sol-accent);
}

.sol-experience-return:hover .sol-experience-return__glyph {
    opacity: 1;
    transform: scaleX(1.15);
    background: linear-gradient(90deg, transparent, var(--sol-accent), transparent);
}

.sol-admin-trigger {
    cursor: pointer;
    margin-left: 6px;
    opacity: 0.35;
    transition: opacity 0.25s, color 0.25s;
}

.sol-admin-trigger:hover {
    opacity: 0.85;
    color: var(--sol-accent);
}

.sol-link-imoveis {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.sol-link-imoveis:hover {
    color: var(--sol-accent);
    border-color: var(--sol-accent);
}

.sol-btn-header-wa {
    padding: 8px 18px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
}

.sol-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.sol-menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--sol-text);
    transition: 0.4s var(--sol-ease-elegant);
    border-radius: 2px;
}

/* ================================================================
   BUTTONS (global)
   ================================================================ */
.sol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--sol-font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--sol-ease-elegant),
                box-shadow 0.3s var(--sol-ease-elegant),
                background 0.3s;
}

.sol-btn-primary {
    background: var(--sol-accent);
    color: #0a0a0f;
}

.sol-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35);
}

.sol-btn-ghost {
    background: transparent;
    color: var(--sol-accent);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 2px;
}

.sol-btn-ghost:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.5);
}

/* ================================================================
   HERO
   ================================================================ */
.sol-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    overflow: hidden;
}

.sol-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 75% 15%, rgba(201, 169, 110, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 5% 85%, rgba(80, 100, 180, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 60%),
        linear-gradient(180deg, #07070f 0%, #0a0a18 40%, #07070f 100%);
    z-index: 0;
}

.sol-hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 65%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.sol-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.sol-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--sol-accent);
    margin-bottom: 24px;
}

.sol-hero-badge::before,
.sol-hero-badge::after {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6));
}

.sol-hero-badge::after {
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.6), transparent);
}

.sol-hero h1 {
    font-family: var(--sol-font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 24px;
    color: #fff;
}

.sol-hero h1 em {
    font-style: italic;
    color: var(--sol-accent);
    font-weight: 600;
}

.sol-hero-lead {
    font-size: 1rem;
    color: var(--sol-muted);
    max-width: 540px;
    margin: 0 0 36px;
    line-height: 1.8;
}

.sol-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.sol-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.sol-hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sol-hero-trust i {
    color: var(--sol-accent);
    font-size: 0.82rem;
}

/* Hero visual card */
.sol-hero-visual {
    position: relative;
    border-radius: var(--sol-radius-lg);
    border: 1px solid rgba(201, 169, 110, 0.12);
    background: linear-gradient(165deg, rgba(201, 169, 110, 0.06) 0%, var(--sol-bg-card) 40%);
    padding: 32px;
    box-shadow: var(--sol-shadow-strong);
}

.sol-hero-visual::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.4) 0%, transparent 40%, transparent 80%, rgba(201, 169, 110, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sol-tech-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sol-tech-mini-item {
    padding: 20px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s var(--sol-ease-elegant),
                transform 0.4s var(--sol-ease-elegant),
                box-shadow 0.4s var(--sol-ease-elegant);
}

.sol-tech-mini-item:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.sol-tech-mini-item i {
    color: var(--sol-accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: block;
}

.sol-tech-mini-item strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--sol-text);
}

.sol-tech-mini-item span {
    font-size: 0.78rem;
    color: var(--sol-muted);
    line-height: 1.5;
}

/* ================================================================
   SECTIONS (generic)
   ================================================================ */
.sol-section {
    padding: 120px 0;
    position: relative;
}

.sol-section.alt {
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 15, 26, 0.5) 0%, transparent 30%, rgba(15, 15, 26, 0.3) 100%);
}

.sol-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.sol-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sol-accent);
    margin-bottom: 18px;
}

.sol-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--sol-accent);
    opacity: 0.5;
}

.sol-section-head h2 {
    font-family: var(--sol-font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    margin: 0 0 18px;
    color: #fff;
    line-height: 1.15;
}

.sol-section-head p {
    margin: 0;
    color: var(--sol-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Gold divider between sections */
.sol-section + .sol-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sol-accent), transparent);
    opacity: 0.3;
}

/* ================================================================
   SOBRE / ABOUT
   ================================================================ */
.sol-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.sol-about-grid--triple {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sol-about-card {
    padding: 36px;
    border-radius: var(--sol-radius-lg);
    border: 1px solid var(--sol-border);
    background: linear-gradient(175deg, rgba(15, 15, 26, 0.8) 0%, var(--sol-bg-card) 100%);
    transition: border-color 0.4s var(--sol-ease-elegant),
                transform 0.4s var(--sol-ease-elegant),
                box-shadow 0.4s var(--sol-ease-elegant);
    position: relative;
    overflow: hidden;
}

.sol-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.sol-about-card:hover {
    border-color: var(--sol-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--sol-shadow-medium);
}

.sol-about-card:hover::before {
    opacity: 1;
}

.sol-about-card--engineer {
    border-color: rgba(201, 169, 110, 0.25);
    background: linear-gradient(165deg, rgba(201, 169, 110, 0.08) 0%, var(--sol-bg-card) 50%);
}

.sol-about-card--engineer::before {
    opacity: 1;
    background: var(--sol-gold-gradient);
    height: 2px;
}

.sol-engineer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sol-accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 2px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.sol-engineer-badge i {
    font-size: 1rem;
    opacity: 0.9;
}

.sol-about-note {
    margin-top: 18px !important;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.42) !important;
    line-height: 1.6 !important;
}

.sol-about-card h3 {
    font-family: var(--sol-font-display);
    font-size: 1.3rem;
    margin: 0 0 16px;
    color: var(--sol-accent);
    line-height: 1.25;
}

.sol-about-card p {
    margin: 0 0 14px;
    color: var(--sol-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.sol-about-card p:last-child { margin-bottom: 0; }

.sol-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.sol-stat {
    text-align: center;
    padding: 22px 14px;
    border-radius: 10px;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: border-color 0.3s, background 0.3s;
}

.sol-stat:hover {
    border-color: rgba(201, 169, 110, 0.25);
    background: rgba(201, 169, 110, 0.08);
}

.sol-stat strong {
    display: block;
    font-family: var(--sol-font-elegant);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sol-accent);
    margin-bottom: 6px;
}

.sol-stat span {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sol-muted);
}

/* ================================================================
   DIFERENCIAIS
   ================================================================ */
.sol-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (min-width: 769px) {
    .sol-diff-grid .sol-diff-card:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
}

.sol-diff-card {
    padding: 32px 28px;
    border-radius: var(--sol-radius-lg);
    border: 1px solid var(--sol-border);
    background: linear-gradient(175deg, rgba(15, 15, 26, 0.6) 0%, var(--sol-bg-card) 100%);
    transition: border-color 0.4s var(--sol-ease-elegant),
                box-shadow 0.4s var(--sol-ease-elegant),
                transform 0.4s var(--sol-ease-elegant);
    position: relative;
    overflow: hidden;
}

.sol-diff-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sol-gold-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s var(--sol-ease-elegant);
}

.sol-diff-card:hover {
    border-color: var(--sol-border-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(201, 169, 110, 0.08);
    transform: translateY(-6px);
}

.sol-diff-card:hover::after {
    transform: scaleX(1);
}

.sol-diff-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sol-accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: background 0.3s, border-color 0.3s;
}

.sol-diff-card:hover .icon {
    background: rgba(201, 169, 110, 0.14);
    border-color: rgba(201, 169, 110, 0.3);
}

.sol-diff-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 0.03em;
    color: var(--sol-text);
}

.sol-diff-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--sol-muted);
    line-height: 1.65;
}

/* ================================================================
   SERVIÇOS
   ================================================================ */
.sol-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sol-service {
    padding: 20px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.35s var(--sol-ease-elegant),
                border-color 0.35s var(--sol-ease-elegant),
                transform 0.35s var(--sol-ease-elegant);
    position: relative;
}

.sol-service i {
    color: var(--sol-accent);
    flex-shrink: 0;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.sol-service:hover {
    border-color: rgba(201, 169, 110, 0.2);
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-2px);
}

.sol-service:hover i {
    opacity: 1;
}

/* ================================================================
   TECNOLOGIA
   ================================================================ */
.sol-tech-section .sol-section-head { margin-bottom: 48px; }

.sol-tech-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

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

.sol-tech-list li {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding-left 0.3s var(--sol-ease-elegant);
}

.sol-tech-list li:hover {
    padding-left: 8px;
}

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

.sol-tech-list .num {
    font-family: var(--sol-font-elegant);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sol-accent);
    opacity: 0.5;
    min-width: 36px;
    line-height: 1.2;
}

.sol-tech-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--sol-text);
}

.sol-tech-list span {
    font-size: 0.88rem;
    color: var(--sol-muted);
    line-height: 1.6;
}

.sol-tech-aside {
    padding: 36px;
    border-radius: var(--sol-radius-lg);
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: linear-gradient(160deg, rgba(201, 169, 110, 0.08) 0%, var(--sol-bg-card) 45%);
    position: relative;
    overflow: hidden;
}

.sol-tech-aside::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sol-gold-gradient);
}

.sol-tech-aside h3 {
    font-family: var(--sol-font-display);
    font-size: 1.2rem;
    margin: 0 0 18px;
    color: var(--sol-text);
}

.sol-tech-aside ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    color: var(--sol-muted);
    font-size: 0.9rem;
}

.sol-tech-aside li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.sol-tech-aside li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sol-accent);
    opacity: 0.5;
}

/* ================================================================
   COMO FUNCIONA (steps)
   ================================================================ */
.sol-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step;
    position: relative;
}

.sol-step {
    position: relative;
    padding: 36px 24px 32px;
    text-align: center;
    background: transparent;
    border: none;
}

.sol-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.25);
    font-family: var(--sol-font-elegant);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sol-accent);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sol-step:hover::before {
    background: rgba(201, 169, 110, 0.14);
    border-color: var(--sol-accent);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.15);
}

.sol-step::after {
    content: '';
    position: absolute;
    top: 57px;
    right: -2px;
    width: calc(100% - 68px);
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.25), rgba(201, 169, 110, 0.05));
    transform: translateX(50%);
}

.sol-step:last-child::after {
    display: none;
}

.sol-step h3 {
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sol-text);
}

.sol-step p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--sol-muted);
    line-height: 1.6;
}

/* ================================================================
   PÚBLICOS
   ================================================================ */
.sol-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sol-audience {
    padding: 30px;
    border-radius: var(--sol-radius-lg);
    border: 1px solid var(--sol-border);
    background: linear-gradient(175deg, rgba(15, 15, 26, 0.5) 0%, rgba(15, 15, 26, 0.9) 100%);
    transition: border-color 0.4s var(--sol-ease-elegant),
                transform 0.4s var(--sol-ease-elegant),
                box-shadow 0.4s var(--sol-ease-elegant);
    position: relative;
    overflow: hidden;
}

.sol-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--sol-accent);
    transition: height 0.5s var(--sol-ease-elegant);
    border-radius: 0 0 2px 0;
}

.sol-audience:hover {
    border-color: var(--sol-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--sol-shadow-medium);
}

.sol-audience:hover::before {
    height: 100%;
}

.sol-audience h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--sol-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sol-audience p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--sol-muted);
    line-height: 1.65;
}

/* ================================================================
   FAQ
   ================================================================ */
.sol-faq {
    max-width: 740px;
    margin: 0 auto;
}

.sol-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sol-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--sol-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.sol-faq-q:hover { color: var(--sol-accent); }

.sol-faq-q i {
    color: var(--sol-accent);
    transition: transform 0.45s var(--sol-ease-elegant);
    flex-shrink: 0;
    font-size: 0.75rem;
    opacity: 0.6;
}

.sol-faq-item.open .sol-faq-q i {
    transform: rotate(180deg);
    opacity: 1;
}

.sol-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--sol-ease-elegant);
}

.sol-faq-item.open .sol-faq-a {
    max-height: 400px;
}

.sol-faq-a-inner {
    padding: 0 0 24px;
    font-size: 0.9rem;
    color: var(--sol-muted);
    line-height: 1.7;
}

/* ================================================================
   FORMULÁRIO / CONTATO
   ================================================================ */
.sol-contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.sol-contact--solo {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
    gap: 0;
}

.sol-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sol-form label {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sol-muted);
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.sol-form input,
.sol-form select,
.sol-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-family: var(--sol-font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s var(--sol-ease-elegant),
                box-shadow 0.3s var(--sol-ease-elegant),
                background 0.3s;
}

.sol-form input:focus,
.sol-form select:focus,
.sol-form textarea:focus {
    outline: none;
    border-color: rgba(201, 169, 110, 0.4);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

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

.sol-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a96e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.sol-form-msg {
    font-size: 0.85rem;
    padding: 14px 18px;
    border-radius: 8px;
    display: none;
}

.sol-form-msg.show { display: block; }
.sol-form-msg.ok { background: rgba(46, 160, 67, 0.12); color: #7dcea0; border: 1px solid rgba(46, 160, 67, 0.2); }
.sol-form-msg.err { background: rgba(231, 76, 60, 0.1); color: #f5b7b1; border: 1px solid rgba(231, 76, 60, 0.2); }

.sol-contact-aside {
    padding: 36px;
    border-radius: var(--sol-radius-lg);
    border: 1px solid var(--sol-border);
    background: linear-gradient(165deg, rgba(201, 169, 110, 0.06) 0%, var(--sol-bg-card) 45%);
    position: relative;
    overflow: hidden;
}

.sol-contact-aside::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sol-gold-gradient);
}

.sol-contact-aside h3 {
    font-family: var(--sol-font-display);
    font-size: 1.3rem;
    margin: 0 0 20px;
    color: var(--sol-text);
}

.sol-contact-aside p {
    color: var(--sol-muted);
    font-size: 0.9rem;
    margin: 0 0 20px;
    line-height: 1.65;
}

.sol-wa-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25d366;
    color: #fff !important;
    border-radius: 2px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.3s var(--sol-ease-elegant),
                box-shadow 0.3s var(--sol-ease-elegant);
}

.sol-wa-big:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.3);
}

.sol-aside-note {
    margin-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
}

.sol-tech-disclaimer {
    margin-top: 22px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.55;
}

.sol-final-section {
    padding-bottom: 0;
}

/* ================================================================
   TEAM CARDS (replicating main site style)
   ================================================================ */
.sol-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.solucoes-page .team-card {
    position: relative;
    width: 100%;
    padding-top: 30px;
    perspective: 800px;
}

.solucoes-page .team-card-inner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(38, 36, 44, 0.6) 0%, rgba(22, 20, 30, 0.78) 60%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.12);
    box-shadow:
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 1px 0 rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.25);
    color: #ccc;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.solucoes-page .team-card:hover .team-card-inner {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.22);
    box-shadow:
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 1px 0 rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.35);
}

.solucoes-page .team-card-accents {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    user-select: none;
}

.solucoes-page .team-card .acc-bg {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(201, 169, 110, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.06);
    box-shadow:
        inset 0 1px 1px 0 rgba(201, 169, 110, 0.08),
        inset 0 -1px 1px 0 rgba(0, 0, 0, 0.1);
    z-index: 0;
    transform-origin: 20% 80%;
    opacity: 0.7;
}

.solucoes-page .team-card .acc-bg:nth-child(1) { animation: teamWobble 20s ease-in-out infinite; }
.solucoes-page .team-card .acc-bg:nth-child(2) { animation: teamWobble 24s ease-in-out -8s infinite reverse; }

.solucoes-page .team-card-toplight {
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    margin: auto;
    width: 65%;
    height: 5px;
    border-radius: 10px;
    background: #fffef9;
    box-shadow:
        0 0px 1px 1px #ffc78e,
        0 1px 2px 1px rgba(255, 148, 41, 0.47),
        0 2px 6px 1px rgba(233, 139, 45, 0.47),
        0 4px 12px 0px rgba(255, 158, 61, 0.6),
        0 12px 20px 12px rgba(255, 128, 0, 0.27);
    z-index: 2;
    pointer-events: none;
}

.solucoes-page .team-photo {
    width: 100%;
    aspect-ratio: 4 / 4.2;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.solucoes-page .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(10%) brightness(0.95);
    user-select: none;
    pointer-events: none;
}

.solucoes-page .team-card:hover .team-photo img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.solucoes-page .team-photo--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(201, 169, 110, 0.1) 0%, rgba(15, 15, 26, 0.9) 60%);
}

.solucoes-page .team-photo--icon i {
    font-size: 3rem;
    color: var(--sol-accent);
    opacity: 0.6;
    transition: opacity 0.4s, transform 0.4s;
}

.solucoes-page .team-card:hover .team-photo--icon i {
    opacity: 0.85;
    transform: scale(1.08);
}

.solucoes-page .team-info {
    position: relative;
    z-index: 2;
}

.solucoes-page .team-name {
    font-family: var(--sol-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #f0ece5;
    margin: 0 0 5px;
    line-height: 1.3;
}

.solucoes-page .team-role {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(201, 169, 110, 0.85);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.solucoes-page .team-bio {
    font-size: 0.78rem;
    color: rgba(200, 195, 185, 0.7);
    line-height: 1.55;
    margin: 0;
}

@keyframes teamWobble {
    0%   { transform: translate(6px, 10px) rotate(-2deg) scale(1); }
    20%  { transform: translate(-20px, -5px) rotate(4deg) scale(1.01); }
    60%  { transform: translate(16px, 10px) rotate(-5deg) scale(1); }
    80%  { transform: translate(-18px, -12px) rotate(7deg) scale(0.97); }
    100% { transform: translate(6px, 10px) rotate(-2deg) scale(1); }
}

/* ================================================================
   CTA FINAL
   ================================================================ */
.sol-final-cta {
    text-align: center;
    padding: 96px 40px;
    border-radius: var(--sol-radius-lg);
    border: 1px solid rgba(201, 169, 110, 0.15);
    background:
        radial-gradient(ellipse 60% 50% at 50% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, rgba(15, 15, 26, 0.95) 50%);
    position: relative;
    overflow: hidden;
}

.sol-final-cta::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.25) 0%, transparent 30%, transparent 70%, rgba(201, 169, 110, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sol-final-cta h2 {
    font-family: var(--sol-font-display);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin: 0 0 18px;
    color: #fff;
}

.sol-final-cta p {
    color: var(--sol-muted);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ================================================================
   FOOTER
   ================================================================ */
.sol-footer {
    padding: 56px 0 36px;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    margin-top: 48px;
    background: linear-gradient(180deg, transparent, rgba(7, 7, 15, 0.5));
}

.sol-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.sol-footer-brand .sol-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.sol-footer-brand .sol-brand-main {
    font-size: 1.1rem;
}

.sol-footer p {
    font-size: 0.84rem;
    color: var(--sol-muted);
    margin: 14px 0 0;
    line-height: 1.65;
}

.sol-footer h4 {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sol-accent);
    margin: 0 0 16px;
    font-weight: 500;
}

.sol-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sol-footer li { margin-bottom: 10px; }

.sol-footer a {
    font-size: 0.84rem;
    color: var(--sol-muted);
    transition: color 0.3s;
}

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

.sol-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.02em;
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.sol-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--sol-ease-elegant),
                transform 0.8s var(--sol-ease-elegant);
}

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

.sol-reveal.visible:nth-child(2) { transition-delay: 0.08s; }
.sol-reveal.visible:nth-child(3) { transition-delay: 0.16s; }
.sol-reveal.visible:nth-child(4) { transition-delay: 0.24s; }
.sol-reveal.visible:nth-child(5) { transition-delay: 0.32s; }
.sol-reveal.visible:nth-child(6) { transition-delay: 0.4s; }
.sol-reveal.visible:nth-child(7) { transition-delay: 0.48s; }

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes heroGlow {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.15); }
}

/* ================================================================
   RESPONSIVE — 1024
   ================================================================ */
@media (max-width: 1024px) {
    .sol-section { padding: 88px 0; }

    .sol-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .sol-hero-visual { order: -1; max-width: 500px; margin: 0 auto; width: 100%; }
    .sol-about-grid { grid-template-columns: 1fr; }
    .sol-about-grid--triple { grid-template-columns: 1fr; }
    .sol-diff-grid { grid-template-columns: 1fr 1fr; }
    .sol-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sol-tech-showcase { grid-template-columns: 1fr; }
    .sol-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
    .sol-step::after { display: none; }
    .sol-audience-grid { grid-template-columns: 1fr 1fr; }
    .sol-contact { grid-template-columns: 1fr; }
    .sol-footer-grid { grid-template-columns: 1fr 1fr; }
    .sol-team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ================================================================
   RESPONSIVE — 768
   ================================================================ */
@media (max-width: 768px) {
    .sol-section { padding: 72px 0; }
    .sol-section-head { margin-bottom: 48px; }

    .sol-header-inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .sol-brand {
        justify-self: unset;
        flex: 1;
        min-width: 0;
    }

    .sol-nav {
        order: 2;
        flex: 0 0 0;
        width: 0;
        min-width: 0;
        overflow: visible;
        justify-self: unset;
    }

    .sol-header-actions {
        order: 3;
        flex-shrink: 0;
        justify-self: unset;
    }

    .sol-nav-links { display: none; }

    .sol-nav.mobile-open .sol-nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100vh;
        background: rgba(10, 10, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 96px 32px 32px;
        gap: 6px;
        box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
        z-index: 999;
        overflow-y: auto;
        mask-image: none;
    }

    .sol-nav.mobile-open .sol-nav-links a {
        white-space: normal;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        width: 100%;
    }

    .sol-nav.mobile-open .sol-nav-links a::after {
        display: none;
    }

    .sol-menu-toggle { display: flex; z-index: 1001; }

    .sol-experience-return__text {
        max-width: 88px;
        line-height: 1.25;
    }

    .sol-hero { padding: 110px 0 80px; min-height: auto; }
    .sol-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }

    .sol-diff-grid { grid-template-columns: 1fr; }
    .sol-services-grid { grid-template-columns: 1fr; }
    .sol-steps { grid-template-columns: 1fr; }
    .sol-step::after { display: none; }
    .sol-audience-grid { grid-template-columns: 1fr; }
    .sol-stats { grid-template-columns: 1fr; }
    .sol-footer-grid { grid-template-columns: 1fr; }

    .sol-hero-badge::before,
    .sol-hero-badge::after { width: 16px; }

    .sol-final-cta { padding: 56px 24px; }
}

/* ================================================================
   RESPONSIVE — 480 (small phones)
   ================================================================ */
@media (max-width: 480px) {
    .sol-section { padding: 56px 0; }
    .sol-section-head { margin-bottom: 36px; }

    .sol-hero { padding: 96px 0 64px; }

    .sol-about-card { padding: 24px; }
    .sol-diff-card { padding: 24px 20px; }
    .sol-contact-aside { padding: 24px; }
    .sol-tech-aside { padding: 24px; }
    .sol-hero-visual { padding: 20px; }
    .sol-tech-mini { gap: 10px; }

    .sol-tech-mini-item { padding: 14px 12px; }

    .sol-brand-main { font-size: 1rem; }
    .sol-brand-tag { font-size: 0.52rem; }
    .sol-brand-divider { height: 18px; }
}
