/*
 Theme Name:   Hello Elementor Child — Eixo23
 Theme URI:    https://eixo23.eng
 Description:  Child theme do Hello Elementor com o sistema de design da Eixo23
 Author:       Eixo23
 Template:     hello-elementor
 Version:      1.0.1
 Text Domain:  hello-elementor-child
*/

/* ─────────────────────────────────────────────
   0. IMPORT FONT
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─────────────────────────────────────────────
   1. DESIGN TOKENS (CSS CUSTOM PROPERTIES)
───────────────────────────────────────────── */
:root {
    --brand-orange:  #E8520A;
    --brand-dark:    #0F0F0F;
    --brand-mid:     #1A1A1A;
    --brand-card:    #242424;
    --brand-border:  #2A2A2A;
    --font-sans:     'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* ─────────────────────────────────────────────
   2. RESET / BASE
───────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body,
.elementor-page {
    font-family: var(--font-sans) !important;
    background-color: var(--brand-dark) !important;
    color: #ffffff !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* ─────────────────────────────────────────────
   3. NAVBAR (sticky, fora do Elementor)
───────────────────────────────────────────── */
#eixo23-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

#eixo23-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.eixo23-nav-inner {
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    height: 60px;
}

/* Logo como imagem PNG */
.eixo23-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

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

/* Mantido para compatibilidade (caso não use imagem) */
.eixo23-logo-sq {
    width: 20px;
    height: 20px;
    background: var(--brand-orange);
    display: block;
}

.eixo23-logo-text {
    color: #111827;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.02em;
    font-family: var(--font-sans);
}

.eixo23-logo-text span {
    color: var(--brand-orange);
}

.eixo23-nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.eixo23-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eixo23-nav-links a {
    color: #4b5563;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.eixo23-nav-links a:hover,
.eixo23-nav-links a.active {
    color: var(--brand-orange);
}

.eixo23-nav-cta {
    background: var(--brand-orange);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.2s;
    white-space: nowrap;
    font-family: var(--font-sans);
    border-radius: 4px;
}

.eixo23-nav-cta:hover {
    background: #c4430a;
    color: #fff !important;
}

/* Burger button */
#eixo23-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

#eixo23-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
}

/* Mobile menu */
#eixo23-mob-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
}

#eixo23-mob-menu.open {
    display: flex;
}

#eixo23-mob-menu a {
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-sans);
}

#eixo23-mob-menu .mob-cta {
    background: var(--brand-orange);
    color: #fff !important;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .eixo23-nav-inner {
        padding: 0 20px;
    }

    .eixo23-nav-right {
        display: none !important;
    }

    #eixo23-burger {
        display: flex;
    }
}

/* ─────────────────────────────────────────────
   4. ELEMENTOR SECTION OVERRIDES
───────────────────────────────────────────── */
.elementor-section,
.elementor-container,
.elementor-row {
    max-width: 100% !important;
}

/* Remove default elementor padding on stretched sections */
.e-con,
.elementor-section.elementor-section-stretched {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ─────────────────────────────────────────────
   5. BRAND UTILITIES (usáveis via Custom CSS)
───────────────────────────────────────────── */
.bg-brand-dark    { background-color: var(--brand-dark) !important; }
.bg-brand-mid     { background-color: var(--brand-mid) !important; }
.bg-brand-orange  { background-color: var(--brand-orange) !important; }
.bg-brand-card    { background-color: var(--brand-card) !important; }
.text-brand-orange{ color: var(--brand-orange) !important; }
.border-brand     { border-color: var(--brand-border) !important; }

/* ─────────────────────────────────────────────
   6. HERO SECTION
───────────────────────────────────────────── */
.eixo23-hero {
    width: 100%;
    background: var(--brand-dark);
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: flex-start;
    padding: 304px 72px 72px;
}

.eixo23-hero-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 80px;
    width: 100%;
    flex: 1;
}

.eixo23-hero-left {
    flex: 1.1;
}

.eixo23-hero-right {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 28px;
}

