/**
 * style.css
 * Estilos globais e componentes principais da home.
 * O arquivo do menu/header fica separado em header.css.
 * Ajustes responsivos ficam em responsive.css.
 */

:root {
    --blue-950: #061f45;
    --blue-900: #07356f;
    --blue-800: #0b438c;
    --blue-700: #0d55b7;
    --blue-600: #1463d9;
    --blue-100: #eaf2ff;
    --blue-050: #f4f8ff;
    --red-600: #e3212b;
    --green-600: #168a55;
    --violet-600: #7451c8;
    --ink: #10213d;
    --text: #46556b;
    --muted: #718096;
    --line: #e5eaf1;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --shadow-sm: 0 10px 30px rgba(8, 35, 73, 0.07);
    --shadow-md: 0 20px 50px rgba(8, 35, 73, 0.12);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --container: 1180px;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 84px 0;
}

.section--soft {
    background: var(--surface-soft);
}

.section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-900);
}

.section-kicker__line {
    display: block;
    width: 34px;
    height: 3px;
    margin: 10px 0 16px;
    background: var(--red-600);
    border-radius: 999px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .section-kicker__line {
    margin-inline: auto;
}

.section-heading h2,
.section-intro h2,
.about-card h2,
.split-feature h2,
.history-content h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    line-height: 1.08;
    color: var(--blue-950);
}

.section-heading h2 {
    margin-top: 8px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p,
.section-intro p,
.about-card p,
.split-feature p,
.history-content p {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-600), #0a46b9);
    box-shadow: 0 8px 20px rgba(20, 99, 217, 0.22);
}

.btn--primary:hover {
    box-shadow: 0 12px 28px rgba(20, 99, 217, 0.3);
}

.btn--outline {
    color: var(--blue-700);
    border-color: #86aef4;
    background: #fff;
}

.btn--outline:hover {
    border-color: var(--blue-700);
    background: var(--blue-050);
}

.btn--outline-light {
    color: #fff;
    border-color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.03);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,.12);
}

.btn--light {
    color: var(--blue-800);
    background: #fff;
    min-width: 220px;
}

