/* PAGE HERO */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 62vh;
    background-image: url("../imagens/background_main.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(7, 24, 44, 0.76), rgba(7, 24, 44, 0.64));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #ffffff;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero-content h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

.page-hero-content p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* GENERAL */
.section {
    padding: 90px 20px;
    background: #ffffff;
}

.light-section {
    background: #f5f8fc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #0b4da2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-label.light {
    color: #8fdfff;
}

.section-heading h2 {
    font-size: 40px;
    line-height: 1.25;
    color: #0a2340;
    margin-bottom: 16px;
}

.section-heading p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #506174;
}

/* ACTIVE MENU */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.active-link {
    color: #0b4da2;
    font-weight: 700;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.service-card {
    background: #f7fafd;
    border: 1px solid #e3ebf4;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 26px rgba(10, 35, 64, 0.05);
}

.large-card {
    background: linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.service-card h3 {
    font-size: 24px;
    color: #0a2340;
    margin-bottom: 12px;
}

.card-description {
    font-size: 16px;
    line-height: 1.75;
    color: #56677a;
    margin-bottom: 22px;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: #4f6275;
    font-size: 16px;
    line-height: 1.7;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00b4d8;
}

/* FOCUS */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.focus-card {
    background: #ffffff;
    border: 1px solid #e4ebf2;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(10, 35, 64, 0.05);
}

.focus-card h3 {
    font-size: 22px;
    color: #0a2340;
    margin-bottom: 14px;
}

.focus-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #56677a;
}

/* CTA */
.cta-section {
    padding: 90px 20px;
    background: #071b32;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, #0a2340, #0b4da2);
    border-radius: 24px;
    padding: 50px;
    color: white;
    box-shadow: 0 20px 40px rgba(5, 18, 34, 0.25);
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 14px;
}

.cta-text p {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #00b4d8;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #0096c7;
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    background: #06152b;
    color: #ffffff;
    padding-top: 70px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand img {
    max-width: 220px;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 14px;
    font-size: 14px;
    color: #ffffff;
}

.footer-links a:hover {
    color: #00b4d8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 22px 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

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

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

    .cta-box,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .cta-box {
        display: block;
        text-align: center;
    }

    .cta-actions {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 38px;
    }

    .page-hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 70px 20px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

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

    .cta-box {
        padding: 34px 24px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}