:root {
    --blue: #004da8;
    --blue-2: #005ed6;
    --blue-dark: #06235c;
    --blue-deep: #003b82;
    --blue-soft: #eef5ff;
    --yellow: #ffc20e;
    --green: #009b63;
    --green-2: #00b875;
    --text: #14213d;
    --muted: #536174;
    --muted-2: #7a8494;
    --border: #dfe7f2;
    --white: #ffffff;
    --shadow: 0 20px 48px rgba(6, 35, 92, 0.14);
    --shadow-soft: 0 12px 28px rgba(6, 35, 92, 0.08);
    --shadow-hover: 0 24px 56px rgba(6, 35, 92, 0.18);
    --radius: 18px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 44px));
    margin: 0 auto;
}

/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(223, 231, 242, 0.88);
    transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(6, 35, 92, 0.09);
    border-color: rgba(223, 231, 242, 0.62);
}

.header-inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 110;
}

.brand img {
    width: 145px;
    height: auto;
    transition: transform 0.25s ease;
}

.site-header.is-scrolled .brand img {
    transform: scale(0.96);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 15px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    color: #111827;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 3px;
    border-radius: 30px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 77, 168, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    background: var(--blue-2);
    box-shadow: 0 16px 30px rgba(0, 77, 168, 0.30);
}

.header-cta svg {
    width: 17px;
    height: 17px;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 77, 168, 0.18);
    border-radius: 12px;
    background: #fff;
    color: var(--blue);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 110;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    position: relative;
    transition: background 0.2s ease;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 0.2s ease, top 0.2s ease;
}

.mobile-toggle span::before {
    top: -7px;
}

.mobile-toggle span::after {
    top: 7px;
}

body.nav-open .mobile-toggle span {
    background: transparent;
}

body.nav-open .mobile-toggle span::before {
    top: 0;
    transform: rotate(45deg);
}

body.nav-open .mobile-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background:
        linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 32%, rgba(255,255,255,0.78) 54%, rgba(255,255,255,0.38) 100%),
        url('/assets/background-3.png') center center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.62) 100%),
        radial-gradient(circle at 74% 44%, rgba(255,255,255,0.86), rgba(255,255,255,0) 34%),
        radial-gradient(circle at 18% 78%, rgba(0,77,168,0.05), rgba(255,255,255,0) 28%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    align-items: center;
    gap: 34px;
    padding: 46px 0 78px;
}

.eyebrow,
.section-label {
    position: relative;
    display: inline-flex;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    color: var(--blue-dark);
    font-size: clamp(42px, 4.7vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero h1 span {
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 3px;
    height: 10px;
    border-radius: 99px;
    background: rgba(255, 194, 14, 0.28);
    z-index: -1;
}

.hero p {
    max-width: 570px;
    margin: 22px 0 0;
    color: #253145;
    font-size: 19px;
    line-height: 1.42;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 900;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

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

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 14px 25px rgba(0, 77, 168, 0.24);
}

.btn-primary:hover {
    background: var(--blue-2);
    box-shadow: 0 19px 32px rgba(0, 77, 168, 0.30);
}

.btn-outline {
    color: var(--blue);
    border-color: rgba(0, 77, 168, 0.45);
    background: rgba(255,255,255,0.94);
}

.btn-outline:hover {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 14px 24px rgba(6, 35, 92, 0.10);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,77,168,0.14);
    font-size: 12px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.profile-wrap {
    position: absolute;
    right: 0;
    bottom: -2px;
    width: min(520px, 100%);
    height: 512px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.profile-glow {
    position: absolute;
    inset: 10px 0 0 8px;
    border-radius: 48% 48% 0 0;
    background:
        radial-gradient(circle at 50% 36%, rgba(255,255,255,0.98), rgba(255,255,255,0.62) 45%, rgba(255,255,255,0) 70%);
}

.profile-wrap img {
    position: relative;
    z-index: 2;
    width: 500px;
    height: 505px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 22px rgba(6,35,92,0.16));
    animation: heroFloat 6s ease-in-out infinite;
}

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

.brand-swoosh {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 72px;
    pointer-events: none;
}

.brand-swoosh svg {
    width: 100%;
    height: 100%;
}

/* BASE */

.card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(204, 216, 232, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 77, 168, 0.22);
}

/* PILARES */

.pillars-preview {
    position: relative;
    z-index: 10;
    margin-top: -25px;
}

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

.pillar-card {
    min-height: 154px;
    padding: 26px 26px 23px;
}

.icon-large {
    color: var(--blue);
    width: 58px;
    height: 58px;
    margin-bottom: 13px;
    transition: transform 0.22s ease, color 0.22s ease;
}

.icon-large svg {
    width: 58px;
    height: 58px;
    stroke-width: 2.4;
}

.pillar-card:hover .icon-large {
    transform: scale(1.08) rotate(-2deg);
    color: var(--blue-2);
}

.pillar-card h3,
.work-card h3,
.book-card h3,
.news-card h3 {
    margin: 0;
    color: var(--blue-dark);
}

.pillar-card h3 {
    font-size: 17px;
}

.pillar-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.42;
}

