:root {
    --teal: #1a6b5c;
    --teal-light: #2d9b82;
    --teal-pale: #e6f4f1;
    --gold: #c9a84c;
    --gold-light: #f0d98a;
    --cream: #f8f5ef;
    --dark: #111c18;
    --ouro: #a47e36;
    --mid: #3d5a52;
    --text: #1e3530;
    --muted: #7a9990;
    --white: #ffffff;
    --branco: #ffffff;
    --border: rgba(26,107,92,0.12);
    color-scheme: light;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Mulish',sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: rgba(248,245,239,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-cta {
    background: var(--teal);
    color: white;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s,transform 0.2s;
}

    .nav-cta:hover {
        background: var(--teal-light);
        transform: translateY(-1px)
    }

/* ── HERO ── */
.hero {
    padding: 140px 40px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-pale);
    border: 1px solid rgba(26,107,92,0.22);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--teal-light);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

h1 {
    font-family: 'Syne',sans-serif;
    font-size: clamp(2rem,3.5vw,3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 16px;
}

    h1 em {
        font-style: italic;
        color: var(--teal)
    }

.hero-sub {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--mid);
    max-width: 440px;
    margin-bottom: 28px;
    font-weight: 300;
}

.btn-primary {
    background: var(--teal);
    color: white;
    border: none;
    padding: 13px 28px;
    border-radius: 100px;
    font-family: 'Mulish',sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(26,107,92,0.28);
}

    .btn-primary:hover {
        background: var(--teal-light);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(26,107,92,0.38)
    }

/* Dashboard card */
.dashboard-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(18,32,28,0.14);
    padding: 22px;
    position: relative;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.dash-title {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--dark);
    font-family: 'Syne',sans-serif
}

.dash-dots {
    display: flex;
    gap: 5px
}

    .dash-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%
    }

.d1 {
    background: #ff6b6b
}

.d2 {
    background: #ffd93d
}

.d3 {
    background: #6bcb77
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px
}

.stat-box {
    background: var(--teal-pale);
    border-radius: 10px;
    padding: 12px
}

    .stat-box.gold {
        background: #fdf8ec
    }

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 3px
}

.stat-value {
    font-family: 'Syne',sans-serif;
    font-size: 1.35rem;
    color: var(--teal)
}

.stat-box.gold .stat-value {
    color: #a0722a
}

.donut-area {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--cream);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px
}

.donut-legend {
    flex: 1
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
    font-size: 0.72rem;
    color: var(--mid)
}

.legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.bar-label {
    font-size: 0.65rem;
    color: var(--muted);
    margin-bottom: 5px
}

.bar-track {
    height: 5px;
    background: #e8f0ee;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 6px
}

