/* ============================================================
   HOME V2 — AMP Site Redesign
   Prefixo: hv2- (zero conflito com CSS legado)
   Design: Pencil frame JlUuk (AMP_v2_Inicial)
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* --- CSS Variables (Design Tokens) --- */
:root {
    --hv2-green-dark: #00573D;
    --hv2-green-deep: #0A4E36;
    --hv2-green-light: #91C14D;
    --hv2-white: #FFFFFF;
    --hv2-text-dark: #1A1A1A;
    --hv2-text-secondary: #666666;
    --hv2-bg-light: #F5F5F5;
    --hv2-dark-bg: #1A1A1A;
    --hv2-font: 'Montserrat', sans-serif;
    --hv2-max-width: 1440px;
    --hv2-padding-x: 80px;
}

.hv2-hidden { display: none !important; }

/* Com a navbar fixa, ancoras (#id) parariam atras dela — compensa a altura. */
html {
    scroll-padding-top: 110px;
}

/* --- Reset for V2 scope --- */
.hv2-page {
    font-family: var(--hv2-font);
    color: var(--hv2-text-dark);
    line-height: 1.5;
    /* overflow-x: hidden cria contexto de scroll e anula o position:sticky da
       navbar. 'clip' corta o excesso horizontal sem criar esse contexto.
       A linha 'hidden' fica como fallback para navegadores antigos. */
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100vw;
}
/* Anular padding assimetrico do body (style.css: 0 50px 0 150px) */
body:has(.hv2-page) {
    padding: 0 !important;
    margin: 0 !important;
}
#main-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
.hv2-page *, .hv2-page *::before, .hv2-page *::after {
    box-sizing: border-box;
}
.hv2-page img {
    max-width: 100%;
    height: auto;
}
.hv2-page a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.hv2-page a:hover {
    opacity: 0.85;
}

/* ============================================================
   1. HEADER
   ============================================================ */

/* Antemenu — barra verde topo */
.hv2-antemenu {
    background: var(--hv2-green-dark);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--hv2-padding-x);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}
.hv2-antemenu__social {
    display: flex;
    align-items: center;
    gap: 18px;
}
.hv2-antemenu__social a {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    transition: color 0.2s, transform 0.2s;
}
.hv2-antemenu__social a:hover {
    color: #FFFFFF !important;
    transform: scale(1.18);
}
/* Redes sociais em cores puras da marca (ajuste 15/09/2026) */
.hv2-antemenu__social a[href*="instagram"] i,
.hv2-antemenu__social a[href*="facebook"] i,
.hv2-antemenu__social a[href*="youtube"] i,
.hv2-antemenu__social a[href*="linkedin"] i {
    font-size: 17px;
    transition: filter 0.2s ease;
}
.hv2-antemenu__social a[href*="instagram"] i {
    color: #E4405F; /* fallback sem background-clip */
    background: linear-gradient(45deg, #FFDC80 0%, #F77737 22%, #E4405F 50%, #C13584 72%, #9B3FD6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hv2-antemenu__social a[href*="facebook"] i { color: #1877F2; }
.hv2-antemenu__social a[href*="youtube"] i  { color: #FF0000; }
.hv2-antemenu__social a[href*="linkedin"] i { color: #0A66C2; }
.hv2-antemenu__social a[href*="instagram"]:hover i,
.hv2-antemenu__social a[href*="facebook"]:hover i,
.hv2-antemenu__social a[href*="youtube"]:hover i,
.hv2-antemenu__social a[href*="linkedin"]:hover i {
    filter: brightness(1.2) saturate(1.15);
}
.hv2-antemenu__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hv2-antemenu__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--hv2-font);
    color: #FFFFFF !important;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
}
.hv2-antemenu__btn--medico {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}
.hv2-antemenu__btn--medico:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-1px);
    color: #FFFFFF !important;
}
.hv2-antemenu__btn--estudante {
    background: var(--hv2-green-light);
    color: #FFFFFF !important;
    border-color: var(--hv2-green-light);
}
.hv2-antemenu__btn--estudante:hover {
    background: #9dd155;
    border-color: #9dd155;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(145,193,77,0.4);
    color: #FFFFFF !important;
}
.hv2-antemenu__toplink {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.2px;
}
.hv2-antemenu__toplink:hover {
    color: #FFFFFF !important;
}
.hv2-antemenu__toplink i {
    font-size: 10px;
    opacity: 0.7;
}

/* Marca da AMB (instituicao mae) no antemenu — chip branco para preservar as
   cores oficiais da marca sobre o verde escuro (ajuste 15/09/2026). */
