/* ========================================
   ACADAPES - Site Institucional
   Paleta: Azul Escuro, Dourado, Branco
   ======================================== */

/* ---------- VARIÁVEIS ---------- */
:root {
    --blue-dark: #0B1D3A;
    --blue-medium: #132D5E;
    --blue-light: #1A3A6E;
    --gold: #BFA14A;
    --gold-light: #D4BC6A;
    --gold-dark: #9E8638;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F0F1F3;
    --gray-200: #E2E4E8;
    --gray-300: #C5C9D0;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.08);
    --shadow-md: 0 4px 12px rgba(11, 29, 58, 0.1);
    --shadow-lg: 0 10px 30px rgba(11, 29, 58, 0.12);
    --shadow-xl: 0 20px 50px rgba(11, 29, 58, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
}

.btn--gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header--light .section-header__title {
    color: var(--white);
}

.section-header--light .section-header__label {
    color: var(--gold-light);
}

.section-header__divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(6, 15, 31, 0.95) 0%, rgba(11, 29, 58, 0.85) 100%);
    border-bottom: 1px solid rgba(191, 161, 74, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.header--scrolled {
    background: rgba(6, 15, 31, 0.98);
    border-bottom-color: rgba(191, 161, 74, 0.35);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header__logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

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

.header__logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.2;
}

.header__logo-tagline {
    font-size: 10px;
    color: var(--gray-300);
    max-width: 200px;
    line-height: 1.3;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    gap: 4px;
}

.header__link {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--transition);
}

.header__link:hover,
.header__link.active {
    color: var(--white);
}

.header__link:hover::after,
.header__link.active::after {
    width: 24px;
}

.header__cta {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(191, 161, 74, 0.12);
    border: 1px solid rgba(191, 161, 74, 0.25);
    color: var(--gold-light);
    border-radius: 50px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    box-shadow: none;
    cursor: pointer;
}

.header__cta:hover {
    background: rgba(191, 161, 74, 0.2);
    border-color: rgba(191, 161, 74, 0.5);
    transform: translateY(-1px);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    background: linear-gradient(160deg, #060F1F 0%, var(--blue-dark) 30%, var(--blue-medium) 70%, var(--blue-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 161, 74, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: heroPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 161, 74, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: heroPulse 10s ease-in-out infinite reverse;
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.hero__overlay {
    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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating particles */
.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(191, 161, 74, 0.08);
    animation: particleFloat 20s linear infinite;
}

.hero__particle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    animation-duration: 25s;
}

.hero__particle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 5%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.hero__particle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-duration: 18s;
    animation-delay: -10s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.5; }
    75% { transform: translateY(-40px) rotate(270deg); opacity: 0.9; }
}

.hero__container {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 640px;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(191, 161, 74, 0.12);
    border: 1px solid rgba(191, 161, 74, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero__badge svg {
    color: var(--gold);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero__title-highlight {
    color: var(--gold);
    position: relative;
}

.hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.5;
}

.hero__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__buttons .btn--gold {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--gold);
    color: var(--white);
}

.hero__buttons .btn--gold:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-light);
}

/* Trust bar */
.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.hero__trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.hero__trust-item strong {
    color: var(--white);
    font-size: 16px;
}

.hero__trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* Side cards */
.hero__side {
    position: relative;
    height: 420px;
}

.hero__card--main {
    position: absolute;
    top: 20px;
    right: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    backdrop-filter: blur(20px);
    animation: cardFloat 6s ease-in-out infinite;
}

.hero__card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: none;
}

.hero__card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.hero__card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.hero__card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.hero__card--float1 {
    position: absolute;
    bottom: 80px;
    right: 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    animation: cardFloat 7s ease-in-out infinite reverse;
}

.hero__card--float2 {
    position: absolute;
    bottom: 0;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    animation: cardFloat 5s ease-in-out infinite;
    animation-delay: -2s;
}

.hero__card-mini-icon {
    width: 42px;
    height: 42px;
    background: rgba(191, 161, 74, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.hero__card-mini-icon svg {
    width: 20px;
    height: 20px;
}

.hero__card--float1 strong,
.hero__card--float2 strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}

.hero__card--float1 span,
.hero__card--float2 span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--blue-dark);
    margin-bottom: 12px;
    margin-top: 28px;
}

.about__subtitle:first-child {
    margin-top: 0;
}

