:root {
    --az-bg: #000000;
    --az-bg-soft: #02060f;
    --az-card: rgba(2, 6, 15, 0.96);
    --az-blue: #007bff;
    --az-blue-strong: #1f8fff;
    --az-blue-soft: rgba(0, 123, 255, 0.10);
    --az-border: rgba(0, 123, 255, 0.22);
    --az-border-strong: rgba(0, 123, 255, 0.38);
    --az-text: #d8dce3;
    --az-text-soft: #a5afbd;
    --az-white: #ffffff;
    --az-shadow: 0 0 28px rgba(0, 123, 255, 0.08);
    --az-radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top center, rgba(0, 123, 255, 0.10) 0%, rgba(0, 0, 0, 0) 26%),
        linear-gradient(180deg, #000000 0%, #02060f 100%);
    color: var(--az-text);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

textarea {
    resize: vertical;
}

/* BASE */
.section-spacing {
    padding: 110px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--az-blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-title {
    color: var(--az-white);
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 1.72rem;
    line-height: 1.42;
    letter-spacing: 1px;
    margin-bottom: 22px;
/*max-width: 560px;*/
}

.section-text {
    color: var(--az-text-soft);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 560px;
}

/* HEADER */
.site-header {
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--az-border);
    z-index: 999;
}

.az-navbar {
    min-height: 78px;
}

.az-brand {
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-white {
    color: var(--az-white);
}

.brand-blue {
    color: var(--az-blue);
}

.az-nav-link {
    color: var(--az-text);
    font-size: 0.92rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.az-nav-link:hover,
.az-nav-link.active {
    color: var(--az-blue);
}

.az-toggler {
    border: 1px solid var(--az-border);
    color: var(--az-white);
    box-shadow: none;
}

.az-toggler:focus {
    box-shadow: none;
}

.az-dropdown {
    background: #02060f;
    border: 1px solid var(--az-border);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--az-shadow);
}

.az-dropdown .dropdown-item {
    color: var(--az-text);
    border-radius: 10px;
    padding: 10px 14px;
}

.az-dropdown .dropdown-item:hover {
    background: rgba(0, 123, 255, 0.10);
    color: var(--az-blue);
}

/* HERO HOME */
.hero-section {
    min-height: 360px;
    padding: 90px 0 85px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.14);
    margin-bottom: 70px;
}

.hero-logo-wrap {
    margin-bottom: 24px;
}

.hero-logo {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 14px rgba(0, 123, 255, 0.12));
}

.hero-title {
    color: var(--az-white);
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.34;
    letter-spacing: 1.2px;
    max-width: 980px;
    margin: 0 auto 18px;
}

.hero-subtitle {
    color: var(--az-text-soft);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

/* HERO INTERNO */
.internal-hero {
    min-height: 220px;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.14);
    margin-bottom: 20px;
}

.internal-hero .hero-title {
    font-size: 1.9rem;
    max-width: 760px;
}

.internal-hero .hero-subtitle {
    max-width: 720px;
    margin: 0 auto;
}

/* BLOCOS GERAIS */
.about-section,
.feature-section,
.modules-section,
.cta-section,
.contact-section {
    border-top: 1px solid rgba(0, 123, 255, 0.08);
}

.feature-section .row,
.about-section .row,
.contact-section .row {
    align-items: center;
}

.visual-card {
    background: linear-gradient(180deg, rgba(2, 6, 15, 0.95), rgba(0, 0, 0, 0.95));
    border: 1px solid var(--az-border);
    border-radius: var(--az-radius);
    padding: 18px;
    box-shadow: var(--az-shadow);
}