.eixo23-hero h1 {
    font-size: 88px;
    font-weight: 900;
    line-height: 96px;
    color: #fff;
    margin: 0;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
}

.eixo23-hero h1 span {
    color: var(--brand-orange);
}

.eixo23-hero-desc {
    color: #c9cbd0;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
}

.eixo23-hero-desc .highlight {
    color: var(--brand-orange);
    font-weight: 400;
}

.eixo23-hero-cta {
    display: inline-block;
    border: 1.5px solid var(--brand-orange);
    color: var(--brand-orange);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    font-family: var(--font-sans);
    border-radius: 4px;
    align-self: flex-start;
}

.eixo23-hero-cta:hover {
    background: var(--brand-orange);
    color: #fff;
}

/* Remover bloco laranja (não existe no novo design) */
.eixo23-hero-orange-block {
    display: none;
}

/* Compatibilidade – link antigo */
.eixo23-hero-link {
    display: none;
}

@media (max-width: 1023px) {
    .eixo23-hero {
        padding: 80px 24px 48px;
        min-height: auto;
        align-items: flex-start;
    }

    .eixo23-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .eixo23-hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.05;
    }

    .eixo23-hero-cta {
        align-self: stretch;
        text-align: center;
    }
}

/* ─────────────────────────────────────────────
   7. SOBRE / FEATURES SECTION
───────────────────────────────────────────── */
.eixo23-sobre {
    width: 100%;
    background: var(--brand-dark);
    padding: 80px 48px;
}

.eixo23-sobre-header {
    margin-bottom: 48px;
}

.eixo23-label {
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
    font-family: var(--font-sans);
}

.eixo23-section-title {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    margin: 0 0 16px;
    font-family: var(--font-sans);
}

.eixo23-section-title.dark {
    color: #111827;
}

.eixo23-section-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
    font-family: var(--font-sans);
}

.eixo23-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eixo23-feature-card {
    padding: 32px;
    border: 1px solid rgba(232, 82, 10, 0.4);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    transition: all 0.3s;
}

.eixo23-feature-card:hover {
    background: var(--brand-mid);
    border-color: var(--brand-orange);
}

.eixo23-icon-img {
    display: block;
    height: auto;
    max-height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.eixo23-feature-card h3 {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 12px;
    font-family: var(--font-sans);
}

.eixo23-feature-card p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-sans);
}

@media (max-width: 1023px) {
    .eixo23-sobre {
        padding-left: 24px;
        padding-right: 24px;
    }

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

@media (max-width: 639px) {
    .eixo23-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────
   8. NOSSOS PROJETOS / BENEFÍCIOS (split section)
───────────────────────────────────────────── */
.eixo23-projetos {
    width: 100%;
    background: var(--brand-dark);
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
}

.eixo23-projetos-header {
    margin-bottom: 48px;
}

.eixo23-projetos-header .eixo23-label {
    letter-spacing: 0.2em;
    font-size: 10px;
    margin-bottom: 16px;
}

.eixo23-projetos-header .eixo23-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.eixo23-projetos-split {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: stretch;
}

.eixo23-projetos-img {
    width: 41.666%;
    min-height: 500px;
    background: #f4f4f5;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eixo23-projetos-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.eixo23-projetos-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.eixo23-numbered-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.eixo23-numbered-item {
    display: block;
}

.eixo23-numbered-item h3 {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 12px;
    font-family: var(--font-sans);
}

.eixo23-item-desc {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px;
    font-family: var(--font-sans);
}

.eixo23-item-benefit {
    color: #737373;
    font-size: 11px;
    margin: 0;
    font-family: var(--font-sans);
}

@media (max-width: 1023px) {
    .eixo23-projetos {
        padding: 48px 24px;
    }

    .eixo23-projetos-split {
        flex-direction: column;
        gap: 48px;
    }

    .eixo23-projetos-img {
        width: 100%;
        min-height: 400px;
    }

    .eixo23-projetos-content {
        padding: 0;
    }
}

/* ─────────────────────────────────────────────
   9. PROCESSO / STEPS SECTION
───────────────────────────────────────────── */
.eixo23-processo {
    width: 100%;
    background: #f2f4f6;
    padding: 64px 24px;
    display: flex;
    justify-content: center;
}

.eixo23-processo-inner {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.eixo23-processo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.eixo23-processo .eixo23-label {
    color: #b95118;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.eixo23-processo .eixo23-section-title {
    color: #b95118;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}

.eixo23-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.eixo23-step {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.eixo23-step-badge {
    background: #14191e;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 56px;
    flex-shrink: 0;
}

.eixo23-step-badge span {
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-sans);
}

.eixo23-step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eixo23-step-body h3 {
    color: #14191e;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 4px;
    font-family: var(--font-sans);
}

.eixo23-step-body p {
    color: #6b7280;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .eixo23-step {
        gap: 16px;
    }
    .eixo23-step-badge {
        width: 70px;
        height: 48px;
    }
}

/* ─────────────────────────────────────────────
   10. CASES / PORTFOLIO SECTION
───────────────────────────────────────────── */
.eixo23-cases {
    width: 100%;
    background: var(--brand-dark);
    padding: 64px 48px;
}

.eixo23-cases-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.eixo23-cases-header a {
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--brand-orange);
    padding-bottom: 2px;
    text-decoration: none;
    transition: opacity 0.2s;
    font-family: var(--font-sans);
}

.eixo23-cases-header a:hover {
    opacity: 0.8;
}

.eixo23-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--brand-border);
}