.hv2-antemenu__amb {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 4px 10px;
    margin-right: 4px;
    text-decoration: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.hv2-antemenu__amb:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}
.hv2-antemenu__amb img {
    height: 26px;
    width: auto;
    display: block;
}
.hv2-antemenu__amb-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--hv2-green-dark);
    white-space: nowrap;
}

/* Com o nome oficial completo do Congresso o antemenu estoura a largura em
   telas medias/pequenas. O toplink do Congresso sai primeiro — continua
   acessivel pelo menu hamburguer. */
@media (max-width: 1400px) {
    .hv2-antemenu__toplink--congresso,
    .hv2-antemenu__sep--congresso {
        display: none;
    }
}
@media (max-width: 860px) {
    .hv2-antemenu__amb-label {
        display: none;
    }
    .hv2-antemenu__amb {
        padding: 4px 8px;
    }
}

/* Navbar */
.hv2-navbar {
    background: var(--hv2-white);
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 8px var(--hv2-padding-x);
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    gap: 20px;
}
.hv2-navbar__logo {
    flex-shrink: 0;
}
.hv2-navbar__logo img {
    height: 76px;
    width: auto;
    transition: height 0.25s ease;
}

/* Estado compacto da navbar fixa apos a rolagem (ajuste 15/09/2026).
   A classe e alternada por JS no includes/header.blade.php. */
.hv2-navbar {
    transition: padding 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}
.hv2-navbar--scrolled {
    min-height: 64px;
    padding-top: 2px;
    padding-bottom: 2px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.10);
}
.hv2-navbar--scrolled .hv2-navbar__logo img {
    height: 54px;
}
.hv2-navbar--scrolled .hv2-nav__link {
    height: 32px;
}

/* Nav items — permite 2 linhas, alinhado a esquerda */
.hv2-nav {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 2px;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    flex: 1;
    justify-content: flex-start;
}
.hv2-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}
.hv2-nav__break {
    flex-basis: 100%;
    height: 0;
    list-style: none;
}
.hv2-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hv2-text-dark);
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.2s;
    height: 38px;
}
.hv2-nav__link:hover {
    color: var(--hv2-green-dark);
    background: rgba(0,87,61,0.06);
    opacity: 1;
}
.hv2-nav__ico {
    font-size: 14px;
    color: var(--hv2-green-dark);
    opacity: 0.5;
    width: 16px;
    text-align: center;
}
.hv2-nav__link:hover .hv2-nav__ico {
    opacity: 0.8;
}
.hv2-nav__arrow {
    font-size: 8px;
    opacity: 0.35;
    margin-left: 2px;
    transition: transform 0.2s;
}
.hv2-nav__item:hover .hv2-nav__arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.hv2-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
    padding: 8px 0;
    z-index: 1001;
    border: 1px solid rgba(0,0,0,0.06);
    animation: hv2DropFade 0.18s ease-out;
}
@keyframes hv2DropFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.hv2-nav__item--has-dropdown:hover .hv2-dropdown {
    display: block;
}
.hv2-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
    color: var(--hv2-text-dark);
    transition: all 0.15s;
}
.hv2-dropdown__item:hover {
    background: rgba(0,87,61,0.06);
    color: var(--hv2-green-dark);
    opacity: 1;
}
.hv2-dropdown__item i {
    font-size: 15px;
    color: var(--hv2-green-dark);
    opacity: 0.45;
    width: 18px;
    text-align: center;
}
.hv2-dropdown__item:hover i {
    opacity: 0.8;
}

/* Hamburger */
.hv2-navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}
.hv2-navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hv2-text-dark);
    border-radius: 2px;
    transition: transform 0.3s;
}

/* Mobile menu */
.hv2-mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    padding: 16px var(--hv2-padding-x) 40px;
    overflow-y: auto;
}
.hv2-mobile-menu.active {
    display: block;
}
.hv2-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hv2-mobile-menu ul li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--hv2-text-dark);
    border-bottom: 1px solid #f0f0f0;
}
.hv2-mobile-menu ul li > a i {
    color: var(--hv2-green-dark);
    opacity: 0.5;
    width: 20px;
    text-align: center;
}
.hv2-mobile__group {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}
.hv2-mobile__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hv2-green-dark);
    padding: 4px 0 8px;
}
.hv2-mobile__title i {
    width: 20px;
    text-align: center;
}
.hv2-mobile__group a {
    display: block;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 400;
    color: var(--hv2-text-dark);
}

/* ============================================================
   2. HERO BANNER
   ============================================================ */
