/* =====================================================
   RESET & BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f4f7fb;
    color: #1e293b;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: auto;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-amorv {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(3, 17, 38, .86), rgba(3, 17, 38, .86)), url('./assets/images/amorv-banner.png');
    background-size: cover;
    background-position: center;
}

.hero-amorv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(212, 175, 55, .18), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-logo {
    width: 300px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.4));
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
}

.hero-title span {
    color: #D4AF37;
}

.hero-text {
    font-size: 20px;
    line-height: 1.9;
    color: #dbe6f3;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Componentes de Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: #D4AF37;
    color: #111827;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(212, 175, 55, .25);
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, .25);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    transition: .35s;
}

.btn-secondary:hover {
    background: #fff;
    color: #111827;
}

/* =====================================================
   SEÇÕES GERAIS
   ===================================================== */
.section {
    padding: 90px 0;
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    text-align: center;
    color: #08203C;
    margin-bottom: 18px;
}

.section-subtitle {
    max-width: 850px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
}

/* =====================================================
   CARDS (GRID)
   ===================================================== */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37, #0b3a75);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.card h3 {
    font-size: 26px;
    color: #003F8C;
    margin-bottom: 18px;
}

.card p {
    line-height: 1.9;
    color: #4b5563;
}

/* =====================================================
   BLOCO PREMIUM
   ===================================================== */
.bloco-premium {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 70px;
    align-items: center;
}

.bloco-premium img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.bloco-premium h2 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #08203C;
}

.bloco-premium p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #475569;
}

.lista {
    list-style: none;
    margin-top: 30px;
}

.lista li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #334155;
    line-height: 1.7;
}

.lista li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    color: #D4AF37;
}

/* =====================================================
   NÚMEROS / CONTADORES
   ===================================================== */
.numeros {
    background: linear-gradient(135deg, #08203C, #0b3a75);
    color: #fff;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.numero-box {
    text-align: center;
    padding: 30px;
}

.numero-box h3 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #D4AF37;
}

.numero-box p {
    font-size: 18px;
    color: #dbe6f3;
}

/* =====================================================
   CTA (CALL TO ACTION)
   ===================================================== */
.cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, #08203C, #0d4a92);
    border-radius: 34px;
    padding: 80px 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, .08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.cta-box h2 {
    position: relative;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-box p {
    position: relative;
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-size: 19px;
    line-height: 1.9;
    color: #dbe6f3;
}

/* =====================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ===================================================== */
@media(max-width: 980px) {
    .hero-title {
        font-size: 46px;
    }
    
    .hero-logo {
        width: 220px;
    }
    
    .bloco-premium {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-box h2 {
        font-size: 38px;
    }
    
    .hero-amorv {
        padding: 130px 0 90px 0;
        min-height: auto;
    }
}