/* ===========================
   DESIGN GLOBAL – CUBEINN
   =========================== */

:root {
    --bg-page: #f5f5f4;
    --bg-surface: #ffffff;
    --bg-soft: #f9fafb;
    --text-main: #111827;
    --text-soft: #4b5563;
    --text-muted: #9ca3af;
    --border-soft: #e5e7eb;
    --accent: #0f766e;
    --accent-soft: #d1fae5;
    --radius-md: 14px;
    --radius-lg: 18px;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-none: 0 0 0 rgba(0,0,0,0);
    --container-width: 1180px;
    --transition-fast: 0.16s ease;
}

/* RESET */

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

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* LAYOUT GLOBAL */

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-main {
    flex: 1 0 auto;
    padding-bottom: 3.5rem;
}

/* ===========================
   TOPBAR
   =========================== */

.topbar {
    background: #020617;
    color: #e5e7eb;
    font-size: 0.75rem;
}

.topbar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.4rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-item {
    opacity: 0.9;
    white-space: nowrap;
}

.topbar-spacer {
    flex: 1;
}

.topbar-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
}

.topbar-link:hover {
    text-decoration: underline;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.1rem;
}

/* Marca */

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

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 20%, #f97316, #0f766e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Navegação */

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.9rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.18rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 500;
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.25);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    filter: brightness(0.96);
}

/* Menu mobile */

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 26px;
    height: 20px;
    position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform var(--transition-fast), opacity var(--transition-fast), top var(--transition-fast), bottom var(--transition-fast);
}

.nav-toggle-label span {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    bottom: -7px;
}

.nav-toggle:checked + .nav-toggle-label span {
    transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(-90deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
    bottom: 0;
    opacity: 0;
}

/* ===========================
   HERO HOME
   =========================== */

.hero {
    padding: 4.2rem 0 3.4rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-soft);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: flex-start;
}

.hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.hero-title {
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.1rem;
}

.hero-text {
    font-size: 0.98rem;
    max-width: 32rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 1.7rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Botões */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #ffffff;
    font-weight: 500;
    font-size: 0.94rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.45rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-secondary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* Card lateral hero (transforma em ficha técnica limpa) */

.hero-card {
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.86rem;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.hero-chip {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #166534;
    border: 1px solid #bbf7d0;
}

.hero-card-body {
    font-size: 0.84rem;
    color: var(--text-soft);
    margin-bottom: 1.2rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    font-size: 0.8rem;
}

.metric {
    border-radius: 12px;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--border-soft);
    background: var(--bg-soft);
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-bottom: 0.15rem;
}

.metric-value {
    font-weight: 600;
    color: var(--text-main);
}

/* ===========================
   LINHAS – HOME / LISTA
   =========================== */

.linhas {
    margin-top: 3.4rem;
}

.linhas h2 {
    font-size: 1.3rem;
    margin-bottom: 0.45rem;
    color: var(--text-main);
}

.linhas-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.grid-linhas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.card-linha {
    border-radius: var(--radius-md);
    padding: 1.4rem 1.3rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card-linha:hover {
    transform: translateY(-3px);
    border-color: #cbd5f5;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.card-linha h3 {
    margin: 0 0 0.4rem;
    font-size: 1.02rem;
    color: var(--text-main);
    font-weight: 560;
}

.card-linha p {
    margin: 0 0 1.2rem;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.card-linha a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.card-linha a::after {
    content: "↗";
    font-size: 0.82rem;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--border-soft);
    background: var(--bg-surface);
    padding-top: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    gap: 2rem;
    font-size: 0.86rem;
    color: var(--text-soft);
}

.site-footer h4 {
    margin: 0 0 0.7rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

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

.footer-list li + li {
    margin-top: 0.3rem;
}

.footer-list a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-list a:hover {
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    margin-top: 1.8rem;
    padding: 0.9rem 0 1.1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: #f9fafb;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ===========================
   PÁGINA DE LINHA (DETALHE)
   =========================== */

.linha-hero {
    padding: 3rem 0 2.4rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-soft);
}

.linha-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 2.4rem;
    align-items: flex-start;
}

.breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.linha-title {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
    color: var(--text-main);
}

.linha-subtitle {
    font-size: 0.98rem;
    color: var(--text-soft);
    max-width: 36rem;
    margin: 0 0 1.3rem;
}

.linha-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    color: #374151;
    background: #f9fafb;
}

.linha-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* Card lateral linha */

.linha-hero-card {
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    padding: 1.4rem 1.3rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.86rem;
}

.linha-hero-card h2 {
    font-size: 0.95rem;
    margin: 0 0 0.8rem;
    color: var(--text-main);
}

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

.linha-profile-list li + li {
    margin-top: 0.45rem;
}

/* Seções subsequentes */

.linha-section {
    padding: 2.5rem 0 0;
    background: var(--bg-soft);
}

.linha-section-alt {
    padding-top: 2.2rem;
}

.linha-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
    gap: 2.1rem;
    align-items: flex-start;
}