/* =========================================================
   HERO
========================================================= */
/*.hero {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--blue-950);
} */
.hero {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;

    /* Foto da fachada + degradê azul */
    background:
        linear-gradient(
            90deg,
            rgba(4, 39, 86, 0.98) 0%,
            rgba(4, 39, 86, 0.94) 30%,
            rgba(4, 39, 86, 0.76) 52%,
            rgba(4, 39, 86, 0.42) 75%,
            rgba(4, 39, 86, 0.20) 100%
        ),
        url("https://www.graficos.org.br/portal/assets/img/fachada.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* O placeholder antigo não é mais necessário */
.hero__media {
    display: none;
}

.hero__overlay {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__copy {
    max-width: 620px;
    color: #fff;
}

.hero__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #b9d4ff;
}

.hero h1 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: .98;
    letter-spacing: -0.05em;
}

.hero h1 strong {
    font-weight: 800;
}

.hero__line {
    display: block;
    width: 154px;
    height: 4px;
    margin: 18px 0 18px;
    background: var(--red-600);
}

.hero p {
    max-width: 600px;
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.65;
    color: #eef5ff;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.hero__controls {
    position: absolute;
    right: max(22px, calc((100vw - var(--container)) / 2));
    bottom: 22px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero__controls button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: var(--blue-900);
    background: #fff;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition);
}

.hero__controls button:hover {
    transform: scale(1.06);
    background: var(--blue-100);
}

/* =========================================================
   NOTÍCIAS
========================================================= */
.section--news {
    background: #fff;
}

.news-layout {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.section-intro h2 {
    font-size: 2.15rem;
}

.section-intro h2 strong {
    color: var(--blue-700);
}

.section-intro p {
    margin: 16px 0 22px;
    font-size: .93rem;
}

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

.post-card {
    min-width: 0;
    background: #fff;
}

.post-card__media {
    position: relative;
    height: 190px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.post-card__media i {
    font-size: 4rem;
    opacity: .85;
}

.post-card__media--blue {
    background: linear-gradient(145deg, #1b5498, #4a7db9);
}

.post-card__media--green {
    background: linear-gradient(145deg, #495642, #8c7a5c);
}

.post-card__media--violet {
    background: linear-gradient(145deg, #495184, #886bb9);
}

.post-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 4px;
    font-size: .64rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--blue-700);
}

.post-card__media--green .post-card__category { background: var(--green-600); }
.post-card__media--violet .post-card__category { background: var(--violet-600); }

.post-card__body {
    padding-top: 14px;
}

.post-card time {
    color: #8b96a6;
    font-size: .72rem;
    text-transform: uppercase;
}

.post-card h3 {
    margin: 7px 0 8px;
    font-size: 1.02rem;
    line-height: 1.35;
}

.post-card p {
    margin: 0 0 16px;
    color: var(--text);
    font-size: .85rem;
}

.post-card__body > a {
    color: var(--blue-700);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================================
   SERVIÇOS
========================================================= */
.services-section {
    padding-top: 28px;
    background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    min-height: 190px;
    padding: 25px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 5px 18px rgba(12, 48, 91, .035);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #b9cef4;
    box-shadow: var(--shadow-sm);
}

.service-card__icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 18px;
    color: var(--blue-700);
    background: var(--blue-050);
    font-size: 1.8rem;
}

.service-card h3 {
    margin: 0 0 7px;
    font-size: .96rem;
    line-height: 1.25;
    color: var(--blue-950);
}

.service-card p {
    margin: 0;
    color: var(--text);
    font-size: .78rem;
    line-height: 1.5;
}

/* =========================================================
   QUEM SOMOS
========================================================= */
.about-section {
    background: var(--blue-050);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 26px;
}

.about-card {
    padding: 36px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.about-card--featured {
    background: linear-gradient(135deg, #fff, #f8fbff);
}

.about-card h2 {
    margin-top: 8px;
    font-size: 2.55rem;
}

.about-card__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 16px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 1.5rem;
}

.about-card h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.about-card h4 {
    margin: 22px 0 6px;
    color: var(--blue-800);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-weight: 800;
}

/* =========================================================
   CONVENÇÕES / DOCUMENTOS
========================================================= */
.split-feature {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
}

.split-feature h2 {
    margin-top: 10px;
    font-size: 2.85rem;
}

.feature-points {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
}

.feature-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 600;
}

.feature-points i {
    color: var(--green-600);
}

.split-feature__visual {
    min-height: 320px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
    box-shadow: var(--shadow-md);
}

.split-feature__visual i {
    font-size: 6rem;
    color: #b8d4ff;
}

.split-feature__visual span {
    font-weight: 800;
    font-size: 1.2rem;
}

/* =========================================================
   HISTÓRIA
========================================================= */
.history-section {
    background: #fff;
}

.history-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.history-year {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(5rem, 12vw, 9rem);
    line-height: 1;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #c8d7ec;
    letter-spacing: -0.06em;
}

.history-content h2 {
    margin-top: 9px;
    font-size: 2.8rem;
}

/* =========================================================
   CTA
========================================================= */
.cta-section {
    padding-top: 38px;
    padding-bottom: 32px;
}

.membership-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 34px;
    border-radius: 10px;
    color: #fff;
    background:
        radial-gradient(circle at 25% 50%, rgba(43,112,225,.45), transparent 30%),
        linear-gradient(90deg, #083a83 0%, #063172 60%, #073c89 100%);
    border-bottom: 4px solid var(--red-600);
    box-shadow: var(--shadow-sm);
}

.membership-cta__icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 50%;
    font-size: 1.8rem;
}

.membership-cta h2 {
    margin: 0 0 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.55rem;
}

.membership-cta p {
    margin: 0;
    color: #dfeaff;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    color: #fff;
    background: linear-gradient(180deg, #082c5d 0%, #061f45 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr .9fr 1.05fr .9fr;
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 38px;
}

.footer-brand__identity {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-brand__identity picture,
.footer-brand__identity img {
    width: 108px;
    height: 112px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0 0 18px;
    color: #c8d6e9;
    font-size: .76rem;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
}

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

.footer-column h3 {
    margin: 4px 0 10px;
    font-size: .85rem;
    text-transform: uppercase;
}

.footer-column > a,
.footer-contact__item {
    color: #c8d6e9;
    font-size: .75rem;
}

.footer-column > a:hover {
    color: #fff;
}

.footer-contact a,
.footer-contact__item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-contact i {
    width: 16px;
    margin-top: 3px;
    color: #bdd2f5;
}

.map-placeholder {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border-radius: 5px;
    background: #dfe8f2;
}

.map-placeholder__grid {
    position: absolute;
    inset: 0;
    opacity: .65;
    background-image:
        linear-gradient(rgba(53,89,126,.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53,89,126,.15) 1px, transparent 1px);
    background-size: 24px 24px;
    transform: rotate(-8deg) scale(1.2);
}

.map-placeholder__pin {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -60%);
    color: var(--red-600);
    font-size: 2.2rem;
}

.map-placeholder small {
    position: absolute;
    left: 10px;
    bottom: 8px;
    padding: 4px 7px;
    border-radius: 4px;
    color: var(--blue-950);
    background: rgba(255,255,255,.88);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom p {
    margin: 0;
    color: #b7c7db;
    font-size: .68rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
    font-size: 1.7rem;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

/* =========================================================
   ANIMAÇÕES DISCRETAS
========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   DOCUMENTOS / CONVENÇÕES - HOME
========================================================= */

.home-docs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}


/* CARD
========================================================= */

.home-doc-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;

    padding: 24px;

    border: 1px solid #e0e8f2;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(6, 31, 69, .055);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.home-doc-card:hover {
    transform: translateY(-5px);

    border-color: #c9dcef;

    box-shadow:
        0 20px 42px rgba(6, 31, 69, .10);
}


/* TOPO DO CARD
========================================================= */

.home-doc-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 24px;
}


.home-doc-card__icon {
    display: grid;

    width: 58px;
    height: 58px;

    place-items: center;

    border-radius: 16px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #b51924,
            #e3212b
        );

    box-shadow:
        0 12px 24px rgba(227, 33, 43, .18);

    font-size: 1.45rem;
}


.home-doc-card__type {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 27px;

    padding: 0 9px;

    border-radius: 999px;

    color: #a31720;

    background: #fff0f1;

    font-size: .65rem;
    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* CONTEÚDO
========================================================= */

.home-doc-card__content {
    flex: 1;
}


.home-doc-card__category {
    display: block;

    margin-bottom: 7px;

    color: #0d55b7;

    font-size: .69rem;
    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.home-doc-card__content h3 {
    margin: 0 0 10px;

    color: #061f45;

    font-family:
        "Manrope",
        "Inter",
        sans-serif;

    font-size: 1rem;
    line-height: 1.35;
}


.home-doc-card__content p {
    margin: 0;

    color: #6a7788;

    font-size: .81rem;
    line-height: 1.65;
}


/* DOWNLOAD
========================================================= */

.home-doc-card__download {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 24px;

    padding-top: 17px;

    border-top: 1px solid #edf1f6;

    color: #0d55b7;

    text-decoration: none;

    font-size: .78rem;
    font-weight: 800;

    transition: color .2s ease;
}


.home-doc-card__download:hover {
    color: #061f45;
}


.home-doc-card__download i {
    font-size: .85rem;
}


/* RODAPÉ DA SEÇÃO
========================================================= */

.home-docs-footer {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 13px;

    margin-top: 38px;

    text-align: center;
}


.home-docs-footer p {
    margin: 0;

    color: #758294;

    font-size: .83rem;
}


.home-docs-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}


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

@media (max-width: 1100px) {

    .home-docs-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .home-docs-grid {
        grid-template-columns: 1fr;
    }


    .home-doc-card {
        min-height: auto;
    }

}


/* =========================================================
   INSTAGRAM / CTA INSTITUCIONAL
   Prefixo exclusivo: social-insta-
========================================================= */

.social-insta-section {
    position: relative;
    overflow: hidden;

    padding:
        clamp(70px, 8vw, 110px) 0;

    background: #f5f8fc;
}


/* =========================================================
   CARD PRINCIPAL
========================================================= */

.social-insta-card {
    position: relative;

    overflow: hidden;

    padding:
        clamp(30px, 5vw, 64px);

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 28px;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(120, 181, 255, .19),
            transparent 27%
        ),
        radial-gradient(
            circle at 5% 100%,
            rgba(227, 33, 43, .12),
            transparent 30%
        ),
        linear-gradient(
            130deg,
            #03172f 0%,
            #062c60 52%,
            #0a4691 100%
        );

    box-shadow:
        0 30px 70px rgba(5, 31, 69, .16);
}


/* LINHAS DECORATIVAS */

.social-insta-card::before {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    top: -260px;
    right: -170px;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    box-shadow:
        0 0 0 65px rgba(255, 255, 255, .018),
        0 0 0 130px rgba(255, 255, 255, .012);

    pointer-events: none;
}


.social-insta-card::after {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .04;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .7) 1px,
            transparent 1px
        );

    background-size: 52px 52px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000
        );

    pointer-events: none;
}