.about__content p {
    color: var(--gray-700);
    margin-bottom: 8px;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about__stat {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.about__stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.about__stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.about__stat-icon svg {
    width: 100%;
    height: 100%;
}

.about__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--blue-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.about__stat-number::after {
    content: '+';
}

.about__stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--blue-dark);
}

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

.services__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: all var(--transition);
}

.services__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.services__card-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 164, 78, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    transition: all var(--transition);
}

.services__card:hover .services__card-icon {
    background: var(--gold);
    color: var(--blue-dark);
}

.services__card-icon svg {
    width: 28px;
    height: 28px;
}

.services__card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.services__card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========================================
   RIGHTS
   ======================================== */
.rights {
    padding: 100px 0;
    background: var(--gray-50);
}

.rights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.rights__card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.rights__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.rights__card-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.rights__card:hover .rights__card-number {
    color: var(--gold);
}

.rights__card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.rights__card-text {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.rights__card-list {
    list-style: none;
}

.rights__card-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.rights__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.rights__cta {
    text-align: center;
    padding-top: 20px;
}

.rights__cta p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* ========================================
   NEWS
   ======================================== */
.news {
    padding: 100px 0;
    background: var(--blue-dark);
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news__card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}

.news__card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.news__card-date {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.news__card-day {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--blue-dark);
    line-height: 1;
}

.news__card-month {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news__card-content {
    flex: 1;
}

.news__card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news__card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news__card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 12px;
}

.news__card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color var(--transition);
}

.news__card-link:hover {
    color: var(--gold-light);
}

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta__container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 18px;
    color: rgba(11, 29, 58, 0.75);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn--gold {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta .btn--gold:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.contact__info-text {
    color: var(--gray-700);
    margin-bottom: 32px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact__info-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact__info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 2px;
}

.contact__info-item p {
    font-size: 14px;
    color: var(--gray-700);
}

.contact__form {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.contact__form-group {
    margin-bottom: 20px;
}

.contact__form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.contact__form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-900);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.contact__form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.15);
}

.contact__form-input::placeholder {
    color: var(--gray-300);
}

.contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--blue-dark);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer__logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
}

.footer__about-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 340px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer__contact strong {
    color: rgba(255, 255, 255, 0.7);
}

.footer__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color var(--transition);
}

.footer__cta-link:hover {
    color: var(--gold-light);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FORM SUCCESS MESSAGE
   ======================================== */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

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

.form-success__icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 164, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
}

.form-success__icon svg {
    width: 32px;
    height: 32px;
}

.form-success__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
    }

    .hero__side {
        display: none;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__trust {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

    .rights__grid .rights__card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--blue-dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        gap: 8px;
    }

    .header__link {
        font-size: 16px;
        padding: 12px 16px;
    }

    .header__cta {
        display: none;
    }

    .header__toggle {
        display: flex;
    }

    .header__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__text {
        font-size: 15px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        justify-content: center;
    }

    .hero__badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }

    .hero__trust-divider {
        width: 100%;
        height: 1px;
    }

    .section-header__title {
        font-size: 28px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .rights__grid {
        grid-template-columns: 1fr;
    }

    .rights__grid .rights__card:last-child {
        grid-column: span 1;
    }

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

    .about__stat {
        padding: 20px 16px;
    }

    .about__stat-number {
        font-size: 28px;
    }

    .cta__title {
        font-size: 28px;
    }

    .contact__form {
        padding: 24px;
    }

    .about,
    .services,
    .rights,
    .news,
    .contact {
        padding: 70px 0;
    }
}

/* ========================================
   MODAL EM CONSTRUÇÃO
   ======================================== */
.modal-construcao {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-construcao.active {
    opacity: 1;
    visibility: visible;
}

.modal-construcao__painel {
    background: linear-gradient(145deg, #0a1628, #0d1f3c);
    border: 1px solid rgba(191, 161, 74, 0.4);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(191,161,74,0.08);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-construcao.active .modal-construcao__painel {
    transform: translateY(0);
}

.modal-construcao__fechar {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-construcao__fechar:hover {
    color: var(--gold);
}

.modal-construcao__icone {
    font-size: 52px;
    margin-bottom: 16px;
}

.modal-construcao__titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
}

.modal-construcao__texto {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-construcao__badge {
    display: inline-block;
    background: rgba(191, 161, 74, 0.15);
    border: 1px solid rgba(191, 161, 74, 0.5);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
}

.form-error {
    color: #e05252;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(224, 82, 82, 0.08);
    border: 1px solid rgba(224, 82, 82, 0.3);
    border-radius: 8px;
}
