/* ========== FLOATING NAV ========== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.80);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(244, 224, 176, 0.08);
    transition: all 0.4s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(0) invert(85%) sepia(21%) saturate(546%) hue-rotate(352deg) brightness(101%) contrast(92%);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--dourado-accent);
    color: var(--dourado);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--dourado-accent);
    color: var(--escuro);
}

.nav-phone {
    display: none;
    color: var(--cinza-text);
    font-size: 0.82rem;
    font-weight: 400;
}

@media (min-width: 768px) {
    .nav-phone {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

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

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback gradient when video is not loaded */
.hero-video-bg .hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, var(--escuro) 0%, var(--verde-dark) 50%, var(--verde) 100%);
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 34, 20, 0.78);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(27, 56, 32, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(244, 224, 176, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--escuro), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--dourado-accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--branco);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero-headline em {
    font-style: normal;
    color: var(--dourado);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--cinza-text);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--cinza-text);
    letter-spacing: 0.5px;
}

.hero-trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--dourado-accent);
    flex-shrink: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--dourado-accent);
    color: var(--escuro);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dourado);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 185, 106, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--branco);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--dourado-accent);
    color: var(--dourado);
}

.hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(244, 224, 176, 0.1);
    background: rgba(28, 28, 28, 0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(244, 224, 176, 0.08);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--dourado);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cinza-text);
}

/* --- New Hero Video UI --- */
.hero-visual-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-video-box {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    margin: 0 auto;
    border: 1px solid rgba(244, 224, 176, 0.25);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
    background: #000;
}

.hero-featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 56, 32, 0.2), transparent);
    pointer-events: none;
}

@media (min-width: 992px) {
    .hero-video-box {
        margin-top: -20px;
    }
}

/* ========== CREDIBILITY BAR ========== */
.credibility {
    background: var(--escuro);
    border-top: 1px solid rgba(244, 224, 176, 0.06);
    border-bottom: 1px solid rgba(244, 224, 176, 0.06);
    padding: 24px 0;
    overflow: hidden;
}

.credibility-inner {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.media-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.35;
    transition: all 0.4s ease;
    filter: brightness(0) invert(85%) sepia(21%) saturate(546%) hue-rotate(352deg) brightness(101%) contrast(92%);
}

.media-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.media-logo:hover {
    color: var(--dourado-accent);
}

/* ========== CENÁRIOS / FOR WHO ========== */
.scenarios {
    padding: 160px 0;
    background: linear-gradient(rgba(20, 30, 24, 0.92), rgba(28, 28, 28, 0.9)),
        url('../images/kuntz-paralax-1.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 991px) {
    .scenarios {
        background-attachment: scroll;
        padding: 100px 0;
    }
}

.scenarios-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.scenario-card {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(145deg, rgba(27, 56, 32, 0.15), rgba(28, 28, 28, 0.8));
    border: 1px solid rgba(244, 224, 176, 0.08);
    transition: all 0.4s ease;
    cursor: default;
}

.scenario-card:hover {
    border-color: var(--dourado-accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--dourado-accent);
    transition: height 0.4s ease;
}

.scenario-card:hover::before {
    height: 100%;
}

.scenario-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    color: var(--dourado-accent);
}

.scenario-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2; /* Increased for better visibility */
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.scenario-icon svg * {
    stroke: currentColor;
}

.scenario-card:hover .scenario-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(212, 185, 106, 0.4));
}

.scenario-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dourado);
    margin-bottom: 12px;
    line-height: 1.4;
}

.scenario-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--cinza-text);
    line-height: 1.7;
}

/* ========== AUTHORITY SECTION ========== */
.authority {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--verde-dark) 0%, var(--escuro) 100%);
    position: relative;
}

.authority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado-accent), transparent);
    opacity: 0.3;
}

/* --- Authority Section V4 --- */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 992px) {
    .authority-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.authority-content {
    width: 100%;
}

.authority-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.authority-description p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--cinza-text);
    line-height: 1.8;
}

.authority-description p strong {
    color: var(--branco);
    font-weight: 500;
}

/* --- Media Column (Right) --- */
.authority-media-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- Office Carousel --- */
.office-carousel-wrapper {
    position: relative;
    width: 100%;
    border: 1px solid rgba(244, 224, 176, 0.08);
    background: rgba(28, 28, 28, 0.5);
    overflow: hidden;
}

.office-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* Better framing for sidebar */
}

.office-slides-track {
    position: absolute;
    inset: 0;
}

.office-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.office-slide.active {
    opacity: 1;
    visibility: visible;
}

.office-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* --- Features Grid (Cards) --- */


@media (min-width: 1200px) {
    .authority-features {
        gap: 24px;
    }
}


/* Carousel Nav */
.office-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 5;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(244, 224, 176, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--branco);
}

.carousel-nav-btn:hover {
    background: var(--dourado-accent);
    border-color: var(--dourado);
}

/* Carousel Dots */
.office-carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(244, 224, 176, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
    background: var(--dourado-accent);
    transform: scale(1.8);
    box-shadow: 0 0 10px rgba(244, 224, 176, 0.4);
}


.authority-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}


.auth-feature {
    padding: 32px 24px;
    border: 1px solid rgba(244, 224, 176, 0.08);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.auth-feature:hover {
    background: rgba(244, 224, 176, 0.05);
    transform: translateY(-5px);
}

.auth-feature-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dourado);
    line-height: 1;
    margin-bottom: 12px;
}