.social-insta-card__glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}


.social-insta-card__glow--one {
    width: 190px;
    height: 190px;

    right: 31%;
    bottom: -125px;

    background:
        rgba(72, 146, 255, .13);
}


.social-insta-card__glow--two {
    width: 130px;
    height: 130px;

    left: -80px;
    top: 25%;

    background:
        rgba(227, 33, 43, .08);
}


/* =========================================================
   GRID
========================================================= */

.social-insta-card__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, .85fr);

    gap:
        clamp(40px, 7vw, 90px);

    align-items: center;
}


/* =========================================================
   TEXTO
========================================================= */

.social-insta-kicker {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    padding: 8px 12px;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 999px;

    color: #dcecff;

    background:
        rgba(255, 255, 255, .06);

    font-size: .69rem;
    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.social-insta-kicker i {
    font-size: 1rem;
}


.social-insta-card__content h2 {
    max-width: 700px;

    margin: 0;

    color: #fff;

    font-family:
        "Manrope",
        "Inter",
        sans-serif;

    font-size:
        clamp(2rem, 4.1vw, 3.6rem);

    line-height: 1.06;

    letter-spacing: -.045em;
}


.social-insta-card__content h2 strong {
    display: block;

    color: #acd4ff;
}


.social-insta-card__content > p {
    max-width: 680px;

    margin: 19px 0 0;

    color:
        rgba(255, 255, 255, .75);

    font-size: .94rem;

    line-height: 1.8;
}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.social-insta-features {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}


.social-insta-features span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 36px;

    padding: 0 11px;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius: 9px;

    color:
        rgba(255, 255, 255, .8);

    background:
        rgba(255, 255, 255, .055);

    font-size: .7rem;
    font-weight: 700;
}