.section-image {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* CONTATO */
.contact-section {
    padding-top: 50px;
    padding-bottom: 90px;
}

.contact-section .container {
    max-width: 1320px;
}

.contact-section .row {
    align-items: stretch;
}

.contact-info-box,
.contact-form-box {
    width: 100%;
    background: linear-gradient(180deg, rgba(2, 6, 15, 0.96), rgba(0, 0, 0, 0.96));
    border: 1px solid var(--az-border);
    border-radius: var(--az-radius);
    padding: 34px 28px;
    box-shadow: var(--az-shadow);
    min-height: 100%;
}

.contact-info-box .section-title,
.contact-form-box .section-title {
    max-width: 100%;
    font-size: 1.28rem;
    margin-bottom: 24px;
}

.contact-info-box .section-text {
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-item i {
    width: 18px;
    color: var(--az-blue);
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    color: var(--az-text-soft);
    line-height: 1.7;
    word-break: break-word;
}

.contact-form .row {
    row-gap: 4px;
}

.form-label {
    color: var(--az-text);
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.az-input {
    background: rgba(0, 0, 0, 0.68);
    border: 1px solid rgba(0, 123, 255, 0.16);
    border-radius: 14px;
    color: #fff;
    padding: 14px 16px;
    min-height: 52px;
}

textarea.az-input {
    min-height: 132px;
}

.az-input:focus {
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    border-color: rgba(0, 123, 255, 0.42);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.12);
}

.az-input::placeholder {
    color: #7f8b9b;
}

.contact-form-box .az-btn-primary {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

/* CARDS */
.modules-intro {
    max-width: 760px;
}

.module-card {
    background: linear-gradient(180deg, rgba(2, 6, 15, 0.96), rgba(0, 0, 0, 0.96));
    border: 1px solid var(--az-border);
    border-radius: var(--az-radius);
    padding: 30px 26px;
    transition: 0.3s ease;
    box-shadow: var(--az-shadow);
    height: 100%;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: var(--az-border-strong);
}

.featured-card {
    border-color: rgba(0, 123, 255, 0.65);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.14);
}

.module-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.module-icon {
    color: var(--az-blue);
    font-size: 2rem;
    line-height: 1;
}

.module-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 123, 255, 0.18);
    background: rgba(0, 123, 255, 0.06);
    color: #9ec7ff;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    font-weight: 600;
    white-space: nowrap;
}

.module-status-featured {
    border-color: rgba(0, 123, 255, 0.42);
    background: rgba(0, 123, 255, 0.12);
    color: #d7ebff;
}

.module-title {
    color: var(--az-white);
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.module-text {
    color: var(--az-text-soft);
    line-height: 1.8;
    margin-bottom: 18px;
}

.module-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--az-blue);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.module-link i {
    font-size: 0.84rem;
    transition: 0.3s ease;
}

.module-link:hover i {
    transform: translateX(3px);
}

/* BOTÃO */
.az-btn-primary {
    background: linear-gradient(135deg, var(--az-blue), var(--az-blue-strong));
    border: 1px solid rgba(0, 123, 255, 0.34);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    box-shadow: 0 0 22px rgba(0, 123, 255, 0.16);
}

.az-btn-primary:hover {
    background: linear-gradient(135deg, #0b69d3, #007bff);
    color: #fff;
    transform: translateY(-2px);
}

/* PRE-FOOTER */
.pre-footer-section {
    padding: 80px 0 72px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 123, 255, 0.18);
    background: rgba(1, 4, 10, 0.72);
}

.pre-footer-section .container {
    max-width: 1320px;
}

.pre-footer-section .row {
    align-items: flex-start;
}

.pre-footer-title {
    color: var(--az-white);
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    white-space: normal;
    word-break: normal;
}

.pre-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pre-footer-list li {
    margin-bottom: 12px;
}

.pre-footer-list a {
    color: var(--az-text-soft);
    line-height: 1.7;
}

.pre-footer-list a:hover {
    color: var(--az-blue);
    padding-left: 4px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--az-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--az-white);
    background: rgba(0, 123, 255, 0.05);
    flex-shrink: 0;
}