.auth-feature-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cinza-text);
}


/* ========== MEDIA CAROUSEL ========== */
.media-section {
    padding: 120px 0;
    background: var(--escuro);
}

.media-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}


.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.media-card {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(244, 224, 176, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .media-card {
        padding: 32px 24px;
        min-height: 260px;
    }
}

.media-card:hover {
    background: rgba(244, 224, 176, 0.08);
    border-color: var(--dourado-accent);
    transform: translateY(-5px);
}


.media-source {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado-accent);
    margin-bottom: 16px;
}

.media-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--branco);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.media-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dourado-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.media-link:hover {
    gap: 14px;
    color: var(--dourado);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244, 224, 176, 0.2);
    background: transparent;
    color: var(--dourado-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--dourado-accent);
    color: var(--escuro);
    border-color: var(--dourado-accent);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.carousel-btn:disabled:hover {
    background: transparent;
    color: var(--dourado-accent);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 32px 10px 0;
}


.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(244, 224, 176, 0.15);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
}

.carousel-dot.active {
    background: var(--dourado-accent);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(212, 185, 106, 0.4);
}

.carousel-dot.active {
    background: var(--dourado-accent);
    width: 24px;
    border-radius: 4px;
}

/* ========== TIMELINE / URGENCY ========== */
.urgency {
    padding: 100px 0 120px;
    background: url('../images/K2.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}




.urgency::before {
    display: none;
}




.urgency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 2;
}

.urgency-content .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.urgency-content>p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(248, 246, 241, 0.7);
    line-height: 1.85;
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--dourado-accent), rgba(212, 185, 106, 0.1));
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .timeline-line {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item .timeline-card {
    width: calc(50% - 40px);
}

@media (max-width: 767px) {

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 52px;
    }

    .timeline-item .timeline-card {
        width: 100%;
    }
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--verde);
    border: 2px solid var(--dourado-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dourado);
    z-index: 2;
}

@media (max-width: 767px) {
    .timeline-node {
        left: 20px;
    }
}

.timeline-card {
    padding: 28px 32px;
    background: rgba(28, 28, 28, 0.6);
    border: 1px solid rgba(244, 224, 176, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.timeline-card:hover {
    border-color: var(--dourado-accent);
    transform: translateY(-2px);
}

.timeline-card-phase {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado-accent);
    margin-bottom: 8px;
}

.timeline-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 10px;
    line-height: 1.4;
}

.timeline-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cinza-text);
    line-height: 1.7;
}

.timeline-card .risk-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid;
}

.risk-critical {
    color: #e8655a;
    border-color: rgba(232, 101, 90, 0.3);
    background: rgba(232, 101, 90, 0.06);
}

.risk-high {
    color: #e8a55a;
    border-color: rgba(232, 165, 90, 0.3);
    background: rgba(232, 165, 90, 0.06);
}

.risk-strategic {
    color: var(--dourado-accent);
    border-color: rgba(212, 185, 106, 0.3);
    background: rgba(212, 185, 106, 0.06);
}

.timeline-cta {
    text-align: center;
    margin-top: 64px;
    position: relative;
    z-index: 2;
}

/* ========== FORM SECTION ========== */
.form-section {
    padding: 120px 0;
    background: var(--escuro);
}

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

@media (min-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
    }
}

.form-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dourado);
    margin-bottom: 16px;
    margin-top: 32px;
}

.form-info h3:first-of-type {
    margin-top: 0;
}

.form-info p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cinza-text);
    line-height: 1.7;
}

.form-info a {
    color: var(--dourado-accent);
}

.form-info a:hover {
    color: var(--dourado);
}

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

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

@media (min-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--cinza-text);
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(27, 56, 32, 0.12);
    border: 1px solid rgba(244, 224, 176, 0.1);
    color: var(--branco);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-color: #0c140d;
    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='%23B2A886' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-group select option {
    background-color: #0c140d;
    color: var(--branco);
    padding: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--dourado-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(176, 173, 165, 0.5);
}

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

.form-submit {
    margin-top: 8px;
}

.form-submit button {
    width: 100%;
    padding: 18px 36px;
    background: var(--dourado-accent);
    color: var(--escuro);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background: var(--dourado);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 185, 106, 0.2);
}

.form-note {
    font-size: 0.75rem;
    color: var(--cinza-text);
    font-weight: 300;
    text-align: center;
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dourado);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--cinza-text);
    font-weight: 300;
}

/* ========== FOOTER ========== */
.footer {
    padding: 64px 0 32px;
    background: var(--verde-dark);
    border-top: 1px solid rgba(244, 224, 176, 0.08);
}

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

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

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(85%) sepia(21%) saturate(546%) hue-rotate(352deg) brightness(101%) contrast(92%);
}

.footer-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cinza-text);
    line-height: 1.7;
    max-width: 360px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dourado);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cinza-text);
    line-height: 1.8;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(244, 224, 176, 0.06);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(176, 173, 165, 0.5);
}

/* ========== MOBILE ADJUSTMENTS ========== */
@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
    }

    .hero-content {
        padding: 40px 0 60px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .scenarios,
    .authority,
    .media-section,
    .form-section {
        padding: 80px 0;
    }

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