.eixo23-case-card {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--brand-card);
    overflow: hidden;
    border-right: 1px solid var(--brand-border);
    cursor: pointer;
}

.eixo23-case-card:last-child {
    border-right: none;
}

.eixo23-case-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.eixo23-case-overlay {
    position: absolute;
    inset: 0;
    transition: background-color 0.2s;
}

.eixo23-case-overlay.orange {
    background: rgba(232, 82, 10, 0.2);
}

.eixo23-case-overlay.dark {
    background: rgba(17, 24, 39, 0.6);
}

.eixo23-case-card:hover .eixo23-case-overlay.orange {
    background: rgba(232, 82, 10, 0.35);
}

.eixo23-case-card:hover .eixo23-case-overlay.dark {
    background: rgba(17, 24, 39, 0.4);
}

.eixo23-case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.eixo23-case-tag {
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    font-family: var(--font-sans);
}

.eixo23-case-info h3 {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin: 4px 0 4px;
    transition: color 0.2s;
    font-family: var(--font-sans);
}

.eixo23-case-card:hover .eixo23-case-info h3 {
    color: var(--brand-orange);
}

.eixo23-case-info p {
    color: #9ca3af;
    font-size: 12px;
    margin: 0;
    font-family: var(--font-sans);
}

@media (max-width: 1023px) {
    .eixo23-cases {
        padding: 48px 24px;
    }

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

    .eixo23-case-card:nth-child(2) {
        border-right: none;
    }

    .eixo23-case-card:nth-child(1),
    .eixo23-case-card:nth-child(2) {
        border-bottom: 1px solid var(--brand-border);
    }
}

@media (max-width: 639px) {
    .eixo23-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─────────────────────────────────────────────
   11. CTA BANNER SECTION
───────────────────────────────────────────── */
.eixo23-cta-banner {
    width: 100%;
    background: var(--brand-orange);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eixo23-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 40%);
    background-size: 20px 20px;
}

.eixo23-cta-inner {
    position: relative;
}

.eixo23-cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 32px;
    max-width: 600px;
    line-height: 1.2;
    font-family: var(--font-sans);
}

.eixo23-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.eixo23-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-dark);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 32px;
    text-decoration: none;
    transition: background-color 0.2s;
    font-family: var(--font-sans);
}

.eixo23-btn-dark:hover {
    background: var(--brand-mid);
    color: #fff !important;
}

.eixo23-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #fff;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 32px;
    text-decoration: none;
    transition: background-color 0.2s;
    font-family: var(--font-sans);
}

.eixo23-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
}