.hv2-hero {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.hv2-hero .owl-carousel {
    margin: 0;
    padding: 0;
}
.hv2-hero .owl-stage-outer {
    overflow: hidden;
}
.hv2-hero .owl-carousel,
.hv2-hero .owl-stage-outer,
.hv2-hero .owl-stage,
.hv2-hero .owl-item {
    height: 100%;
}
.hv2-hero__slide {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    cursor: pointer;
}
/* Barra de info abaixo do banner removida em 21/09/2026 (duplicava a arte). */

/* Hero nav arrows — posicionadas relativo ao .hv2-hero */
.hv2-hero {
    position: relative;
}
.hv2-hero .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
    z-index: 10;
}
.hv2-hero .owl-prev,
.hv2-hero .owl-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13) !important;
    border: 1px solid rgba(255,255,255,0.27) !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    pointer-events: auto;
    transition: background 0.2s;
}
.hv2-hero .owl-prev:hover,
.hv2-hero .owl-next:hover {
    background: rgba(255,255,255,0.25) !important;
}

/* Hero dots */
.hv2-hero .owl-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.hv2-hero .owl-dot span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    display: block;
    transition: all 0.3s;
}
.hv2-hero .owl-dot.active span {
    width: 10px;
    height: 10px;
    background: #fff;
}

/* ============================================================
   3. BENEFITS SECTION
   Desde 24/09/2026 usado so por home-anterior.blade.php (backup).
   Apagar junto com aquela view (tambem nos @media mais abaixo).
   ============================================================ */
.hv2-benefits {
    background: var(--hv2-green-dark);
    padding: 60px var(--hv2-padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.hv2-benefits__title {
    text-align: center;
}
.hv2-benefits__title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.hv2-benefits__title p {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin: 0;
}
.hv2-benefits__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}
.hv2-benefits__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 240px;
    height: 140px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}
.hv2-benefits__box:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}
.hv2-benefits__box img {
    height: 72px;
    width: auto;
}
.hv2-benefits__box span {
    font-size: 11px;
    color: rgba(255,255,255,0.67);
}

/* ============================================================
   4. BLOCO NOTICIAS
   ============================================================ */
.hv2-news {
    background: var(--hv2-white);
    padding: 60px var(--hv2-padding-x);
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.hv2-news__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}
.hv2-news__header-left {
    flex-shrink: 0;
}
.hv2-news__header-right {
    flex: 1;
    text-align: right;
}
.hv2-news__label {
    font-size: 14px;
    font-weight: 400;
    color: var(--hv2-green-dark);
    margin: 0 0 4px;
}
.hv2-news__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--hv2-text-dark);
    margin: 0;
}
.hv2-news__subtitle {
    font-size: 15px;
    font-weight: 400;
    color: var(--hv2-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* News cards */
.hv2-news__carousel {
    width: 100%;
}
.hv2-news__card {
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 380px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hv2-news__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.hv2-news__card-img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}
.hv2-news__card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hv2-news__card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--hv2-green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.hv2-news__card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--hv2-text-dark);
    line-height: 1.4;
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hv2-news__card-date {
    font-size: 12px;
    color: var(--hv2-text-secondary);
    margin-top: 12px;
}

/* News carousel nav */
.hv2-news__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hv2-news__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.hv2-news__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #CCCCCC;
    cursor: pointer;
    transition: all 0.3s;
}
.hv2-news__dot--active {
    width: 10px;
    height: 10px;
    background: var(--hv2-green-dark);
}
.hv2-news__arrows {
    display: flex;
    gap: 8px;
}
.hv2-news__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.2s;
}
.hv2-news__arrow--prev {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--hv2-text-dark);
}
.hv2-news__arrow--next {
    background: var(--hv2-green-dark);
    color: #fff;
}
.hv2-news__arrow:hover {
    opacity: 0.8;
}

/* News CTA */
.hv2-news__cta-row {
    display: flex;
    justify-content: center;
}
.hv2-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--hv2-green-dark);
    color: var(--hv2-green-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--hv2-font);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}
.hv2-btn-outline:hover {
    background: var(--hv2-green-dark);
    color: #fff;
    opacity: 1;
}
.hv2-btn-outline i {
    font-size: 14px;
}

/* ============================================================
   5. PODCAST SECTION
   ============================================================ */