.social-links a:hover {
    background: var(--az-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* FOOTER */
.site-footer {
    padding: 22px 0;
    border-top: 1px solid rgba(0, 123, 255, 0.15);
    background: #01040a;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.footer-inner > div:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.footer-text,
.footer-copy {
    color: var(--az-text-soft);
    font-size: 0.92rem;
    margin: 0;
    white-space: nowrap;
}

/* RESPONSIVO */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 1.95rem;
        max-width: 900px;
    }

    .internal-hero .hero-title {
        font-size: 1.78rem;
        max-width: 760px;
    }

    .section-title {
        font-size: 1.58rem;
        max-width: 100%;
    }

    .section-text {
        max-width: 100%;
    }

    .module-card {
        padding: 28px 24px;
    }

    .contact-info-box .section-title,
    .contact-form-box .section-title {
        font-size: 1.18rem;
    }
}

@media (max-width: 991.98px) {
    .section-spacing {
        padding: 88px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 78px 0 68px;
        margin-bottom: 50px;
    }

    .internal-hero {
        min-height: auto;
        padding: 58px 0 44px;
        margin-bottom: 20px;
    }

    .hero-logo {
        max-height: 105px;
    }

    .hero-title {
        font-size: 1.72rem;
        line-height: 1.4;
    }

    .internal-hero .hero-title {
        font-size: 1.5rem;
        line-height: 1.42;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        max-width: 680px;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.46;
        margin-bottom: 18px;
    }

    .section-text {
        font-size: 0.98rem;
        line-height: 1.85;
    }

    .az-navbar {
        padding: 12px 0;
    }

    .az-nav-link {
        padding: 10px 0;
    }

    .az-dropdown {
        margin-top: 10px;
    }

    .visual-card {
        padding: 14px;
    }

    .module-card,
    .contact-info-box,
    .contact-form-box {
        padding: 26px 22px;
    }

    .module-title {
        font-size: 1.08rem;
    }

    .module-text {
        font-size: 0.95rem;
    }

    .contact-section {
        padding-top: 56px;
        padding-bottom: 80px;
    }

    .pre-footer-section {
        margin-top: 24px;
    }

    .pre-footer-title {
        font-size: 0.86rem;
    }

    .footer-inner {
        gap: 14px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 66px 0 58px;
        margin-bottom: 34px;
    }

    .internal-hero {
        padding: 52px 0 38px;
        margin-bottom: 14px;
    }

    .hero-logo-wrap {
        margin-bottom: 18px;
    }

    .hero-logo {
        max-height: 88px;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.46;
        letter-spacing: 0.6px;
        margin-bottom: 14px;
    }

    .internal-hero .hero-title {
        font-size: 1.24rem;
        line-height: 1.48;
    }

    .hero-subtitle {
        font-size: 0.94rem;
        line-height: 1.8;
    }

    .section-spacing {
        padding: 72px 0;
    }

    .section-badge {
        font-size: 0.72rem;
        letter-spacing: 1.6px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.16rem;
        line-height: 1.52;
        margin-bottom: 16px;
    }

    .section-text {
        font-size: 0.94rem;
        line-height: 1.82;
        margin-bottom: 16px;
    }

    .feature-section .row,
    .about-section .row,
    .contact-section .row {
        row-gap: 26px;
    }

    .visual-card {
        padding: 12px;
        border-radius: 18px;
    }

    .section-image {
        border-radius: 12px;
    }

    .module-card,
    .contact-info-box,
    .contact-form-box {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .module-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .module-icon {
        font-size: 1.8rem;
    }

    .module-status {
        white-space: normal;
        line-height: 1.4;
    }

    .module-title {
        font-size: 1.02rem;
        line-height: 1.45;
    }

    .module-text {
        font-size: 0.93rem;
        line-height: 1.78;
    }

    .az-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .contact-section {
        padding-top: 46px;
        padding-bottom: 68px;
    }

    .pre-footer-section {
        padding: 56px 0;
        margin-top: 12px;
    }

    .pre-footer-title {
    color: var(--az-white);
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
    white-space: nowrap;
}
    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-inner {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .footer-inner > div:first-child {
        flex-wrap: wrap;
    }

    .footer-text,
    .footer-copy {
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-section {
        padding: 60px 0 52px;
    }

    .internal-hero {
        padding: 48px 0 34px;
    }

    .hero-title {
        font-size: 1.28rem;
    }

    .internal-hero .hero-title {
        font-size: 1.12rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .section-title {
        font-size: 1.08rem;
    }

    .section-text {
        font-size: 0.92rem;
    }

    .module-card,
    .contact-info-box,
    .contact-form-box {
        padding: 22px 18px;
    }

    .module-link {
        font-size: 0.92rem;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 18px;
    }

    .form-label {
        font-size: 0.88rem;
    }

    .az-input {
        padding: 12px 14px;
    }

    .pre-footer-title {
        font-size: 0.82rem;
        letter-spacing: 0.3px;
    }
}


/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(180deg, rgba(2, 6, 15, 0.98), rgba(0, 0, 0, 0.98));
    border: 1px solid rgba(0, 123, 255, 0.26);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.12);
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__text strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 6px;
}

.cookie-banner__text p {
    margin: 0;
    color: var(--az-text-soft);
    line-height: 1.7;
    font-size: 0.94rem;
}

.cookie-banner__text a {
    color: var(--az-blue);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    border-radius: 999px;
    min-width: 120px;
    padding: 10px 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.cookie-btn--primary {
    background: linear-gradient(135deg, var(--az-blue), var(--az-blue-strong));
    border: 1px solid rgba(0, 123, 255, 0.34);
    color: #fff;
}

.cookie-btn--primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #0b69d3, #007bff);
}

.cookie-btn--secondary {
    background: transparent;
    border: 1px solid rgba(0, 123, 255, 0.22);
    color: var(--az-text);
}

.cookie-btn--secondary:hover {
    color: #fff;
    border-color: rgba(0, 123, 255, 0.38);
    background: rgba(0, 123, 255, 0.08);
}

@media (max-width: 767.98px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}