.social-insta-features i {
    color: #9fcaff;
}


/* =========================================================
   BOTÃO PRINCIPAL
========================================================= */

.social-insta-button {
    display: grid;

    width: fit-content;

    grid-template-columns:
        46px auto auto;

    gap: 12px;

    align-items: center;

    margin-top: 29px;

    padding: 9px 14px 9px 9px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 15px;

    color: #fff;

    background:
        rgba(255, 255, 255, .1);

    text-decoration: none;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .12);

    backdrop-filter: blur(10px);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.social-insta-button:hover {
    transform: translateY(-3px);

    background:
        rgba(255, 255, 255, .15);

    box-shadow:
        0 20px 38px rgba(0, 0, 0, .17);
}


.social-insta-button__icon {
    display: grid;

    width: 46px;
    height: 46px;

    place-items: center;

    border-radius: 12px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );

    font-size: 1.2rem;
}


.social-insta-button__text small,
.social-insta-button__text strong {
    display: block;
}


.social-insta-button__text small {
    color:
        rgba(255, 255, 255, .63);

    font-size: .62rem;
}


.social-insta-button__text strong {
    margin-top: 2px;

    color: #fff;

    font-size: .83rem;
}


.social-insta-button > i {
    margin-left: 7px;

    color:
        rgba(255, 255, 255, .55);

    font-size: .72rem;
}