.hv2-podcast {
    background: var(--hv2-white);
    padding: 40px var(--hv2-padding-x);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hv2-podcast__banner {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--hv2-green-dark);
    position: relative;
    height: 240px;
    display: flex;
}
.hv2-podcast__left {
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 380px;
    flex-shrink: 0;
    z-index: 1;
}
.hv2-podcast__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,0,0,0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
}
.hv2-podcast__badge i {
    color: #ff4444;
}
.hv2-podcast__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hv2-podcast__title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.hv2-podcast__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.53);
    margin: 0;
}
.hv2-podcast__listen {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hv2-green-light);
    font-size: 13px;
    font-weight: 600;
}
.hv2-podcast__listen i {
    font-size: 11px;
}
.hv2-podcast__right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 40px;
    z-index: 1;
}
.hv2-podcast__thumb {
    width: 280px;
    height: 157px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hv2-podcast__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hv2-podcast__mic {
    position: absolute;
    right: 60px;
    top: 0;
    font-size: 260px;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
    line-height: 1;
}

/* ============================================================
   6. PUBLICACOES / REVISTAS
   ============================================================ */
.hv2-publicacoes {
    background: var(--hv2-green-deep);
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.hv2-publicacoes__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
}
.hv2-publicacoes__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hv2-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--hv2-font);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255,255,255,0.73);
}
.hv2-tab:hover {
    border-color: rgba(255,255,255,0.4);
}
.hv2-tab--active {
    background: #fff;
    color: var(--hv2-dark-bg);
    font-weight: 600;
}
.hv2-publicacoes__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}
.hv2-revista {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 300px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s;
    perspective: 800px;
    cursor: pointer;
}
.hv2-revista:hover {
    transform: translateY(-12px);
    opacity: 1;
}
.hv2-revista__cover {
    width: 260px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.15),
        0 20px 50px rgba(0,0,0,0.25);
    transition:
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
    will-change: transform, box-shadow;
    position: relative;
}
.hv2-revista:hover .hv2-revista__cover {
    box-shadow:
        0 8px 20px rgba(0,0,0,0.2),
        0 40px 70px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.08);
    transform: scale(1.03) translateZ(20px);
}
/* Reflexo sutil no topo */
.hv2-revista__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0) 40%,
        rgba(0,0,0,0) 60%,
        rgba(0,0,0,0.08) 100%
    );
    pointer-events: none;
    border-radius: 12px;
    transition: opacity 0.4s;
}
.hv2-revista:hover .hv2-revista__cover::after {
    opacity: 0.7;
}
.hv2-revista__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.hv2-revista:hover .hv2-revista__cover img {
    transform: scale(1.04);
}
.hv2-revista__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hv2-revista:hover .hv2-revista__info {
    transform: translateY(-4px);
}
.hv2-revista__name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.2px;
}
.hv2-revista__edition {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    transition: color 0.3s;
}
.hv2-revista:hover .hv2-revista__edition {
    color: rgba(255,255,255,0.7);
}
.hv2-revista__link {
    font-size: 12px;
    font-weight: 600;
    color: var(--hv2-green-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}
.hv2-revista:hover .hv2-revista__link {
    gap: 8px;
}
/* BioScience cover com logo */
.hv2-revista__cover--bio {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 30px;
}
.hv2-revista__cover--bio img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.hv2-revista:hover .hv2-revista__cover--bio img {
    transform: scale(1.06);
}

/* ============================================================
   7. BIOSCIENCE BANNER
   ============================================================ */
.hv2-bioscience-wrap {
    background: #cbcbcb;
    padding: 32px var(--hv2-padding-x);
}
.hv2-bioscience {
    border-radius: 16px;
    overflow: hidden;
    background: #00402B;
    border: 3px solid var(--hv2-green-light);
    height: 130px;
    display: flex;
    position: relative;
}
.hv2-bioscience__collage {
    width: 520px;
    height: 130px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.hv2-bioscience__collage img {
    height: 100%;
    object-fit: cover;
}
.hv2-bioscience__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, #00402B 100%);
}
.hv2-bioscience__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px 0 44px;
}
.hv2-bioscience__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--hv2-green-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.hv2-bioscience__logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}
.hv2-bioscience__text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.hv2-bioscience__text p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.hv2-bioscience__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--hv2-font);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.hv2-bioscience__cta:hover {
    background: rgba(255,255,255,0.18);
}

/* ============================================================
   8. WEB STORIES
   ============================================================ */
.hv2-stories {
    background: var(--hv2-bg-light);
    padding: 60px var(--hv2-padding-x);
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.hv2-stories__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--hv2-text-dark);
    margin: 0;
}
.hv2-stories__subtitle {
    font-size: 16px;
    color: var(--hv2-text-secondary);
    margin: -16px 0 0;
}
/* Carrossel (rodada jul/2026 — antes era .hv2-stories__row com flex-wrap) */
.hv2-stories__carousel {
    width: 100%;
}
.hv2-story {
    display: block;
    width: 100%;
    height: 370px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--hv2-green-dark);
}

