/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {
    --azul: #2F5FBB;
    --azul-escuro: #1F2F46;
    --laranja: #F28C4B;
    --bege: #F7E3D2;
    --branco: #FFFFFF;
    --cinza-texto: #5F6673;
    --cinza-fundo: #F6F8FB;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cinza-fundo);
    color: var(--azul-escuro);
}

a {
    text-decoration: none;
}

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


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(31, 47, 70, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
}

.header-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


/* LOGO */

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

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--azul), var(--laranja));
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(47, 95, 187, 0.25);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--azul-escuro);
    white-space: nowrap;
}


/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.nav-menu a {
    color: var(--cinza-texto);
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--laranja);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--azul);
}

.nav-menu a:hover::after {
    width: 100%;
}


/* BOTÃO HEADER */

.header-btn {
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--azul);
    color: var(--branco);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(47, 95, 187, 0.25);
    transition: 0.3s ease;
}

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


/* MENU MOBILE */

.menu-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--cinza-fundo);
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--azul-escuro);
    border-radius: 10px;
    transition: 0.3s ease;
}


/* ANIMAÇÃO MENU */

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

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

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

/* DROPDOWN HEADER */

.dropdown {
    position: relative;
}

.dropdown-btn {
    height: 100%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--azul-escuro);
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s ease;
}

.dropdown-btn:hover {
    color: var(--azul);
}

.dropdown-btn i {
    font-size: 14px;
    transition: 0.3s ease;
}

.dropdown:hover .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 240px;
    padding: 14px;
    border-radius: 22px;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 20px 50px rgba(31, 47, 70, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    color: var(--azul-escuro);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(47, 95, 187, 0.08);
    color: var(--azul);
}


/* MOBILE DROPDOWN */

@media (max-width: 980px) {

    .dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0 14px;
        background: transparent;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu a {
        min-height: 40px;
        padding: 0;
    }

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .header-btn {
        padding: 12px 18px;
    }

}

@media (max-width: 940px) {

    .header-container {
        height: 76px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--branco);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 18px 4%;
        border-top: 1px solid rgba(31, 47, 70, 0.08);
        box-shadow: 0 18px 40px rgba(31, 47, 70, 0.12);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(31, 47, 70, 0.08);
    }

    .nav-menu a::after {
        display: none;
    }

    .header-btn {
        display: none;
    }

}

@media (max-width: 480px) {

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 19px;
    }

}

/* =========================================================
   HERO PRINCIPAL
========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 110px;
    background:
        radial-gradient(circle at top left, rgba(47, 95, 187, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(242, 140, 75, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--cinza-fundo) 100%);
}

.hero-section::before {
    content: "";
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(247, 227, 210, 0.65);
    position: absolute;
    right: -160px;
    top: 70px;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(47, 95, 187, 0.10);
    color: var(--azul);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.95;
    color: var(--azul-escuro);
    letter-spacing: -3px;
    margin-bottom: 22px;
}

.hero-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;
    color: var(--azul-escuro);
    font-weight: 700;
    max-width: 720px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--cinza-texto);
    max-width: 640px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--azul);
    color: var(--branco);
    box-shadow: 0 14px 28px rgba(47, 95, 187, 0.24);
}

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

.btn-secondary {
    background: var(--branco);
    color: var(--azul-escuro);
    border: 1px solid rgba(31, 47, 70, 0.12);
}

.btn-secondary:hover {
    border-color: var(--laranja);
    color: var(--laranja);
    transform: translateY(-2px);
}


/* VISUAL HERO */

.hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-main {
    position: relative;
    width: min(420px, 100%);
    padding: 42px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 28px 70px rgba(31, 47, 70, 0.14);
    z-index: 2;
}

.hero-card-main::before {
    content: "";
    width: 150px;
    height: 150px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--azul), var(--laranja));
    position: absolute;
    right: -28px;
    top: -28px;
    z-index: -1;
    opacity: 0.92;
}

.hero-icon-circle {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: rgba(242, 140, 75, 0.13);
    color: var(--laranja);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 26px;
}

.hero-card-main h3 {
    font-size: 28px;
    color: var(--azul-escuro);
    margin-bottom: 14px;
}

.hero-card-main p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cinza-texto);
    margin-bottom: 26px;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-mini-grid div {
    padding: 18px;
    border-radius: 20px;
    background: var(--cinza-fundo);
}

.hero-mini-grid strong {
    display: block;
    font-size: 26px;
    color: var(--azul);
    margin-bottom: 4px;
}

.hero-mini-grid span {
    font-size: 13px;
    color: var(--cinza-texto);
    line-height: 1.4;
}

.floating-card {
    position: absolute;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 18px 45px rgba(31, 47, 70, 0.12);
    z-index: 3;
}