/* =========================================================
   CARD DO PERFIL
========================================================= */

.social-insta-profile {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 23px;

    background:
        rgba(255, 255, 255, .96);

    box-shadow:
        0 30px 55px rgba(0, 0, 0, .22);

    transform: rotate(1deg);

    transition:
        transform .3s ease;
}


.social-insta-profile:hover {
    transform:
        rotate(0deg)
        translateY(-4px);
}


/* TOPO */

.social-insta-profile__top {
    display: grid;

    grid-template-columns:
        50px minmax(0, 1fr) auto;

    gap: 12px;

    align-items: center;

    padding: 18px 19px;

    border-bottom:
        1px solid #e8edf4;
}


.social-insta-profile__avatar {
    display: grid;

    width: 50px;
    height: 50px;

    place-items: center;

    border-radius: 15px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );

    font-size: 1.3rem;
}


.social-insta-profile__top span {
    display: block;

    color: #8b97a6;

    font-size: .61rem;

    text-transform: uppercase;

    letter-spacing: .07em;
}


.social-insta-profile__top strong {
    display: block;

    margin-top: 2px;

    color: #082b5d;

    font-size: .84rem;
}


.social-insta-profile__top > i {
    color: #1463d9;

    font-size: .92rem;
}


/* CORPO */

.social-insta-profile__body {
    padding: 22px 20px;
}


.social-insta-profile__label {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #0d55b7;

    font-size: .64rem;
    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.social-insta-profile__body h3 {
    margin: 8px 0 0;

    color: #061f45;

    font-family:
        "Manrope",
        "Inter",
        sans-serif;

    font-size: 1.35rem;

    line-height: 1.3;

    letter-spacing: -.02em;
}


.social-insta-profile__body > p {
    margin: 9px 0 0;

    color: #6f7c8c;

    font-size: .76rem;

    line-height: 1.65;
}


/* ITENS */

.social-insta-profile__items {
    display: grid;

    gap: 9px;

    margin-top: 19px;
}


.social-insta-profile__items > div {
    display: grid;

    grid-template-columns:
        38px minmax(0, 1fr);

    gap: 10px;

    align-items: center;

    padding: 10px;

    border:
        1px solid #e6edf5;

    border-radius: 11px;

    background: #f8fafd;
}


.social-insta-profile__items > div > span {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    border-radius: 10px;

    color: #0d55b7;

    background: #e9f2ff;

    font-size: .82rem;
}


.social-insta-profile__items strong,
.social-insta-profile__items small {
    display: block;
}


.social-insta-profile__items strong {
    color: #082b5d;

    font-size: .72rem;
}


.social-insta-profile__items small {
    margin-top: 2px;

    color: #8793a1;

    font-size: .62rem;
}


/* BOTÃO INFERIOR */

.social-insta-profile__follow {
    display: flex;

    min-height: 50px;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 15px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #833ab4 0%,
            #c13584 38%,
            #fd1d1d 70%,
            #fcb045 100%
        );

    text-decoration: none;

    font-size: .76rem;
    font-weight: 800;
}