/* Nav do carrossel de stories — espelha .hv2-news__nav */
.hv2-stories__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hv2-stories__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.hv2-stories__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #CCCCCC;
    cursor: pointer;
    transition: all 0.3s;
}
.hv2-stories__dot--active {
    width: 10px;
    height: 10px;
    background: var(--hv2-green-dark);
}
.hv2-stories__arrows {
    display: flex;
    gap: 8px;
}
.hv2-stories__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.2s;
}
.hv2-stories__arrow--prev {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--hv2-text-dark);
}
.hv2-stories__arrow--next {
    background: var(--hv2-green-dark);
    color: #fff;
}
.hv2-stories__arrow:hover {
    opacity: 0.8;
}
.hv2-story__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--hv2-green-dark);
}
.hv2-story__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px 12px;
}
.hv2-story__title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hv2-story__wa {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

/* ============================================================
   9. CTA SECTION
   ============================================================ */
.hv2-cta {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}
.hv2-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 20%;
}
.hv2-cta__overlay {
    position: absolute;
    inset: 0;
    /* Sem mascara na foto (esquerda limpa), escurece so a direita onde fica o texto */
    background: linear-gradient(90deg, transparent 0%, transparent 35%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.75) 100%);
}
.hv2-cta__content {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 0 var(--hv2-padding-x) 0 60px;
}
.hv2-cta__title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hv2-cta__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}
.hv2-cta__btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
}
.hv2-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    border-radius: 8px;
    background: var(--hv2-green-light);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--hv2-font);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.hv2-btn-solid:hover {
    background: #7fb939;
    opacity: 1;
}
.hv2-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
}
.hv2-cta__link:hover {
    color: #fff !important;
    opacity: 0.85;
}

/* ============================================================
   10. CONGRESSO BANNER
   ============================================================ */