/* ─────────────────────────────────────────────
   12. FAQ + CONTATO SECTION
───────────────────────────────────────────── */
.eixo23-contato {
    width: 100%;
    background: #f9fafb;
    display: flex;
    flex-direction: row;
    min-height: 600px;
}

.eixo23-faq-col {
    width: 41.666%;
    padding: 64px 48px;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.eixo23-faq-col h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.2;
    font-family: var(--font-sans);
}

.eixo23-faq-col > p {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 40px;
    font-family: var(--font-sans);
}

.eixo23-faq-list {
    border-top: 1px solid #e5e7eb;
}

.eixo23-faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    cursor: pointer;
}

.eixo23-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.eixo23-faq-trigger span {
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-sans);
}

.eixo23-faq-icon {
    color: var(--brand-orange);
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.eixo23-faq-item.open .eixo23-faq-icon {
    transform: rotate(45deg);
}

.eixo23-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.eixo23-faq-item.open .eixo23-faq-body {
    max-height: 300px;
}

.eixo23-faq-body p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
    padding: 12px 0 4px;
    margin: 0;
    font-family: var(--font-sans);
}

/* Contact form column */
.eixo23-form-col {
    flex: 1;
    padding: 64px 48px;
    background: #f9fafb;
}

.eixo23-form-col h3 {
    color: #111827;
    font-weight: 900;
    font-size: 20px;
    margin: 0 0 32px;
    font-family: var(--font-sans);
}

.eixo23-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eixo23-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.eixo23-form-group label {
    display: block;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.eixo23-form-group input,
.eixo23-form-group select,
.eixo23-form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #d1d5db;
    color: #111827;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: border-color 0.2s;
    appearance: none;
}

.eixo23-form-group input:focus,
.eixo23-form-group select:focus,
.eixo23-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
}

.eixo23-form-group select {
    color: #6b7280;
}

.eixo23-form-group textarea {
    resize: none;
}

.eixo23-submit-btn {
    display: inline-block;
    background: var(--brand-orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: var(--font-sans);
}

.eixo23-submit-btn:hover {
    background: #c4430a;
}

.eixo23-submit-btn.success {
    background: #16a34a;
}

@media (max-width: 1023px) {
    .eixo23-contato {
        flex-direction: column;
    }

    .eixo23-faq-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 48px 24px;
    }

    .eixo23-form-col {
        padding: 48px 24px;
    }
}

@media (max-width: 639px) {
    .eixo23-form-row {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────
   13. FOOTER
───────────────────────────────────────────── */
.eixo23-footer {
    width: 100%;
    background: var(--brand-dark);
    border-top: 1px solid var(--brand-border);
    padding: 40px 48px;
}

.eixo23-footer-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.eixo23-footer-brand .eixo23-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 8px;
}

.eixo23-footer-brand p {
    color: #4b5563;
    font-size: 12px;
    margin: 0;
    font-family: var(--font-sans);
}

.eixo23-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eixo23-footer-contact .footer-col-title {
    color: #9ca3af;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.eixo23-footer-contact p {
    color: #6b7280;
    font-size: 12px;
    margin: 0;
    font-family: var(--font-sans);
}

.eixo23-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eixo23-footer-links a {
    color: #6b7280;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
    font-family: var(--font-sans);
}

.eixo23-footer-links a:hover {
    color: #fff;
}

.eixo23-footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--brand-border);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.eixo23-footer-bottom p {
    color: #374151;
    font-size: 12px;
    margin: 0;
    font-family: var(--font-sans);
}

@media (max-width: 1023px) {
    .eixo23-footer {
        padding: 40px 24px;
    }

    .eixo23-footer-inner {
        flex-direction: column;
    }
}

/* ─────────────────────────────────────────────
   14. OVERRIDES ELEMENTOR DEFAULTS
───────────────────────────────────────────── */
/* Remove Elementor default margin from body */
.site-header,
.site-footer {
    display: none;
}

/* Make sure full-width sections work */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100%;
}

/* Ensure HTML widget has no extra spacing */
.elementor-widget-html {
    line-height: 0;
}

.elementor-widget-html > div {
    line-height: normal;
}