.linha-block h2,
.linha-block h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.linha-text {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0 0 1.1rem;
}

.bullet-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.8rem;
    font-size: 0.88rem;
}

.bullet-columns ul {
    margin: 0;
    padding-left: 1.1rem;
}

.bullet-columns li + li {
    margin-top: 0.25rem;
}

.linha-list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: #374151;
}

.linha-list li + li {
    margin-top: 0.4rem;
}

.spec-card {
    margin-top: 0.8rem;
    padding: 1rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    font-size: 0.86rem;
    color: #374151;
}

/* CTA final */

.linha-cta-final {
    padding: 2.8rem 0 0;
    background: var(--bg-soft);
}

.linha-cta-inner {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: var(--bg-surface);
    padding: 1.8rem 1.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.linha-cta-inner h2 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.linha-cta-inner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
    max-width: 34rem;
}

.linha-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Banner de linha (se usar aquele bloco PHP) */

.linha-banner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto 1.8rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 230px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===========================
   RESPONSIVO
   =========================== */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .hero-card {
        max-width: 420px;
        margin: 0 auto;
    }

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

    .linha-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .linha-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .bullet-columns {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-wrap: wrap;
        row-gap: 0.25rem;
    }

    .main-nav {
        position: fixed;
        inset: 3.8rem 1.2rem auto 1.2rem;
        border-radius: 1rem;
        background: #ffffff;
        border: 1px solid var(--border-soft);
        padding: 0.9rem 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        transform-origin: top right;
        transform: scale(0.96);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .nav-toggle-label {
        display: block;
    }

    .nav-toggle:checked ~ .main-nav {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .hero {
        padding-top: 3.2rem;
    }
}

@media (max-width: 640px) {
    .grid-linhas {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom-inner {
        flex-wrap: wrap;
    }

    .linha-cta-inner {
        padding: 1.4rem 1.3rem;
    }
}


/* ===== PORTFÓLIO ===== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

@media (max-width: 960px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.portfolio-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.portfolio-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.portfolio-body {
    padding: 1.1rem 1.15rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
}

.portfolio-tag {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #4b5563;
}

.portfolio-year {
    color: #6b7280;
}

.portfolio-title {
    margin: 0;
    font-size: 0.96rem;
}

.portfolio-title a {
    text-decoration: none;
    color: #111827;
}

.portfolio-title a:hover {
    text-decoration: underline;
}

.portfolio-escopo {
    margin: 0;
    font-size: 0.86rem;
    color: #4b5563;
}

.portfolio-footer {
    margin-top: 0.4rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #6b7280;
}

.portfolio-detalhe-thumb {
    width: 100%;
    border-radius: 14px;
    height: 260px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}



/* ===========================
   CONTATO – LAYOUT PREMIUM
   =========================== */

.contato-page {
    padding: 3.5rem 0 4rem;
    background: #f9fafb;
}

.contato-layout {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.contato-info {
    max-width: 520px;
}

.contato-title {
    font-size: 1.8rem;
    margin: 0 0 0.7rem;
    color: #111827;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.contato-subtitle {
    margin: 0 0 1.4rem;
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.6;
}

.contato-highlights p {
    margin: 0 0 0.3rem;
    font-size: 0.88rem;
    color: #374151;
}

.contato-notes-card {
    margin-top: 1.4rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    font-size: 0.88rem;
}

.contato-notes-card h2 {
    margin: 0 0 0.5rem;
    font-size: 0.94rem;
    color: #111827;
}

.contato-notes-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #4b5563;
}

/* Formulário card */

.contato-form-wrapper {
    max-width: 520px;
    width: 100%;
}

.contato-form-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    padding: 1.7rem 1.6rem;
}

.contato-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.3rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 500;
    color: #111827;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 0.7rem 0.75rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #111827;
    background: #f9fafb;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0f766e;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.2);
}

.field-error {
    font-size: 0.78rem;
    color: #b91c1c;
}

/* Alertas */

.alert {
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
    margin-bottom: 0.9rem;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contato-actions {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    align-items: center;
}

.contato-note {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsivo */

@media (max-width: 960px) {
    .contato-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contato-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .contato-form-card {
        padding: 1.4rem 1.3rem;
    }

    .contato-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}



.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: center;
}

.hero-media {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-media img {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.10);
}

.hero-card-over {
    position: absolute;
    left: 8%;
    bottom: -10%;
    max-width: 78%;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media {
        order: -1;
    }

    .hero-card-over {
        position: static;
        max-width: 100%;
        margin-top: 1rem;
    }
}