.small-line {
    width: 22px;
    height: 3px;
    background: var(--yellow);
    border-radius: 20px;
    margin-top: 15px;
    transition: width 0.22s ease;
}

.card:hover .small-line {
    width: 46px;
}

/* SECTIONS */

.section {
    padding: 48px 0 0;
}

.section-title {
    margin: 0 0 20px;
    color: var(--blue-dark);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-label {
    margin-bottom: 12px;
}

.section-label::after {
    content: "";
    position: absolute;
    right: -38px;
    top: 50%;
    width: 30px;
    height: 3px;
    border-radius: 99px;
    background: var(--yellow);
    transform: translateY(-50%);
}

/* SOBRE / TIMELINE */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.25fr;
    gap: 54px;
    align-items: start;
    padding-top: 20px;
}

.about-copy p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

.about-copy .btn {
    margin-top: 14px;
}

.timeline-horizontal {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 8px;
}

.timeline-horizontal::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 8%;
    right: 1%;
    height: 2px;
    background: #d5dfec;
}

.timeline-horizontal::after {
    content: "";
    position: absolute;
    top: 56px;
    left: 8%;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 1.2s ease;
}

.timeline-horizontal.is-visible::after {
    width: 91%;
}

.timeline-item-h {
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.timeline-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    margin: 0 auto 13px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--blue);
    border: 2px solid #b9c8dc;
    box-shadow: 0 9px 20px rgba(6,35,92,0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.timeline-item-h:hover .timeline-icon {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 14px 28px rgba(6,35,92,0.12);
}

.timeline-icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 2.1;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(0,77,168,0.08);
}

.timeline-item-h strong {
    display: block;
    color: var(--blue-dark);
    font-size: 17px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.timeline-item-h span {
    display: block;
    color: #344154;
    font-size: 14px;
    line-height: 1.35;
}

/* ATUACAO */

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

.work-card {
    min-height: 166px;
    padding: 26px 25px;
}

.icon-green {
    color: var(--green);
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
    transition: transform 0.22s ease, color 0.22s ease;
}

.icon-green svg {
    width: 48px;
    height: 48px;
    stroke-width: 2.3;
}

.work-card:hover .icon-green {
    transform: scale(1.08) rotate(-2deg);
    color: var(--green-2);
}

.work-card h3 {
    font-size: 18px;
    line-height: 1.15;
}

.work-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 14px;
}

/* LIVROS */

.books {
    position: relative;
}

.books::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    height: 260px;
    background: linear-gradient(180deg, rgba(238,245,255,0.48), rgba(255,255,255,0));
    pointer-events: none;
    z-index: -1;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 20px;
}

.book-card {
    display: grid;
    grid-template-columns: 138px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px 24px;
    min-height: 190px;
}

.book-cover-link {
    display: inline-flex;
    width: 126px;
    perspective: 800px;
}