.floating-card strong {
    display: block;
    font-size: 15px;
    color: var(--azul-escuro);
    margin-bottom: 4px;
}

.floating-card span {
    font-size: 13px;
    color: var(--cinza-texto);
}

.floating-card-one {
    top: 62px;
    left: 6px;
}

.floating-card-two {
    right: 0;
    bottom: 54px;
}


/* =========================================================
   RESPONSIVO HERO
========================================================= */

@media (max-width: 980px) {

    .hero-section {
        padding: 72px 0 84px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .section-tag,
    .hero-buttons {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-content p,
    .hero-content h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 420px;
    }

}

@media (max-width: 620px) {

    .hero-section {
        padding: 56px 0 70px;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-card-main {
        padding: 30px;
        border-radius: 28px;
    }

    .hero-mini-grid {
        grid-template-columns: 1fr;
    }

    .floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 14px;
    }

    .hero-visual {
        min-height: auto;
        flex-direction: column;
    }

}

/* =========================================================
   CARDS DE DESTAQUE
========================================================= */

.highlight-section {
    position: relative;
    margin-top: -52px;
    z-index: 5;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 30px;
    border-radius: 28px;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 18px 45px rgba(31, 47, 70, 0.08);
    transition: 0.3s ease;
}

.highlight-card::before {
    content: "";
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(47, 95, 187, 0.08);
    position: absolute;
    right: -45px;
    top: -45px;
    transition: 0.3s ease;
}

.highlight-card::after {
    content: "→";
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cinza-fundo);
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47, 95, 187, 0.20);
    box-shadow: 0 28px 60px rgba(31, 47, 70, 0.13);
}

.highlight-card:hover::before {
    background: rgba(242, 140, 75, 0.14);
    transform: scale(1.2);
}

.highlight-card:hover::after {
    background: var(--laranja);
    color: var(--branco);
}

.highlight-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(47, 95, 187, 0.12), rgba(242, 140, 75, 0.14));
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.highlight-icon span {
    font-size: 16px;
    font-weight: 800;
}

.highlight-card h3 {
    font-size: 22px;
    line-height: 1.25;
    color: var(--azul-escuro);
    margin-bottom: 14px;
    max-width: 220px;
}

.highlight-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cinza-texto);
    padding-right: 12px;
}


/* =========================================================
   RESPONSIVO CARDS DE DESTAQUE
========================================================= */

@media (max-width: 1050px) {

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

}

@media (max-width: 620px) {

    .highlight-section {
        margin-top: -24px;
    }

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

    .highlight-card {
        min-height: auto;
    }

}

/* =========================================================
   SOBRE O GRUPO CÁRITAS
========================================================= */

.about-section {
    padding: 120px 0;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    color: var(--azul-escuro);
    letter-spacing: -2px;
    max-width: 720px;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--cinza-texto);
    margin-bottom: 22px;
    max-width: 640px;
}

.about-content .btn-primary {
    margin-top: 12px;
}


/* GRID NÚMEROS */

.about-numbers {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 22px;
}

.number-card {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 30px;
    border-radius: 26px;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 18px 45px rgba(31, 47, 70, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s ease;
}

.number-card::before {
    content: "";
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(47, 95, 187, 0.07);
    position: absolute;
    right: -42px;
    bottom: -42px;
}

.number-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(31, 47, 70, 0.12);
}

.number-card strong {
    min-width: 76px;
    height: 76px;
    padding: 0 14px;
    border-radius: 24px;
    background: rgba(47, 95, 187, 0.10);
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.number-card-large strong {
    font-size: 64px;
    padding: 0;
    min-width: auto;
    height: auto;
}

.number-card span {
    font-size: 17px;
    line-height: 1.5;
    color: var(--azul-escuro);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.number-card-large {
    grid-column: span 2;
    min-height: 160px;
    background: var(--branco);
}

.number-card-large strong {
    width: auto;
    height: auto;
    background: transparent;
    color: var(--azul);
    font-size: 64px;
    border-radius: 0;
}

.number-card-large span {
    font-size: 20px;
}


/* =========================================================
   RESPONSIVO SOBRE
========================================================= */

@media (max-width: 980px) {

    .about-section {
        padding: 90px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 620px) {

    .about-section {
        padding: 70px 0;
    }

    .about-content h2 {
        letter-spacing: -1px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-numbers {
        grid-template-columns: 1fr;
    }

    .number-card-large {
        grid-column: span 1;
    }

    .number-card {
        min-height: auto;
    }

    .number-card strong {
        font-size: 42px;
    }

}

/* =========================================================
   ASSISTÊNCIA SOCIAL
========================================================= */

.social-section {
    padding: 120px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

.section-heading .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.12;
    color: var(--azul-escuro);
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--cinza-texto);
}

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

.social-card {
    position: relative;
    overflow: hidden;
    padding: 34px 30px;
    border-radius: 30px;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 18px 45px rgba(31, 47, 70, 0.08);
    transition: 0.3s ease;
}

.social-card::before {
    content: "";
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(47, 95, 187, 0.06);
    position: absolute;
    right: -60px;
    bottom: -60px;
    transition: 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(31, 47, 70, 0.12);
}

.social-card:hover::before {
    background: rgba(242, 140, 75, 0.10);
}

.social-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(47, 95, 187, 0.10),
        rgba(242, 140, 75, 0.14)
    );
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 28px;
}

.social-card h3 {
    font-size: 25px;
    line-height: 1.3;
    color: var(--azul-escuro);
    margin-bottom: 16px;
}

.social-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cinza-texto);
    margin-bottom: 28px;
}