.hv2-congresso-wrap {
    background: #fff;
    padding: 40px var(--hv2-padding-x);
}
.hv2-congresso {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    height: 220px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hv2-congresso:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    opacity: 1;
}
.hv2-congresso__photo {
    width: 55%;
    flex-shrink: 0;
    overflow: hidden;
}
.hv2-congresso__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% 5%;
}
.hv2-congresso__card {
    flex: 1;
    background: var(--hv2-green-dark);
    display: flex;
    align-items: center;
}
.hv2-congresso__card-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 40px;
}
.hv2-congresso__icon {
    font-size: 40px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
    line-height: 1;
}
.hv2-congresso__text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.hv2-congresso__text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 18px;
}
.hv2-congresso__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--hv2-green-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.hv2-footer {
    background: var(--hv2-dark-bg);
    padding: 72px var(--hv2-padding-x) 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: var(--hv2-font);
}
.hv2-footer__main {
    display: grid;
    grid-template-columns: 260px repeat(4, 1fr);
    align-items: start;
    gap: 40px;
    max-width: var(--hv2-max-width);
    margin: 0 auto;
    width: 100%;
}
.hv2-footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hv2-footer__col--brand {
    gap: 0;
    align-items: flex-start;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 40px;
}
.hv2-footer__col--brand img {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
}
.hv2-footer__addr-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.hv2-footer__addr {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.hv2-footer__phone {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 4px 0 0;
    font-weight: 500;
}
.hv2-footer__phone i {
    font-size: 11px;
    margin-right: 4px;
    color: var(--hv2-green-light);
}
.hv2-footer__social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: flex-start;
}
.hv2-footer__social a {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.hv2-footer__social a i {
    width: 15px;
    text-align: center;
}
.hv2-footer__social a:hover {
    background: var(--hv2-green-dark);
    color: #fff;
    transform: translateY(-2px);
}
/* Redes sociais em cores puras da marca (ajuste 15/09/2026) */
.hv2-footer__social a[href*="instagram"],
.hv2-footer__social a[href*="facebook"],
.hv2-footer__social a[href*="youtube"],
.hv2-footer__social a[href*="linkedin"] {
    color: #FFFFFF;
    font-size: 16px;
}
.hv2-footer__social a[href*="instagram"] {
    background: radial-gradient(circle at 28% 106%, #FDF497 0%, #FDF497 5%, #FD5949 45%, #D6249F 62%, #285AEB 92%);
}
.hv2-footer__social a[href*="facebook"] { background: #1877F2; }
.hv2-footer__social a[href*="youtube"]  { background: #FF0000; }
.hv2-footer__social a[href*="linkedin"] { background: #0A66C2; }
.hv2-footer__social a[href*="instagram"]:hover,
.hv2-footer__social a[href*="facebook"]:hover,
.hv2-footer__social a[href*="youtube"]:hover,
.hv2-footer__social a[href*="linkedin"]:hover {
    color: #FFFFFF;
    filter: brightness(1.12);
    transform: translateY(-2px);
}
.hv2-footer__social a[href*="instagram"]:hover {
    background: radial-gradient(circle at 28% 106%, #FDF497 0%, #FDF497 5%, #FD5949 45%, #D6249F 62%, #285AEB 92%);
}
.hv2-footer__social a[href*="facebook"]:hover { background: #1877F2; }
.hv2-footer__social a[href*="youtube"]:hover  { background: #FF0000; }
.hv2-footer__social a[href*="linkedin"]:hover { background: #0A66C2; }
.hv2-footer__col h4 {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hv2-footer__col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 2px;
    background: var(--hv2-green-light);
    border-radius: 2px;
}
.hv2-footer__col a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: block;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1.4;
}
.hv2-footer__col a:hover {
    color: var(--hv2-green-light);
    transform: translateX(3px);
}
.hv2-footer__divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    max-width: var(--hv2-max-width);
    margin: 0 auto;
    width: 100%;
}
.hv2-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--hv2-max-width);
    margin: 0 auto;
    width: 100%;
}
.hv2-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hv2-footer__bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}
.hv2-footer__dot {
    color: rgba(255,255,255,0.2);
}
/* ".hv2-page a" (color:inherit) tem a mesma especificidade de classe+elemento
   que uma classe sozinha perde no desempate — escopado com o pai pra vencer. */
.hv2-footer .hv2-footer__privacy {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}
.hv2-footer .hv2-footer__privacy:hover {
    color: var(--hv2-green-light);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1200px) {
    :root {
        --hv2-padding-x: 40px;
    }
    .hv2-congresso__photo {
        width: 45%;
    }
}

@media (max-width: 991px) {
    :root {
        --hv2-padding-x: 24px;
    }

    /* Navbar */
    .hv2-nav {
        display: none;
    }
    .hv2-navbar__hamburger {
        display: flex;
    }

    /* Hero */
    .hv2-hero, .hv2-hero__slide {
        height: 400px;
    }
    .hv2-hero .owl-nav {
        height: 400px;
    }
    /* Benefits */
    .hv2-benefits__title h2,
    .hv2-benefits__title p {
        font-size: 24px;
    }
    .hv2-benefits__logos {
        gap: 16px;
    }
    .hv2-benefits__box {
        width: calc(50% - 8px);
    }

    /* News */
    .hv2-news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .hv2-news__header-right {
        text-align: left;
    }
    .hv2-news__title {
        font-size: 28px;
    }

    /* Podcast */
    .hv2-podcast__banner {
        flex-direction: column;
        height: auto;
    }
    .hv2-podcast__left {
        width: 100%;
        padding: 30px;
    }
    .hv2-podcast__right {
        padding: 0 30px 30px;
        flex-direction: column;
    }
    .hv2-podcast__thumb {
        width: 100%;
        height: 180px;
    }
    .hv2-podcast__mic {
        display: none;
    }

    /* Publicacoes */
    .hv2-publicacoes {
        padding: 60px 24px;
    }
    .hv2-publicacoes__title {
        font-size: 28px;
    }
    .hv2-revista__cover {
        width: 220px;
        height: 300px;
    }

    /* Bioscience */
    .hv2-bioscience {
        flex-direction: column;
        height: auto;
    }
    .hv2-bioscience__collage {
        width: 100%;
        height: 100px;
    }
    .hv2-bioscience__content {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        text-align: center;
    }

    /* Stories */
    .hv2-stories__title {
        font-size: 28px;
    }
    .hv2-story {
        height: 300px;
    }

    /* CTA */
    .hv2-cta {
        height: auto;
        min-height: 400px;
    }
    .hv2-cta__content {
        position: relative;
        width: 100%;
        padding: 60px 24px;
        background: rgba(0,0,0,0.7);
    }
    .hv2-cta__title {
        font-size: 26px;
    }

    /* Congresso */
    .hv2-congresso {
        flex-direction: column;
        height: auto;
    }
    .hv2-congresso__photo {
        width: 100%;
        height: 180px;
    }
    .hv2-congresso__card-inner {
        padding: 30px 24px;
    }

    /* Footer */
    .hv2-footer__main {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }
    .hv2-footer__col {
        width: calc(50% - 16px);
    }
    .hv2-footer__col--brand {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-right: 0;
        padding-bottom: 32px;
    }
    .hv2-footer__col--brand img {
        margin-bottom: 0;
    }
    .hv2-footer__social {
        margin-top: 12px;
    }
    .hv2-footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .hv2-footer__bottom-left {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hv2-hero, .hv2-hero__slide {
        height: 300px;
    }

    .hv2-benefits__title h2,
    .hv2-benefits__title p {
        font-size: 20px;
    }
    .hv2-benefits__box {
        width: 100%;
        height: 80px;
        flex-direction: row;
        gap: 16px;
    }
    .hv2-benefits__box img {
        height: 36px;
    }

    .hv2-publicacoes__grid {
        flex-direction: column;
        align-items: center;
    }

    .hv2-story {
        height: 250px;
    }

    .hv2-footer__col {
        width: 100%;
    }
    .hv2-footer__col--brand {
        flex-direction: column;
        gap: 16px;
    }

    .hv2-antemenu {
        padding: 0 16px;
    }
    .hv2-antemenu__social {
        gap: 12px;
    }
}

/* ============================================================
   HOME set/2026 — Servicos x Beneficios x Institucional
   (aprovada em 24/09/2026; veio de home-proposta.css)
   ============================================================ */

/* --- Rotulo de secao (SERVICOS / INSTITUCIONAL) --- */
.hv2-sec-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--hv2-green-dark);
    margin: 0 0 8px;
}
.hv2-sec-label--light {
    color: var(--hv2-green-light);
}

/* ============================================================
   SERVICOS — faixa verde com os logotipos (o que a AMP faz)
   ============================================================ */
.hv2-servicos {
    background: var(--hv2-green-dark);
    padding: 60px var(--hv2-padding-x);
}
.hv2-servicos__inner,
.hv2-beneficios__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.hv2-servicos__head {
    text-align: center;
    margin-bottom: 36px;
}
.hv2-servicos__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.hv2-servicos__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    margin: 0;
}
.hv2-servicos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* .hv2-page na frente dos links: vence o ".hv2-page a{color:inherit}" do home.css */
/* Card = a caixa translucida da home atual, com texto e link embaixo do logo */
.hv2-servico,
.hv2-beneficio {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}
.hv2-servico:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.3);
}
.hv2-servico__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 128px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
}
.hv2-servico__logo:hover { opacity: 1; text-decoration: none; }
.hv2-servico__logo img {
    height: 72px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}