.book-cover-img {
    width: 126px;
    height: 166px;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 16px 26px rgba(6,35,92,0.27);
    background: #06172f;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.book-card:hover .book-cover-img {
    transform: rotateY(-7deg) translateY(-4px);
    box-shadow: 0 22px 36px rgba(6,35,92,0.32);
}

.book-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.book-card h3 {
    font-size: 18px;
    line-height: 1.18;
}

.book-card p {
    color: var(--muted);
    line-height: 1.45;
    margin: 9px 0 14px;
    font-size: 14px;
}

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

.text-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.text-link:hover svg {
    transform: translateX(3px);
}

/* NOTICIAS */

.section-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    gap: 22px;
    margin-top: 18px;
}

.news-card {
    overflow: hidden;
}

.news-image {
    height: 158px;
    background: #e7eef8;
    overflow: hidden;
    position: relative;
}

.news-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.12));
}

.news-card:first-child .news-image {
    height: 174px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card:hover .news-image img,
.news-card:hover .news-image::before {
    transform: scale(1.05);
}

.news-image.placeholder-1,
.news-image.placeholder-2,
.news-image.placeholder-3 {
    position: relative;
}

.news-image.placeholder-1::before,
.news-image.placeholder-2::before,
.news-image.placeholder-3::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: transform 0.35s ease;
}