.social-btn {
    width: fit-content;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--cinza-fundo);
    color: var(--azul);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.social-btn:hover {
    background: var(--azul);
    color: var(--branco);
}


/* =========================================================
   RESPONSIVO ASSISTÊNCIA SOCIAL
========================================================= */

@media (max-width: 1100px) {

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

}

@media (max-width: 620px) {

    .social-section {
        padding: 80px 0;
    }

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

    .section-heading h2 {
        letter-spacing: -1px;
    }

    .section-heading p {
        font-size: 16px;
    }

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

    .social-card {
        padding: 30px 24px;
    }

    .social-card h3 {
        font-size: 22px;
    }

}

/* =========================================================
   EDUCAÇÃO ESPECIAL
========================================================= */

.education-section {
    padding: 120px 0;
    position: relative;
    background:
        linear-gradient(
            180deg,
            rgba(47, 95, 187, 0.03) 0%,
            rgba(255, 255, 255, 0) 100%
        );
}

.education-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.education-heading {
    max-width: 700px;
}

.education-heading h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    color: var(--azul-escuro);
    letter-spacing: -2px;
    margin-top: 18px;
}

.education-description {
    max-width: 470px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--cinza-texto);
}

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

.education-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 34px 30px;
    border-radius: 30px;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 18px 45px rgba(31, 47, 70, 0.08);
    transition: 0.3s ease;
}

.education-card::before {
    content: "";
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(47, 95, 187, 0.06);
    position: absolute;
    right: -70px;
    bottom: -70px;
    transition: 0.3s ease;
}

.education-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(31, 47, 70, 0.12);
}

.education-card:hover::before {
    background: rgba(242, 140, 75, 0.10);
}

.education-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(47, 95, 187, 0.10),
        rgba(242, 140, 75, 0.14)
    );
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 26px;
}

.education-card h3 {
    font-size: 26px;
    line-height: 1.25;
    color: var(--azul-escuro);
    margin-bottom: 16px;
}

.education-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cinza-texto);
}

.education-card-full {
    grid-column: span 3;
    min-height: 210px;
}


/* =========================================================
   RESPONSIVO EDUCAÇÃO
========================================================= */

@media (max-width: 1100px) {

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

    .education-card-full {
        grid-column: span 2;
    }

}

@media (max-width: 780px) {

    .education-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    .education-description {
        max-width: 100%;
    }

}

@media (max-width: 620px) {

    .education-section {
        padding: 80px 0;
    }

    .education-heading h2 {
        letter-spacing: -1px;
    }

    .education-description {
        font-size: 16px;
    }

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

    .education-card,
    .education-card-full {
        grid-column: span 1;
        min-height: auto;
        padding: 30px 24px;
    }

    .education-card h3 {
        font-size: 22px;
    }

}

/* =========================================================
   ESTRUTURA DA ENTIDADE
========================================================= */

.structure-section {
    padding: 120px 0;
    position: relative;
}

.structure-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.structure-heading .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.structure-heading h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    color: var(--azul-escuro);
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.structure-heading p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--cinza-texto);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.structure-card {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 28px 22px;
    border-radius: 28px;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 18px 45px rgba(31, 47, 70, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.3s ease;
}

.structure-card::before {
    content: "";
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(47, 95, 187, 0.06);
    position: absolute;
    right: -50px;
    bottom: -50px;
    transition: 0.3s ease;
}

.structure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(31, 47, 70, 0.12);
}

.structure-card:hover::before {
    background: rgba(242, 140, 75, 0.10);
}

.structure-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(47, 95, 187, 0.10),
        rgba(242, 140, 75, 0.14)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.structure-card h3 {
    font-size: 18px;
    line-height: 1.4;
    color: var(--azul-escuro);
    position: relative;
    z-index: 1;
}


/* =========================================================
   RESPONSIVO ESTRUTURA
========================================================= */