.social-insta-profile__follow
.fa-arrow-right {
    margin-left: 3px;

    font-size: .65rem;

    transition:
        transform .2s ease;
}


.social-insta-profile__follow:hover
.fa-arrow-right {
    transform: translateX(4px);
}


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

@media (max-width: 980px) {

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


    .social-insta-card__visual {
        max-width: 520px;
    }


    .social-insta-profile {
        transform: none;
    }

}


@media (max-width: 600px) {

    .social-insta-section {
        padding:
            55px 0;
    }


    .social-insta-card {
        padding:
            29px 20px;

        border-radius: 21px;
    }


    .social-insta-card__content h2 {
        font-size:
            clamp(2rem, 10vw, 2.7rem);
    }


    .social-insta-card__content h2 strong {
        display: inline;
    }


    .social-insta-features {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .social-insta-features span {
        justify-content: flex-start;
    }


    .social-insta-button {
        width: 100%;

        grid-template-columns:
            46px minmax(0, 1fr) auto;
    }


    .social-insta-profile__body {
        padding: 20px 17px;
    }

}

/* =========================================================
   HOME - PLANO COMPLETO
   ODONTOLOGIA + CLUBE DE CAMPO
========================================================= */

.home-complete-plan {
    position: relative;
    padding: 15px 0 80px;
}


/* =========================================================
   CARD PRINCIPAL
========================================================= */

.home-complete-plan__card {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;

    gap: 45px;

    padding: 42px;

    border: 1px solid rgba(6, 76, 145, 0.12);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(13, 142, 103, 0.14),
            transparent 34%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(7, 88, 170, 0.09),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f9fd 55%,
            #f1faf6 100%
        );

    box-shadow:
        0 24px 65px rgba(7, 47, 89, 0.11);
}


/* detalhe decorativo */

.home-complete-plan__card::before {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    right: -190px;
    bottom: -235px;

    border-radius: 50%;

    background:
        rgba(7, 105, 88, 0.08);

    pointer-events: none;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.home-complete-plan__content {
    position: relative;
    z-index: 2;
}


.home-complete-plan__eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 10px;

    color: #08705b;

    font-size: 0.78rem;
    font-weight: 900;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.home-complete-plan__content h2 {
    max-width: 780px;

    margin: 0 0 14px;

    color: #07376d;

    font-size:
        clamp(1.8rem, 3vw, 2.65rem);

    line-height: 1.12;

    letter-spacing: -0.035em;
}


.home-complete-plan__content h2 strong {
    color: #08715f;
}


.home-complete-plan__content > p {
    max-width: 790px;

    margin: 0;

    color: #586a7e;

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.home-complete-plan__benefits {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 25px;
}


.home-complete-plan__benefit {
    flex: 1;

    min-width: 0;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 12px;

    padding: 14px 15px;

    border: 1px solid rgba(7, 83, 151, 0.10);
    border-radius: 16px;

    color: inherit;

    background:
        rgba(255, 255, 255, 0.78);

    text-decoration: none;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}


.home-complete-plan__benefit:hover {
    transform: translateY(-3px);

    border-color:
        rgba(7, 104, 91, 0.24);

    box-shadow:
        0 12px 28px
        rgba(7, 57, 103, 0.10);
}


.home-complete-plan__benefit-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: #ffffff;

    font-size: 1.05rem;

    background:
        linear-gradient(
            145deg,
            #075aa6,
            #087460
        );

    box-shadow:
        0 8px 18px
        rgba(7, 84, 148, 0.18);
}


.home-complete-plan__benefit strong,
.home-complete-plan__benefit small {
    display: block;
}


.home-complete-plan__benefit strong {
    color: #103f6b;

    font-size: 0.9rem;
}


.home-complete-plan__benefit small {
    margin-top: 3px;

    color: #748294;

    font-size: 0.73rem;

    line-height: 1.35;
}


.home-complete-plan__benefit > i {
    color: #08705d;

    font-size: 0.75rem;

    transition: transform 0.22s ease;
}


.home-complete-plan__benefit:hover > i {
    transform: translateX(3px);
}


/* PLUS CENTRAL */

.home-complete-plan__plus {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #08705d;

    background:
        rgba(8, 112, 93, 0.09);

    font-size: 0.75rem;
}


/* =========================================================
   BOTÕES
========================================================= */

.home-complete-plan__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 20px;

    margin-top: 26px;
}