/* ─────────────────────────────────────────────
   11. DESTAQUES (4 CARDS) E CTA
───────────────────────────────────────────── */
.eixo23-destaques {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
.eixo23-destaque-card {
    position: relative;
    height: 550px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.eixo23-destaque-overlay {
    position: absolute;
    inset: 0;
    transition: background-color 0.2s;
}
.eixo23-destaque-overlay.dark {
    background-color: rgba(15, 15, 15, 0.4);
    mix-blend-mode: multiply;
}
.eixo23-destaque-overlay.orange {
    background-color: rgba(232, 82, 10, 0.4);
    mix-blend-mode: multiply;
}
.eixo23-destaque-bg-dark {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 15, 15, 0.4);
}
.eixo23-destaque-bg-orange {
    position: absolute;
    inset: 0;
    background-color: rgba(232, 82, 10, 0.4);
}
.eixo23-destaque-gradient-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0.2) 100%);
}
.eixo23-destaque-gradient-orange {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232, 82, 10, 0.9) 0%, rgba(232, 82, 10, 0.2) 100%);
}
.eixo23-destaque-title {
    position: relative;
    z-index: 10;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.025em;
    max-width: 95%;
    margin: 0;
    font-family: var(--font-sans);
}

@media (max-width: 1024px) {
    .eixo23-destaques { grid-template-columns: repeat(2, 1fr); }
    .eixo23-destaque-card { height: 450px; padding: 32px; }
}
@media (max-width: 768px) {
    .eixo23-destaques { grid-template-columns: 1fr; }
    .eixo23-destaque-card { height: 350px; padding: 24px; }
}

/* CTA Evite Prejuizos */
.eixo23-evite-prejuizos {
    background-color: var(--brand-orange);
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.eixo23-ep-inner {
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.eixo23-ep-label {
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-family: var(--font-sans);
}
.eixo23-ep-title {
    color: var(--brand-dark);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    font-family: var(--font-sans);
}
.eixo23-ep-desc {
    color: #1A1A1A;
    font-size: 16px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 0 48px;
    font-family: var(--font-sans);
    font-weight: 400;
}
.eixo23-ep-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}
.eixo23-btn-solid-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #14191E;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font-sans);
    white-space: nowrap;
}
.eixo23-btn-solid-dark:hover {
    background-color: #000000;
}
.eixo23-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #14191E;
    color: #14191E !important;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font-sans);
    white-space: nowrap;
}
.eixo23-btn-outline-dark:hover {
    background-color: #14191E;
    color: #ffffff !important;
}

.eixo23-br-desk { display: block; }

@media (max-width: 1024px) {
    .eixo23-ep-title { font-size: 34px; }
}
@media (max-width: 768px) {
    .eixo23-evite-prejuizos { padding: 80px 24px; }
    .eixo23-ep-title { font-size: 28px; }
    .eixo23-ep-desc { font-size: 15px; }
    .eixo23-ep-buttons { flex-direction: column; gap: 16px; }
    .eixo23-btn-solid-dark, .eixo23-btn-outline-dark { width: 100%; padding: 16px 24px; }
    .eixo23-br-desk { display: inline; } /* allow natural flow */
}