@media (max-width: 1100px) {

    .structure-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 780px) {

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

}

@media (max-width: 620px) {

    .structure-section {
        padding: 80px 0;
    }

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

    .structure-heading h2 {
        letter-spacing: -1px;
    }

    .structure-heading p {
        font-size: 16px;
    }

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

    .structure-card {
        min-height: auto;
        padding: 30px 24px;
    }

}

/* =========================================================
   INFORMAÇÕES / PORTAL / EQUIPES
========================================================= */

.info-section {
    padding: 110px 0 0;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.info-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 54px;
    border-radius: 36px;
    background: var(--branco);
    border: 1px solid rgba(31, 47, 70, 0.08);
    box-shadow: 0 18px 45px rgba(31, 47, 70, 0.08);
}

.info-card::before {
    content: "";
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(47, 95, 187, 0.07);
    position: absolute;
    right: -80px;
    bottom: -80px;
}

.info-card h2 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.15;
    color: var(--azul-escuro);
    letter-spacing: -1.5px;
    margin: 22px 0;
    position: relative;
    z-index: 1;
}

.info-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--cinza-texto);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.info-card .section-tag,
.info-card a {
    position: relative;
    z-index: 1;
}

.info-card-dark {
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul));
}

.info-card-dark::before {
    background: rgba(255, 255, 255, 0.08);
}

.info-card-dark h2,
.info-card-dark p {
    color: var(--branco);
}

.info-card-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--branco);
    color: var(--azul-escuro);
    font-size: 15px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-light:hover {
    background: var(--laranja);
    color: var(--branco);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .info-container {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: auto;
        padding: 42px 30px;
    }
}

/* =========================================================
   CTA FINAL
========================================================= */

.cta-section {
    padding: 120px 0 0;
    position: relative;
}

.cta-container {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: 40px;
    background:
        linear-gradient(
            135deg,
            var(--azul-escuro) 0%,
            #2F5FBB 100%
        );
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-container::before {
    content: "";
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    position: absolute;
    right: -120px;
    top: -120px;
}

.cta-container::after {
    content: "";
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(242, 140, 75, 0.12);
    position: absolute;
    left: -90px;
    bottom: -90px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--branco);
}

.cta-content h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    color: var(--branco);
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-btn-primary,
.cta-btn-secondary {
    min-width: 260px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    transition: 0.3s ease;
}

.cta-btn-primary {
    background: var(--branco);
    color: var(--azul-escuro);
}

.cta-btn-primary:hover {
    background: var(--laranja);
    color: var(--branco);
    transform: translateY(-3px);
}

.cta-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--branco);
    background: rgba(255, 255, 255, 0.06);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVO CTA
========================================================= */

@media (max-width: 980px) {

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 40px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

}

@media (max-width: 620px) {

    .cta-section {
        padding: 80px 0 0;
    }

    .cta-container {
        padding: 44px 26px;
        border-radius: 30px;
    }

    .cta-content h2 {
        letter-spacing: -1px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        min-width: auto;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--azul-escuro);
    color: var(--branco);
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 1fr 0.8fr;
    gap: 42px;
    padding: 64px 0;
}

.footer-col h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--branco);
    position: relative;
}

.footer-col h3::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--laranja);
    border-radius: 999px;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-brand p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
    max-width: 340px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--branco);
    font-size: 22px;
    font-weight: 800;
}

.footer-logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--azul), var(--laranja));
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-contact,
.footer-links {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-contact li span {
    display: block;
    color: var(--branco);
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-contact a,
.footer-links a,
.footer-social a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    transition: 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-social a:hover,
.footer-bottom a:hover {
    color: var(--laranja);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 600;
}

.footer-social a:hover {
    background: var(--laranja);
    color: var(--branco);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 18px 0;
}

.footer-bottom-container {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom a {
    font-weight: 700;
}


/* =========================================================
   RESPONSIVO FOOTER
========================================================= */

@media (max-width: 980px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

}

@media (max-width: 620px) {

    .site-footer {
        margin-top: 56px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 46px 0;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-bottom-container {
        text-align: left;
    }

}

/* =========================================================
   ÍCONES
========================================================= */

.hero-icon-circle i,
.structure-icon i,
.number-card i {
    line-height: 1;
}

.structure-icon i {
    font-size: 34px;
    color: var(--azul);
}

.number-card i {
    font-size: 26px;
}

.hero-icon-circle i {
    font-size: 34px;
    color: var(--laranja);
}

.structure-icon i,
.number-card i,
.hero-icon-circle i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.structure-icon i {
    font-size: 34px;
    color: var(--azul);
}

.number-card i {
    font-size: 28px;
    color: var(--azul);
}

.hero-icon-circle i {
    font-size: 34px;
    color: var(--laranja);
}