/* Marca em texto para quem nao tem logotipo (Centro de Eventos, Assessoria Juridica) */
.hv2-servico__logo--texto {
    gap: 12px;
    color: #fff;
}
.hv2-servico__logo--texto i {
    font-size: 38px;
    color: var(--hv2-green-light);
}
.hv2-servico__logo--texto span {
    font-family: var(--hv2-font);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    color: #fff;
}
.hv2-servico__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 22px 22px;
    flex: 1;
}
.hv2-servico__desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin: 0;
    flex: 1;
}
.hv2-servico__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
}
.hv2-page .hv2-servico__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hv2-green-light);
    text-decoration: none;
    transition: gap 0.2s;
}
.hv2-page .hv2-servico__cta:hover {
    color: var(--hv2-green-light);
    text-decoration: none;
    gap: 12px;
    opacity: 1;
}
.hv2-servico__cta i { font-size: 10px; }

/* ============================================================
   BENEFICIOS DO ASSOCIADO — faixa branca (o que so o socio tem)
   ============================================================ */
.hv2-beneficios {
    background: #fff;
    padding: 60px var(--hv2-padding-x);
}
.hv2-beneficios__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px 48px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hv2-beneficios__title {
    font-family: var(--hv2-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--hv2-text-dark);
    margin: 0 0 6px;
}
.hv2-beneficios__sub {
    font-size: 16px;
    color: var(--hv2-text-secondary);
    margin: 0;
}
.hv2-page .hv2-beneficios__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hv2-green-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.hv2-page .hv2-beneficios__btn:hover {
    background: var(--hv2-green-deep);
    color: #fff;
    text-decoration: none;
    opacity: 1;
}
.hv2-beneficios__btn i { font-size: 11px; }
.hv2-beneficios__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 20px;
}
/* Os logotipos sao brancos: o card de beneficio e verde solido */
.hv2-beneficio {
    background: var(--hv2-green-dark);
    border-color: var(--hv2-green-dark);
}
.hv2-beneficio:hover {
    background: var(--hv2-green-deep);
}
.hv2-beneficio__tag {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--hv2-green-light);
    color: var(--hv2-green-deep);
    line-height: 1.3;
}
.hv2-beneficios__lista {
    background: var(--hv2-bg-light);
    border-radius: 12px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
}
.hv2-beneficios__lista h3 {
    font-family: var(--hv2-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hv2-green-dark);
    margin: 0 0 14px;
}
.hv2-beneficios__lista ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}
.hv2-beneficios__lista li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--hv2-text-dark);
}
.hv2-beneficios__lista li i {
    color: var(--hv2-green-light);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}