.news-image.placeholder-1::before {
    background:
        radial-gradient(circle at 18% 78%, rgba(255,194,14,0.48), transparent 28%),
        linear-gradient(135deg, #003f91, #1c7fc3);
}

.news-image.placeholder-2::before {
    background:
        radial-gradient(circle at 60% 18%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(135deg, #335e86, #bdc8d4);
}

.news-image.placeholder-3::before {
    background:
        radial-gradient(circle at 18% 82%, rgba(0,155,99,0.5), transparent 30%),
        linear-gradient(135deg, #b6d9ec, #79b66a);
}

.news-content {
    padding: 18px 20px 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.news-tag {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-date {
    color: #7a8494;
    font-size: 12px;
}

.news-card h3 {
    font-size: 18px;
    line-height: 1.18;
    margin-bottom: 9px;
}

.news-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.42;
    margin: 0 0 12px;
}

/* FOOTER */

.site-footer {
    position: relative;
    margin-top: 86px;
    color: #fff;
    background: linear-gradient(135deg, #052762, #004da8);
    overflow: hidden;
}

.footer-wave {
    position: relative;
    height: 38px;
    background: #fff;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1.15fr 1fr;
    gap: 48px;
    padding: 45px 0 34px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 22px;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,0.86);
    font-size: 14px;
    line-height: 1.55;
}

.contact-list {
    display: grid;
    gap: 8px;
}

.contact-line {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    align-items: start;
}

.contact-line svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 50%;
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.12);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.20);
    padding: 15px 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* FLOAT */

.float-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #18b66a;
    box-shadow: 0 16px 34px rgba(24, 182, 106, 0.36);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 40px rgba(24, 182, 106, 0.42);
}

.float-whatsapp svg {
    width: 27px;
    height: 27px;
}

/* RESPONSIVO */

@media (max-width: 1050px) {
    .main-nav {
        gap: 22px;
    }

    .hero {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.86) 52%, rgba(255,255,255,0.72) 100%),
            url('/assets/background-3.png') center top / cover no-repeat;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 76px;
    }

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

    .profile-wrap {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

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

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

    .timeline-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .timeline-horizontal::before,
    .timeline-horizontal::after {
        display: none;
    }

    .books-grid,
    .news-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 74px;
    }

    .container {
        width: min(100% - 28px, 1120px);
    }

    .brand img {
        width: 128px;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        inset: 0 0 auto 0;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        padding: 26px 24px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        transform: translateX(105%);
        transition: transform 0.25s ease;
        border-top: 1px solid var(--border);
    }

    body.nav-open .main-nav {
        transform: translateX(0);
    }

    .main-nav a {
        width: 100%;
        padding: 14px 0;
        font-size: 20px;
        border-bottom: 1px solid rgba(223, 231, 242, 0.8);
    }

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

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        padding: 42px 0 76px;
    }

    .eyebrow,
    .section-label {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

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

    .btn {
        width: 100%;
    }

    .hero-proof span {
        background: rgba(255,255,255,0.88);
    }

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

    .profile-wrap {
        height: 365px;
    }

    .profile-wrap img {
        height: 365px;
        width: 100%;
        object-fit: contain;
    }

    .brand-swoosh {
        height: 54px;
    }

    .pillars-grid,
    .work-grid,
    .timeline-horizontal {
        grid-template-columns: 1fr;
    }

    .section {
        padding-top: 44px;
    }

    .section-title {
        font-size: 26px;
    }

    .book-card {
        grid-template-columns: 1fr;
    }

    .book-cover-link {
        width: 148px;
    }

    .book-cover-img {
        width: 148px;
        height: auto;
        max-height: 206px;
    }

    .section-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-image,
    .news-card:first-child .news-image {
        height: 170px;
    }

    .footer-grid {
        gap: 30px;
    }

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

    .float-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* HERO UPDATE :: BACKGROUND-3 */
.hero,
.hero-section,
.hero-banner {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.94) 0%,
            rgba(255,255,255,0.88) 22%,
            rgba(255,255,255,0.70) 44%,
            rgba(255,255,255,0.42) 66%,
            rgba(255,255,255,0.20) 100%
        ),
        url('/assets/background-3.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}

/* deixa o background aparecer mais */
.hero::before,
.hero-section::before,
.hero-banner::before {
    opacity: 0.08 !important;
}

/* remove qualquer card, sombra ou fundo atrás da foto */
.hero-media,
.hero-visual,
.hero-photo-card,
.hero-photo-wrap,
.hero-image-wrap,
.hero-portrait-wrap,
.hero-figure {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    filter: none !important;
    backdrop-filter: none !important;
}

/* remove pseudo-elementos que criam círculo/bloco/sombra atrás da foto */
.hero-media::before,
.hero-media::after,
.hero-visual::before,
.hero-visual::after,
.hero-photo-card::before,
.hero-photo-card::after,
.hero-photo-wrap::before,
.hero-photo-wrap::after,
.hero-image-wrap::before,
.hero-image-wrap::after,
.hero-portrait-wrap::before,
.hero-portrait-wrap::after,
.hero-figure::before,
.hero-figure::after {
    content: none !important;
    display: none !important;
}

/* imagem limpa, sem sombra */
.hero-photo,
.hero-image,
.hero-portrait,
.hero-figure img,
.hero-photo-card img,
.hero-photo-wrap img,
.hero-image-wrap img,
.hero-portrait-wrap img {
    display: block;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    border-radius: 0 !important;
    position: relative;
    z-index: 2;
}

/* melhora leitura do texto com fundo vivo */
.hero-content,
.hero-copy,
.hero-text {
    position: relative;
    z-index: 3;
}

/* mobile */
@media (max-width: 991px) {
    .hero,
    .hero-section,
    .hero-banner {
        background-position: 72% center !important;
        background-size: cover !important;
    }
}

@media (max-width: 767px) {
    .hero,
    .hero-section,
    .hero-banner {
        background-image:
            linear-gradient(
                180deg,
                rgba(255,255,255,0.95) 0%,
                rgba(255,255,255,0.88) 38%,
                rgba(255,255,255,0.60) 68%,
                rgba(255,255,255,0.30) 100%
            ),
            url('/assets/background-3.png') !important;
        background-position: center center !important;
    }
}


/* HERO HOTFIX :: FOTO ENQUADRADA */
.hero,
.hero-section,
.hero-banner {
    position: relative;
    overflow: hidden !important;
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.95) 0%,
            rgba(255,255,255,0.90) 24%,
            rgba(255,255,255,0.76) 46%,
            rgba(255,255,255,0.48) 67%,
            rgba(255,255,255,0.18) 100%
        ),
        url('/assets/background-3.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}

.hero .container,
.hero-section .container,
.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-grid,
.hero-inner,
.hero-content-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr) !important;
    gap: 42px !important;
    align-items: center !important;
}