/* ─────────────────────────────────────────────
   12. NOVA FAQ 
───────────────────────────────────────────── */
.eixo23-faq-section {
    width: 100%;
    background-color: #f2f4f6;
    padding: 80px 48px;
    display: flex;
    justify-content: center;
}
.eixo23-faq-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 80px;
}
.eixo23-faq-left {
    flex: 5;
    padding-top: 8px;
}
.eixo23-faq-left .eixo23-label {
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}
.eixo23-faq-left h2 {
    color: #1A1A1A;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin: 0;
    font-family: var(--font-sans);
}
.eixo23-faq-right {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.eixo23-acc-item {
    background-color: #14191E;
    border-radius: 6px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.eixo23-acc-item:hover {
    background-color: #000000;
}
.eixo23-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.eixo23-acc-title {
    color: var(--brand-orange);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-sans);
    margin: 0;
}
.eixo23-acc-icon {
    color: var(--brand-orange);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    user-select: none;
    transition: transform 0.3s;
}
.eixo23-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.eixo23-acc-body.open {
    max-height: 300px;
}
.eixo23-acc-body p {
    color: #9CA3AF;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    padding-top: 16px;
    padding-bottom: 4px;
    font-family: var(--font-sans);
}

@media (max-width: 1024px) {
    .eixo23-faq-inner { gap: 48px; }
}
@media (max-width: 768px) {
    .eixo23-faq-section { padding: 80px 24px; }
    .eixo23-faq-inner { flex-direction: column; gap: 40px; }
    .eixo23-faq-left h2 { font-size: 28px; }
    .eixo23-acc-item { padding: 20px; }
    .eixo23-acc-title { font-size: 14px; }
    .eixo23-acc-body p { font-size: 12px; }
}

/* ─────────────────────────────────────────────
   13. NOVO CONTATO 
───────────────────────────────────────────── */
.eixo23-contact-section {
    background-color: #f8f9fa; /* slightly off white */
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}
.eixo23-contact-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}
.eixo23-contact-left {
    flex: 1 1 400px;
}
.eixo23-contact-label {
    display: block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}
.eixo23-contact-title {
    color: #1A1A1A;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--font-sans);
    margin: 0;
}
.eixo23-contact-right {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.eixo23-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.eixo23-input-group label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1A1A1A;
    font-family: var(--font-sans);
    transition: color 0.2s;
}
.eixo23-input-group:focus-within label {
    color: var(--brand-orange);
}
.eixo23-input-field {
    width: 100%;
    background-color: transparent;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 16px;
    font-size: 14px;
    color: #4b5563;
    font-family: var(--font-sans);
    outline: none;
    transition: all 0.2s;
}
.eixo23-input-field:focus {
    border-color: var(--brand-orange);
    color: var(--brand-orange); /* To match the print where text is slightly orange */
}
.eixo23-input-field::placeholder {
    color: #9CA3AF;
}
textarea.eixo23-input-field {
    resize: none;
}
.eixo23-btn-submit {
    align-self: flex-start;
    background-color: #14191E;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: var(--font-sans);
}
.eixo23-btn-submit:hover {
    background-color: #000;
}

/* ─────────────────────────────────────────────
   14. NOVO FOOTER 
───────────────────────────────────────────── */
.eixo23-footer-new {
    background-color: #101418; /* slightly darker than standard brand dark */
    padding: 100px 5% 40px;
    color: #fff;
    font-family: var(--font-sans);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.eixo23-footer-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}
.eixo23-footer-left {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
}
.eixo23-footer-logo {
    width: auto;
    height: 48px;
    margin-bottom: 40px;
    object-fit: contain;
    align-self: flex-start;
}
.eixo23-footer-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 24px 0;
    color: #fff;
    max-width: 480px;
}
.eixo23-footer-desc {
    font-size: 11px;
    line-height: 1.6;
    color: #9CA3AF;
    margin: 0;
}
.eixo23-footer-social {
    margin-top: 60px;
    display: flex;
    gap: 16px;
}
.eixo23-footer-social img {
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.eixo23-footer-social a:hover img {
    opacity: 1;
}

.eixo23-footer-right {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 0;
}
.eixo23-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.eixo23-footer-links li {
    font-size: 10px;
    font-weight: 600;
    color: #D1D5DB;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.eixo23-footer-links li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.eixo23-footer-links li a:hover {
    color: #fff;
}
.eixo23-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 10px;
    color: #D1D5DB;
    line-height: 1.5;
}

.eixo23-footer-bottom-bar {
    max-width: 1200px;
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: flex-end;
}
.eixo23-footer-bottom-bar p {
    font-size: 10px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 1024px) {
    .eixo23-footer-right { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .eixo23-contact-inner { gap: 40px; }
    .eixo23-footer-right { grid-template-columns: 1fr; gap: 32px; }
    .eixo23-footer-bottom-bar { justify-content: flex-start; margin-top: 60px; }
}