.bar-fill {
    height: 100%;
    border-radius: 100px
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .float-badge.top-left {
        top: -16px;
        left: -20px;
        color: var(--teal);
        z-index: 1;
    }

    .float-badge.bot-right {
        bottom: -12px;
        right: -16px;
        color: #a0722a;
    }

/* ── STRIP ── */
.strip {
    background: var(--teal);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

    .strip-item span {
        font-size: 1.1rem
    }

/* ── WHY ── */
.why-section {
    background: var(--dark);
    padding: 60px 40px
}

.why-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.why-section .section-label {
    color: var(--gold-light)
}

.why-section .section-title {
    color: white
}

    .why-section .section-title em {
        color: var(--gold)
    }

.why-section .section-intro {
    color: rgba(255,255,255,0.5)
}

.feature-pill {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
    transition: all 0.25s;
    cursor: default;
    margin-bottom: 12px;
}

    .feature-pill:last-child {
        margin-bottom: 0
    }

    .feature-pill:hover {
        background: rgba(45,155,130,0.12);
        border-color: rgba(45,155,130,0.3);
        transform: translateX(5px)
    }

.pill-icon {
    width: 40px;
    height: 40px;
    background: rgba(45,155,130,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.pill-title {
    font-size: 0.87rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
    font-family: 'Syne',sans-serif
}

.pill-text {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.42)
}

/* ── FUNCS ── */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px
}

.section-title {
    font-family: 'Syne',sans-serif;
    font-size: clamp(1.7rem,3vw,2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 14px
}

    .section-title em {
        font-style: italic;
        color: var(--teal)
    }

.section-intro {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--mid);
    font-weight: 300;
    max-width: 520px
}

.admin-section {
    padding: 60px 40px;
    background: var(--cream)
}

.admin-inner {
    max-width: 1160px;
    margin: 0 auto
}

.admin-header {
    text-align: center;
    margin-bottom: 36px
}

    .admin-header .section-intro {
        margin: 0 auto
    }

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.admin-card {
    background: white;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .admin-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--teal),var(--teal-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .admin-card:hover {
        box-shadow: 0 14px 36px rgba(26,107,92,0.1);
        transform: translateY(-3px)
    }

        .admin-card:hover::before {
            transform: scaleX(1)
        }

.card-icon {
    font-size: 1.4rem;
    margin-bottom: 10px
}

.card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: 'Syne',sans-serif
}

.card-text {
    font-size: 0.79rem;
    line-height: 1.65;
    color: var(--muted)
}

/* ── COOP ── */
.coop-section {
    background: linear-gradient(135deg,var(--teal) 0%,#0f4a3d 100%);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

    .coop-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.coop-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.coop-section .section-label {
    color: var(--gold-light)
}

.coop-section .section-title {
    color: white
}

    .coop-section .section-title em {
        font-style: italic;
        color: var(--gold)
    }

.coop-section .section-intro {
    color: rgba(255,255,255,0.6)
}

.coop-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.25s;
}

    .benefit-row:hover {
        background: rgba(255,255,255,0.12)
    }

.benefit-icon {
    font-size: 1.2rem;
    margin-top: 1px
}

.benefit-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    font-family: 'Syne',sans-serif
}

.benefit-desc {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.5
}

/* Phone mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.phone-wrap {
    position: relative;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.35))
}

.phone-body {
    width: 300px;
    background: linear-gradient(160deg,#1c1c1e 0%,#2c2c2e 60%,#1a1a1c 100%);
    border-radius: 50px;
    padding: 14px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.12);
}

    /* Side buttons */
    .phone-body::before {
        content: '';
        position: absolute;
        left: -4px;
        top: 100px;
        width: 4px;
        height: 36px;
        background: #2a2a2c;
        border-radius: 2px 0 0 2px;
        box-shadow: 0 50px 0 #2a2a2c, 0 90px 0 #2a2a2c;
    }

    .phone-body::after {
        content: '';
        position: absolute;
        right: -4px;
        top: 130px;
        width: 4px;
        height: 60px;
        background: #2a2a2c;
        border-radius: 0 2px 2px 0;
    }

.phone-inner {
    background: #000;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

/* Dynamic island */
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.di-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a1a1a
}

.di-cam {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a2a28;
    border: 2px solid #0e1a18;
    position: relative
}

    .di-cam::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #142018
    }

.phone-screen-bg {
    background: linear-gradient(160deg,#0f2820 0%,#0a1f18 100%);
    min-height: 560px;
    padding: 56px 16px 20px;
    position: relative;
}

/* Status bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 5px
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 1.5px;
    height: 12px
}

    .signal-bars span {
        width: 3px;
        background: rgba(255,255,255,0.9);
        border-radius: 1px
    }

/* App header */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.app-logo-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(45,155,130,0.25);
    border: 1px solid rgba(45,155,130,0.3);
    border-radius: 100px;
    padding: 6px 12px;
}

.app-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-light)
}

.app-logo-text {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.04em
}

.app-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white
}

/* Screen title */
.screen-title {
    font-size: 13px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    font-family: -apple-system,BlinkMacSystemFont,sans-serif
}

.screen-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px
}

/* Progress ring area */
.progress-area {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ring-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0
}

.ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ring-val {
    font-size: 15px;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: -apple-system,sans-serif
}

.ring-lbl {
    font-size: 8px;
    color: rgba(255,255,255,0.4);
    margin-top: 1px
}

.progress-info {
    flex: 1
}

.pinfo-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px
}

.pinfo-sub {
    font-size: 9.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4
}

.pinfo-row {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    gap: 8px
}

.pinfo-stat {
    flex: 1
}

.pinfo-stat-label {
    font-size: 8.5px;
    color: rgba(255,255,255,0.35)
}

.pinfo-stat-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal-light)
}

/* Mini cards row */
.mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px
}

.mini-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 10px;
}

.mini-card-label {
    font-size: 8.5px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px
}

.mini-card-val {
    font-size: 16px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    font-family: -apple-system,sans-serif
}

.mini-card-sub {
    font-size: 8px;
    color: rgba(255,255,255,0.3);
    margin-top: 1px
}

/* Chart area */
.chart-area {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 12px;
}

.chart-title {
    font-size: 9px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 44px
}

.mini-bar {
    border-radius: 3px 3px 0 0;
    flex: 1;
    transition: height 0.3s
}

.chart-labels {
    display: flex;
    gap: 5px;
    margin-top: 5px
}

.chart-label {
    flex: 1;
    text-align: center;
    font-size: 7.5px;
    color: rgba(255,255,255,0.25)
}

/* Next payment badge */
.next-pay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 12px;
}

.next-pay-label {
    font-size: 9px;
    color: rgba(255,255,255,0.4)
}

.next-pay-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-light)
}