.hv2-page .hv2-beneficios__todos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--hv2-green-dark);
    text-decoration: none;
}
.hv2-page .hv2-beneficios__todos:hover {
    color: var(--hv2-green-deep);
    text-decoration: underline;
    opacity: 1;
}
.hv2-beneficios__todos i { font-size: 10px; }

/* ============================================================
   INSTITUCIONAL — faixa clara, sem cards
   ============================================================ */
.hv2-conheca {
    background: var(--hv2-bg-light);
    padding: 64px var(--hv2-padding-x);
}
.hv2-conheca__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}
.hv2-conheca__title {
    font-family: var(--hv2-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--hv2-text-dark);
    margin: 0 0 16px;
}
.hv2-conheca__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--hv2-text-secondary);
    margin: 0 0 24px;
}
.hv2-conheca__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--hv2-green-dark);
    color: var(--hv2-green-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.hv2-conheca__btn:hover {
    background: var(--hv2-green-dark);
    color: #fff;
    text-decoration: none;
    opacity: 1;
}
.hv2-conheca__btn i { font-size: 11px; }
.hv2-conheca__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.hv2-conheca__group {
    display: flex;
    flex-direction: column;
}
.hv2-conheca__group-title {
    font-family: var(--hv2-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hv2-green-dark);
    margin: 0 0 4px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hv2-green-light);
}
.hv2-conheca__group a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--hv2-text-dark);
    border-bottom: 1px solid #E4E4E4;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.hv2-conheca__group a:hover {
    color: var(--hv2-green-dark);
    padding-left: 4px;
    text-decoration: none;
    opacity: 1;
}
.hv2-conheca__group a i {
    width: 18px;
    text-align: center;
    color: var(--hv2-green-dark);
    opacity: 0.55;
    font-size: 15px;
}
.hv2-conheca__group a i.hv2-conheca__ext {
    width: auto;
    font-size: 9px;
    opacity: 0.4;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1200px) {
    .hv2-conheca__inner { gap: 40px; }
    .hv2-servico__logo img { height: 60px; }
    .hv2-servico__logo--texto span { font-size: 18px; }
    .hv2-beneficios__grid { grid-template-columns: 1fr 1fr; }
    .hv2-beneficios__lista { grid-column: 1 / -1; }
    .hv2-beneficios__lista ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px 32px;
    }
}

@media (max-width: 991px) {
    .hv2-servicos,
    .hv2-beneficios,
    .hv2-conheca { padding: 48px var(--hv2-padding-x); }
    .hv2-servicos__title,
    .hv2-beneficios__title { font-size: 26px; }
    .hv2-servicos__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hv2-beneficios__grid { gap: 16px; }
    .hv2-conheca__inner { grid-template-columns: 1fr; gap: 32px; }
    .hv2-conheca__title { font-size: 26px; }
}

@media (max-width: 575px) {
    .hv2-servicos__head { margin-bottom: 24px; }
    .hv2-servicos__title,
    .hv2-beneficios__title { font-size: 22px; }
    .hv2-servicos__sub,
    .hv2-beneficios__sub { font-size: 14px; }
    /* Card compacto: logotipo a esquerda, texto a direita */
    .hv2-servicos__grid,
    .hv2-beneficios__grid { grid-template-columns: 1fr; gap: 12px; }
    .hv2-servico,
    .hv2-beneficio { flex-direction: row; }
    .hv2-servico__logo {
        width: 118px;
        height: auto;
        flex-shrink: 0;
        padding: 14px 12px;
        border-bottom: 0;
        border-right: 1px solid rgba(255,255,255,0.12);
    }
    .hv2-servico__logo img { height: auto; max-height: 52px; }
    .hv2-servico__logo--texto { flex-direction: column; gap: 6px; }
    .hv2-servico__logo--texto i { font-size: 26px; }
    .hv2-servico__logo--texto span { font-size: 14px; text-align: center; }
    .hv2-servico__body {
        align-items: flex-start;
        text-align: left;
        gap: 8px;
        padding: 14px 16px;
    }
    .hv2-servico__desc { font-size: 13px; }
    .hv2-servico__ctas { justify-content: flex-start; }
    .hv2-beneficios__head { margin-bottom: 20px; }
    .hv2-beneficios__actions { width: 100%; }
    .hv2-beneficios__btn { width: 100%; justify-content: center; }
    .hv2-beneficios__lista { padding: 20px; }
    .hv2-beneficios__lista ul { display: flex; }
    .hv2-conheca__right { grid-template-columns: 1fr; gap: 24px; }
    .hv2-conheca__title { font-size: 23px; }
}