.home-complete-plan__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 19px;

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0759a5,
            #08715e
        );

    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 900;

    box-shadow:
        0 11px 25px
        rgba(7, 83, 151, 0.20);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}


.home-complete-plan__button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 31px
        rgba(7, 83, 151, 0.27);
}


.home-complete-plan__link {
    color: #07589f;

    font-size: 0.83rem;
    font-weight: 900;

    text-decoration: none;

    border-bottom:
        1px solid rgba(7, 88, 159, 0.28);
}


.home-complete-plan__link:hover {
    color: #08705d;
}


/* =========================================================
   PREÇO
========================================================= */

.home-complete-plan__price {
    position: relative;
    z-index: 2;

    padding: 31px 22px;

    border-radius: 25px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            155deg,
            #07396f 0%,
            #075c92 48%,
            #087560 100%
        );

    box-shadow:
        0 20px 42px
        rgba(4, 54, 106, 0.24);
}


.home-complete-plan__price-kicker {
    display: block;

    color:
        rgba(255, 255, 255, 0.79);

    font-size: 0.77rem;
    font-weight: 900;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.home-complete-plan__price-value {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    margin: 6px 0 2px;

    line-height: 1;
}


.home-complete-plan__price-value sup {
    margin-top: 12px;
    margin-right: 4px;

    font-size: 1.05rem;
    font-weight: 900;
}


.home-complete-plan__price-value strong {
    font-size: 4.25rem;

    letter-spacing: -0.07em;
}


.home-complete-plan__price-value span {
    margin-top: 10px;

    font-size: 1.15rem;
    font-weight: 900;
}


.home-complete-plan__price p {
    margin: 9px 0 17px;

    color:
        rgba(255, 255, 255, 0.90);

    font-size: 0.82rem;
    font-weight: 800;
}


.home-complete-plan__price p span {
    padding: 0 5px;

    color: #acf1d2;
}


.home-complete-plan__price-note {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border-radius: 999px;

    color: #d5f8e8;

    background:
        rgba(255, 255, 255, 0.10);

    font-size: 0.7rem;
    font-weight: 800;
}


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

@media (max-width: 980px) {

    .home-complete-plan__card {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .home-complete-plan__price {
        width: 100%;
    }

}


@media (max-width: 760px) {

    .home-complete-plan {
        padding:
            5px 0 55px;
    }


    .home-complete-plan__card {
        padding: 26px;

        border-radius: 23px;
    }


    .home-complete-plan__benefits {
        flex-direction: column;
        align-items: stretch;
    }


    .home-complete-plan__plus {
        align-self: center;
    }


    .home-complete-plan__benefit {
        width: 100%;
    }


    .home-complete-plan__actions {
        flex-direction: column;
        align-items: stretch;
    }


    .home-complete-plan__button {
        width: 100%;
    }


    .home-complete-plan__link {
        align-self: center;
    }

}


@media (max-width: 480px) {

    .home-complete-plan__card {
        padding: 21px;
    }


    .home-complete-plan__content h2 {
        font-size: 1.65rem;
    }


    .home-complete-plan__price-value strong {
        font-size: 3.6rem;
    }


    .home-complete-plan__benefit {
        grid-template-columns: auto 1fr;
    }


    .home-complete-plan__benefit > i {
        display: none;
    }

}