.pay-badge {
    background: rgba(201,168,76,0.2);
    border-radius: 100px;
    padding: 3px 8px;
    font-size: 8px;
    font-weight: 700;
    color: var(--gold-light)
}

/* ── CONTRACTS ── */
.contracts-section {
    background: white;
    padding: 60px 40px
}

.contracts-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.contract-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px
}

.tag {
    background: var(--teal-pale);
    border: 1px solid rgba(26,107,92,0.15);
    color: var(--teal);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.79rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: default;
}

    .tag:hover {
        background: var(--teal);
        color: white
    }

.contract-visual {
    background: var(--cream);
    border-radius: 18px;
    padding: 24px
}

.cv-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px
}

.timeline {
    position: relative;
    padding-left: 22px
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: var(--teal-pale)
    }

.tl-item {
    position: relative;
    margin-bottom: 14px
}

.tl-dot {
    position: absolute;
    left: -19px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: white
}

    .tl-dot.active {
        background: var(--teal)
    }

.tl-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--dark)
}

.tl-sub {
    font-size: 0.68rem;
    color: var(--muted)
}

/* ── CTA ── */
.cta-section {
    background: var(--cream);
    padding: 60px 40px
}

.cta-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start
}

.cta-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg,var(--teal),var(--gold));
    border-radius: 100px;
    margin: 14px 0 18px
}

.cta-checklist {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--mid);
    font-weight: 600
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(26,107,92,0.1);
    overflow: hidden
}

.form-header {
    background: var(--teal);
    padding: 22px 28px
}

.form-title {
    font-family: 'Syne',sans-serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 4px
}

.form-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6)
}

.form-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px
}

    .form-group label {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--mid)
    }

    .form-group input, .form-group select, .form-group textarea {
        border: 1.5px solid rgba(26,107,92,0.14);
        border-radius: 9px;
        padding: 10px 13px;
        font-family: 'Mulish',sans-serif;
        font-size: 0.85rem;
        color: var(--dark);
        background: var(--cream);
        outline: none;
        transition: border-color 0.2s,box-shadow 0.2s;
        width: 100%;
    }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: var(--muted)
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(26,107,92,0.07);
            background: white;
        }

    .form-group select {
        appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9990' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 13px center;
        padding-right: 32px;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 76px;
        line-height: 1.5
    }

.form-submit {
    width: 100%;
    padding: 13px;
    font-size: 0.88rem;
    border-radius: 10px;
    margin-top: 2px
}

.form-note {
    font-size: 0.68rem;
    color: var(--muted);
    text-align: center
}

/* ─── FOOTER ─── */
footer {
    background: #080f0c;
    padding: 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Ubuntu', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--branco);
}

    .footer-logo img {
        max-width: 150px;
    }

    .footer-logo span {
        color: var(--ouro);
    }

footer p {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
}

footer a {
    color: var(--ouro);
    text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

.hero-text > * {
    animation: fadeUp 0.6s ease both
}

.hero-badge {
    animation-delay: 0s
}

h1 {
    animation-delay: 0.08s
}

.hero-sub {
    animation-delay: 0.16s
}

.hero-actions {
    animation-delay: 0.24s
}

.hero-visual {
    animation: fadeUp 0.7s 0.18s ease both
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    nav {
        padding: 12px 20px
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 80px 20px 40px;
        gap: 32px
    }

    .hero-sub {
        max-width: 100%
    }

    .hero-visual {
        order: -1
    }

    .dashboard-card {
        max-width: 100%
    }

    .float-badge.top-left {
        top: -10px;
        left: -6px
    }

    .float-badge.bot-right {
        bottom: -8px;
        right: -6px
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .admin-section, .contracts-section, .cta-section, .coop-section {
        padding: 48px 20px
    }

    .why-section {
        padding: 48px 20px
    }

    .admin-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .coop-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .contracts-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .cta-left .section-title {
        max-width: 100%
    }

    .cta-left .section-intro {
        max-width: 100%
    }

    .strip {
        gap: 20px;
        padding: 12px 20px
    }

    footer {
        padding: 28px 20px
    }
}

@media(max-width:580px) {
    .admin-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .hero-actions {
        flex-direction: column
    }

    .btn-primary {
        text-align: center
    }
}

/* Modal Sucesso */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .modal-overlay.modal-visible {
        opacity: 1;
        pointer-events: all;
    }

.modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.modal-visible .modal-box {
    transform: scale(1);
}

.modal-icon {
    margin-bottom: 1.25rem;
}

.modal-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111;
}

.modal-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.modal-btn-fechar {
    margin-top: 1.75rem;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/*-- Manter Tema Claro Media Query --*/
@media (prefers-color-scheme: dark) {
    html {
        filter: none !important;
    }
}