/* coluna do texto */
.hero-content,
.hero-copy,
.hero-text {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

/* coluna da foto */
.hero-media,
.hero-visual,
.hero-photo-wrap,
.hero-image-wrap,
.hero-portrait-wrap,
.hero-figure {
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    min-height: 520px !important;
    overflow: hidden !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    z-index: 2;
}

/* remove o círculo branco e qualquer decoração atrás da foto */
.hero-media::before,
.hero-media::after,
.hero-visual::before,
.hero-visual::after,
.hero-photo-wrap::before,
.hero-photo-wrap::after,
.hero-image-wrap::before,
.hero-image-wrap::after,
.hero-portrait-wrap::before,
.hero-portrait-wrap::after,
.hero-figure::before,
.hero-figure::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* foto propriamente dita */
.hero-photo,
.hero-image,
.hero-portrait,
.hero-media img,
.hero-visual img,
.hero-photo-wrap img,
.hero-image-wrap img,
.hero-portrait-wrap img,
.hero-figure img {
    position: relative !important;
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: 560px !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    z-index: 3;
}

/* badges abaixo dos botões */
.hero-badges,
.hero-tags,
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-badges .badge,
.hero-tags .tag,
.hero-pills .pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #d8e3f3;
    background: rgba(255,255,255,0.85);
    color: #0b3d91;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
}

/* melhora leitura e evita que a foto invada a área dos cards */
.hero-bottom-wave,
.hero-stripe,
.hero-curves {
    position: relative;
    z-index: 4;
}

.hero + section,
.hero-section + section,
.hero-banner + section {
    position: relative;
    z-index: 5;
}

/* tablet */
@media (max-width: 1199px) {
    .hero-grid,
    .hero-inner,
    .hero-content-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr) !important;
        gap: 30px !important;
    }

    .hero-media,
    .hero-visual,
    .hero-photo-wrap,
    .hero-image-wrap,
    .hero-portrait-wrap,
    .hero-figure {
        min-height: 460px !important;
    }

    .hero-photo,
    .hero-image,
    .hero-portrait,
    .hero-media img,
    .hero-visual img,
    .hero-photo-wrap img,
    .hero-image-wrap img,
    .hero-portrait-wrap img,
    .hero-figure img {
        max-height: 500px !important;
    }
}

/* mobile */
@media (max-width: 991px) {
    .hero,
    .hero-section,
    .hero-banner {
        background-image:
            linear-gradient(
                180deg,
                rgba(255,255,255,0.96) 0%,
                rgba(255,255,255,0.92) 30%,
                rgba(255,255,255,0.76) 62%,
                rgba(255,255,255,0.38) 100%
            ),
            url('/assets/background-3.png') !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    .hero-grid,
    .hero-inner,
    .hero-content-wrap {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .hero-content,
    .hero-copy,
    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-media,
    .hero-visual,
    .hero-photo-wrap,
    .hero-image-wrap,
    .hero-portrait-wrap,
    .hero-figure {
        order: 2;
        min-height: auto !important;
        justify-content: center !important;
        align-items: flex-end !important;
        padding-top: 8px;
    }

    .hero-photo,
    .hero-image,
    .hero-portrait,
    .hero-media img,
    .hero-visual img,
    .hero-photo-wrap img,
    .hero-image-wrap img,
    .hero-portrait-wrap img,
    .hero-figure img {
        max-height: 420px !important;
        max-width: min(100%, 360px) !important;
    }
}

@media (max-width: 767px) {
    .hero-photo,
    .hero-image,
    .hero-portrait,
    .hero-media img,
    .hero-visual img,
    .hero-photo-wrap img,
    .hero-image-wrap img,
    .hero-portrait-wrap img,
    .hero-figure img {
        max-height: 360px !important;
        max-width: min(100%, 310px) !important;
    }

    .hero-badges,
    .hero-tags,
    .hero-pills {
        gap: 8px;
    }

    .hero-badges .badge,
    .hero-tags .tag,
    .hero-pills .pill {
        font-size: 12px;
        min-height: 34px;
        padding: 0 12px;
    }
}
/* END HERO HOTFIX :: FOTO ENQUADRADA */

