@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #004aad; /* Azul principal - ajuste conforme marca */
    --secondary-color: #00c853; /* Verde - ajuste conforme marca */
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --border-color: #eaeaea;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-height: 70px;
    --mobile-header-height: 60px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
}


a {
	text-decoration: none;
}


/* ... (código anterior mantido) ... */

/* Header do Menu Mobile com botão de fechar */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    height: var(--mobile-header-height);
    position: relative;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-brand .logo-text {
    font-size: 20px;
    font-weight: 700;
}

.mobile-time {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Botão de fechar no menu mobile */
.mobile-close {
    cursor: pointer;
    font-size: 32px;
    color: var(--text-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-close:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-50%) rotate(90deg);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

/* Ajustes para o conteúdo do menu mobile */
.mobile-nav {
    list-style: none;
    padding: 20px 0;
    flex: 1;
}

.mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-arrow {
    font-size: 22px;
    transition: var(--transition);
    color: var(--text-light);
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.mobile-submenu {
    list-style: none;
    background: var(--bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 14px 20px 14px 45px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.mobile-submenu li a:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.mobile-submenu li a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding-left: 50px;
}

.mobile-submenu li a:hover:before {
    opacity: 1;
    left: 35px;
}


/* ... (restante do CSS anterior mantido) ... */

/* Media Queries - Tablet */
@media (min-width: 768px) {
    .mobile-menu {
        width: 450px;
    }
    
    .mobile-brand {
        gap: 20px;
    }
}

/* ... (restante do CSS anterior mantido) ... */



/***/
.title-home {
	font-weight: 700;
	line-height: 14px;
	font-size: 12px;
	color: #fff;
}

.description-home {
	font-weight: 400;
	color: #fff;
	font-size: 28px;
	line-height: 32px;
}


/***/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #00b247;
    transform: translateY(-2px);
}

/* Header e Navegação com animação de scroll */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    z-index: 999;
    transition: var(--transition);
    transform: translateY(0);
    opacity: 1;
}

/* Estado inicial - visível no topo */
.header.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Quando esconder no início do scroll */
.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

/* Quando fixar após rolagem */
.header.fixed {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    position: relative;
}

.nav-brand .logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text img {
    max-width: 158px;
    height: auto;
    image-rendering: -webkit-optimize-contrast; /* Melhora qualidade em alguns navegadores */
    image-rendering: crisp-edges;
}

/* Menu Desktop (oculto em mobile) */
.desktop-menu,
.desktop-cta {
    display: none;
}

/* Botão Mobile Toggle - CORRIGIDO */
.mobile-toggle {
    cursor: pointer;
    font-size: 28px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: var(--transition);
    position: relative;
}

.mobile-toggle:hover {
    color: var(--secondary-color);
}

.menu-icon, .close-icon {
    position: absolute;
    transition: opacity 0.3s ease;
}

.close-icon {
    opacity: 0;
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    height: var(--mobile-header-height);
}

.mobile-brand .logo-text {
    font-size: 20px;
    font-weight: 700;
}

.mobile-time {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-nav {
    list-style: none;
    padding: 20px 0;
    flex: 1;
}

.mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-arrow {
    font-size: 20px;
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    background: var(--bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mobile-submenu li a:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    padding-left: 45px;
}


/* Media Queries - Tablet */
@media (min-width: 768px) {
    .mobile-menu {
        width: 400px;
    }
    
    .content-placeholder h2 {
        font-size: 40px;
    }
}



/* Media Queries - Large Desktop */
@media (min-width: 1200px) {
    .desktop-nav {
        gap: 40px;
    }
}



/* CONTAINER */

/* CONTENT */

/***/
.section-100 {
	width: 100%;
	overflow: hidden;
	
}

.section-content,
.content {
	width: 90%;
	margin: 0 auto;
}




/* CAROUSEL */
.acs-carousel {
    position: relative;
    width: 100%;
    height: 91vh;
    overflow: hidden;
	margin-top: 70px;
}

/* Slides */
.acs-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.acs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease, transform 1.2s ease;
    transform: scale(1.03);
}

.acs-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Imagem (picture + img) */
.acs-slide picture,
.acs-slide .img-fundo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.acs-slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay com transição */
.acs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.4) 45%,
        rgba(0,0,0,0) 70%
    );
    z-index: 1;
}

/* Conteúdo */
.acs-slide-content {
	width: 100%;
	position: absolute;
	bottom: 40%;
	/*
    left: 8%;
    
    max-width: 520px;
	*/
    color: #fff;
    z-index: 2;
}

.acs-slide-content h2 {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.acs-slide-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.acs-btn {
    display: inline-block;
    background: #300378 !important;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background .3s ease, transform .3s ease;
}

.acs-btn:hover {
    background: #003580;
    transform: translateY(-2px);
}

/* Navegação */
.acs-carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.acs-nav-item {
    width: 24px;
    height: 4px;
    background: rgba(255,255,255,.6);
    transition: all .4s ease;
    cursor: pointer;
}

.acs-nav-item.active {
    width: 52px;
    background: #6000FA;
}

/* Mobile */
@media (max-width: 991px) {
    .acs-carousel {
        height: 56vh;
    }

    .acs-slide-content {
        left: 6%;
        right: 6%;
        bottom: 18%;
    }

    .acs-slide-content h2 {
        font-size: 2rem;
    }

    /* Garante foco central da imagem no mobile */
    .acs-slide picture img {
        object-position: center center;
    }
}










/* contact-index */
.contact-index {
	/*background: #333333;*/
	background: #390094;
}

/* Centralização vertical real */
.section-contact {
	display: flex;
	align-items: center;      /* vertical */
	justify-content: center;  /* horizontal */
	padding: 120px 20px;
}

.contact-list {
	width: 100%;
	max-width: 1100px; /* evita puxar pra esquerda/direita */
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* MOBILE */
.contact-block {
	text-align: center;
}

.contact-block h2 {
	color: #fff;
	margin-bottom: 12px;

	font-weight: 700;
	font-size: 30px;
	line-height: 32px;
}

.contact-block p {
	line-height: 1.44em;
	color: #fff;
}

.contact-block h3 {
	font-weight: 600;
	color: #fff;
	font-size: 0.75rem;
	margin-bottom: 12px;
}

.contact-block a {
	color: #fff;
	font-weight: 600;
	letter-spacing: -0.02em;
	padding: 4px 0;
	font-size: 1.125rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.contact-block a:has(svg).whatsapp svg {
	fill: #25d366;
}

.contact-block a:has(svg) svg {
	width: 17px;
}

.contact-block .item-mail {
	font-size: 0.875rem;
	font-weight: 600;
}




/**/



.bloco-servicos {
	padding-top: 74px;
    background-color: #300378;
    color: #fff;
    margin-bottom: 50px;

	background: linear-gradient(to bottom, #300378 60%, #fff 60%);
}

.servicos-header,
.convenios-header,
.home-news,
.home-news-other {
    max-width: 600px;
    margin-bottom: 48px;
}

.servicos-header h2,
.convenios-header h2,
.home-news h2,
.home-informativo h2,
.home-news-other h2 {
    font-weight: 700;
	font-style: normal;
	font-size: 12px;
	line-height: 14px;
	margin-bottom: 10px;
}

.servicos-header p,
.convenios-header p,
.home-news p,
.home-informativo p,
.home-news-other p {
    font-weight: 400;
	font-style: normal;
	font-size: 25px;
	line-height: 32px;
	color: #fff;
}



/* GRID */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.servico-card {
    position: relative;
    height: 330px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
	border-radius: 10px;
}

.servico-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

/* Overlay escuro */
.servico-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    transition: background .4s ease;
    z-index: 1;
}

/* Conteúdo */
.servico-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    transition: transform .4s ease;
	text-align: center;
}

.servico-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.servico-content p {
    font-size: .95rem;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    transition: opacity .4s ease, max-height .4s ease;
}

/* HOVER */
.servico-card:hover .servico-bg {
    transform: scale(1.08);
}

.servico-card:hover::after {
    background: rgba(0,0,0,.65);
}

.servico-card:hover .servico-content {
    transform: translateY(-10px);
}

.servico-card:hover .servico-content p {
    opacity: 1;
    max-height: 120px;
}

/* MOBILE */
@media (max-width: 991px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card {
        height: 220px;
    }

    .servico-content p {
        opacity: 1;
        max-height: none;
    }
}




/* NEWS */
.bloco-news {

}

.bloco-news .title-home {
	color: #000;
}

.bloco-news .description-name {
	color: #004aad;
}



/* CONVÊNIOS */
.bloco-convenios {
	width: 100%;
	background: #F8F8F8;
	overflow: hidden;
}

.convenios-header {
	margin-top: 40px;
}

.convenios-header .title-home {
	color: #000;
}

.convenios-header .description-name {
	color: #004aad;
}



/* ===== CONTAINER DO SLIDER COM NAVEGAÇÃO ===== */
.slider-convenios-container {
    position: relative;
    width: 100%;
    padding: 0 60px;
    margin: 40px 0;
}

.slider-convenios-wrapper {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

/* Botões de navegação */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-nav-btn:hover {
    background: #300378;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(48, 3, 120, 0.3);
}

.slider-nav-btn:hover svg {
    fill: white;
}

.slider-nav-btn svg {
    fill: #300378;
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Estados de foco para acessibilidade */
.slider-nav-btn:focus-visible {
    outline: 2px solid #300378;
    outline-offset: 2px;
}

/* Botão desabilitado (opcional) */
.slider-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.slider-nav-btn:disabled:hover {
    background: white;
    transform: translateY(-50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav-btn:disabled:hover svg {
    fill: #300378;
}

/* ===== SLIDER DE CONVÊNIOS (mantido com melhorias) ===== */
.slider-convenios {
    display: flex;
    gap: 24px;
    padding: 20px 0 40px;
    scroll-behavior: smooth;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-snap-type: x mandatory;
}

.slider-convenios::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slider-convenios a {
    flex: 0 0 auto;
    width: 332px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
    scroll-snap-align: start;
}

.slider-convenios a:hover {
    transform: translateY(-8px);
}

/* Card principal */
.slider-convenios-btn {
    display: flex;
    align-items: flex-start;
    background: #300378;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);*/
    border-radius: 16px;
    padding: 20px;
    gap: 20px;
    height: 100%;
    min-height: 180px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.slider-convenios-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4ff, #004aad);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-convenios a:hover .slider-convenios-btn {
    background: #3a0b8c;
    border-color: rgba(255, 255, 255, 0.3);
    /*box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);*/
}

.slider-convenios a:hover .slider-convenios-btn::before {
    opacity: 1;
}

/* Lado esquerdo - conteúdo */
.slider-convenios-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.slider-convenios-left h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-convenios-left p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Botão de ação */
.slider-convenios-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.slider-convenios a:hover .slider-convenios-left span {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    gap: 10px;
    padding-right: 14px;
}

.slider-convenios-left span svg {
    fill: white;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.slider-convenios a:hover .slider-convenios-left span svg {
    transform: translateX(4px);
}

/* Lado direito - ícone */
.slider-convenios-rigth {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.slider-convenios a:hover .slider-convenios-rigth {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.slider-convenios-rigth svg {
    fill: white;
    width: 32px;
    height: 32px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.slider-convenios a:hover .slider-convenios-rigth svg {
    opacity: 1;
}

/* Indicadores de scroll (opcional) */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: #300378;
    width: 24px;
    border-radius: 4px;
}

/* Responsividade */
@media (max-width: 1199px) {

	.slider-convenios a {
		width: 396px;
	}

}

@media (max-width: 992px) {
    .slider-convenios-container {
        padding: 0 50px;
    }
    
    .slider-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .slider-nav-btn svg {
        width: 22px;
        height: 22px;
    }

	.slider-convenios a {
		width: 275px;
	}
}

@media (max-width: 768px) {
    .slider-convenios-container {
        padding: 0 40px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-convenios {
        gap: 16px;
        padding: 16px 0 32px;
    }
    
    .slider-convenios a {
        width: 295px;
    }
    
    .slider-convenios-btn {
        padding: 16px;
        gap: 16px;
        min-height: 170px;
    }
    
    .slider-convenios-left h4 {
        font-size: 1rem;
    }
    
    .slider-convenios-left p {
        font-size: 0.8125rem;
    }
    
    .slider-convenios-left span {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }
    
    .slider-convenios-rigth {
        width: 48px;
        height: 48px;
    }
    
    .slider-convenios-rigth svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .slider-convenios-container {
        padding: 0 30px;
    }
    
    .slider-nav-btn {
        width: 36px;
        height: 36px;
        display: none; /* Esconde botões em mobile muito pequeno */
    }
    
    .slider-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Mostra botões se houver suporte a hover */
    @media (hover: hover) {
        .slider-nav-btn {
            display: flex;
        }
    }
    
    .slider-convenios {
        gap: 12px;
    }
    
    .slider-convenios a {
        width: 300px;
    }
    
    .slider-convenios-btn {
        padding: 14px;
        gap: 14px;
        min-height: 160px;
    }
    
    .slider-convenios-left h4 {
        font-size: 0.9375rem;
    }
    
    .slider-convenios-left p {
        font-size: 0.75rem;
        -webkit-line-clamp: 3;
    }
    
    .slider-convenios-left span {
        padding: 7px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .slider-convenios-left span svg {
        width: 14px;
        height: 14px;
    }
    
    .slider-convenios-rigth {
        width: 44px;
        height: 44px;
    }
    
    .slider-convenios-rigth svg {
        width: 24px;
        height: 24px;
    }
}


/* Ajuste para garantir que os botões fiquem visíveis */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex !important; /* Força display */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important; /* Garante visibilidade */
}

/* Remove o display: none do mobile */
@media (max-width: 480px) {
    .slider-nav-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
    }
    
    .slider-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}





/* NEWS */
.news-dest {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-dest ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Desktop: 3 cards lado a lado */
@media (min-width: 768px) {
    .news-dest ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .news-dest ul a {
        flex: 1;
        min-width: calc(33.333% - 14px); /* 3 cards com gap de 20px */
        margin-bottom: 30px;
    }
}

.news-dest a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-dest a:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
}

.news-dest a .post-thumbnail {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-dest a .post-thumbnail figure {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-dest a:hover .post-thumbnail figure {
    transform: scale(1.03);
}

.news-dest a .post-thumbnail img {
    width: 100%;
    height: 200px; /* Altura fixa para uniformidade */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-dest a:hover .post-thumbnail img {
    transform: scale(1.05);
}

.news-dest a .post-text {
    padding: 0 5px;
}

.news-dest a .post-text .post-meta {
    font-style: normal;
    font-weight: 500;
    color: #000;
    font-size: 12px;
    line-height: 14pt;
    margin-bottom: 10px;
    opacity: 0.8;
}

.news-dest a .post-text h2 {
    font-style: normal;
    font-weight: 700;
    color: #004aad;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.news-dest a:hover .post-text h2 {
    text-decoration: underline;
    color: #003580; /* Tom mais escuro no hover */
}

.news-dest a .post-text p {
    font-style: normal;
    font-weight: 400;
    color: #000;
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.news-dest a:hover .post-text p {
    color: #004aad;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-link .read-more-text {
    font-style: normal;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    transition: color 0.3s ease;
}

.news-dest a:hover .read-more-link .read-more-text {
    color: #004aad;
}

.read-more-link svg {
    width: 14px;
    fill: #004aad;
    opacity: 1;
    transform: rotate(180deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Transição mais suave */
}

.news-dest a:hover .read-more-link svg {
    margin-left: 10px;
    fill: #003580; /* Cor mais escura no hover */
    transform: rotate(180deg) translateX(5px); /* Desliza suavemente */
}

/* Ajustes para mobile */
@media (max-width: 767px) {
    .news-dest a .post-thumbnail img {
        height: 180px; /* Altura menor no mobile */
    }
    
    .news-dest ul {
        gap: 25px;
    }
}

/* Melhoria de acessibilidade: foco no teclado */
.news-dest a:focus {
    outline: 2px solid #004aad;
    outline-offset: 2px;
}



/* bloco informativo */
.bloco-informativo .title-home {
	color: #000;
}

.bloco-informativo .description-name {
	color: #004aad;
}


.home-informativo {
	
}



/* Bloco Informativo - Versão Melhorada */
.bloco-informativo {
    background: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.containercontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Lado Esquerdo - Texto */
.home-informativo {
    text-align: center;
    padding: 20px;
}


/* Lado Direito - Imagem */
.home-informativo-rigth {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.home-informativo-rigth img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(48, 3, 120, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.home-informativo-rigth img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Desktop - 992px e acima */
@media (min-width: 992px) {
    .bloco-informativo {
        padding: 80px 0;
    }
    
    .containercontent {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        padding: 0 40px;
    }
    
    .home-informativo {
        flex: 1;
        text-align: left;
        padding: 30px 30px 30px 0;
        margin: 0;
    }
    
    .title-home {
        font-size: 2.5rem;
        padding-bottom: 20px;
    }
    
    .title-home::after {
        left: 0;
        transform: none;
    }
    
    .description-name {
        font-size: 1.2rem;
        margin: 0;
        max-width: 500px;
    }
    
    .home-informativo-rigth {
        flex: 1;
        max-width: 500px;
        margin: 0;
    }
    
    .home-informativo-rigth img {
        max-height: 400px;
        object-fit: cover;
    }
}

/* Tablets - 768px a 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .containercontent {
        flex-direction: column;
        gap: 50px;
    }
    
    .home-informativo {
        max-width: 600px;
    }
    
    .home-informativo-rigth {
        max-width: 600px;
    }
}

/* Adicionando efeito visual extra */
.home-informativo {
    animation: fadeInUp 0.8s ease;
}

.home-informativo-rigth {
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* bloco-news-other */
.bloco-news-other {
	padding-top: 40px;
	background: #F8F8F8;
	overflow: hidden;
}


.bloco-news-other .title-home {
    color: #000;
}

.bloco-news-other .description-name {
    color: #004aad;
}


/* news-list */
.news-list a {
	margin-bottom: 30px;
}




/*=== single.php ===*/
.single-header {
	width: 100%;
	overflow: hidden;
    margin-top: 70px;
	background: #F8F8F8;
	padding-top: 40px;
	padding-bottom: 90px;
}




.breadcrumb {
    font-size: 1rem;
    color: #707070;
    line-height: 24px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #707070;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: #000; /* cor da seta */
}

.breadcrumb-arrow {
    width: 16px;
    height: 16px;
}





.single-titulo {
    margin-bottom: 25px;
}


.single-category {
    display: inline-block;
    text-align: center;
    background: #300378;
    color: white;
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 20px;
}



.entry-title {
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	font-size: 26px;
	line-height: 1.3;
	color: #2a2a2a;
	margin-bottom: 12px;
}



.single-titulo h1 {
    font-weight: 600;
    font-family: "Nunito", sans-serif;
    line-height: 33px;
    font-size: 26px;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.single-subtitle {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: #000;
    margin-bottom: 15px;
}

.single-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #707070;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-icon {
    width: 16px;
    height: 16px;
	color: #300378;
}



.single-thumbnail {
    width: 100%;
    overflow: hidden;
    margin-top: -50px;
}

.single-thumbnail .content {
    max-width: 1200px;
    margin: 0 auto;
}

.post-thumbnail {
    margin: 0;
	margin-bottom: 20px;
}

.featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.thumbnail-caption {
    font-size: 14px;
    color: #707070;
    margin-top: 8px;
    text-align: center;
}



.conteudo-pagina {
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
}



.entry-content {
    max-width: 90%;
    margin: 0 auto;
}

/* Texto */
.post-content {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #222;
}

.post-content p {
    margin-bottom: 20px;
}

/* Links */
.post-content a {
    color: #300378;
    font-weight: 500;
}

.post-content a:hover {
    color: #001446;
}

.share-title {
	font-weight: bold;
}

/* Listas */
.post-content ul,
.post-content ol {
    margin: 20px 0 20px 30px;
}

.post-content li {
    margin-bottom: 10px;
}

/* Títulos */
.post-content h2 {
    font-size: 1.6rem;
}

.post-content h3 {
    font-size: 1.3rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 40px 0 15px;
}

/* Imagens */
.post-content img {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
}

/* Gutenberg */
.wp-block-image figcaption {
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* Blockquote */
blockquote {
    border-left: 4px solid #300378;
    padding: 20px;
    background: #fef5f5;
    margin: 30px 0;
}

blockquote p {
    font-style: italic;
    margin: 0;
}

/* =========================
   SOCIAL SHARE
========================= */

.social-share {
    margin: 20px 0;
}

.social-share ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-share li {
    display: flex;
}

/* Botões */
.social-share a,
.social-share button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #444;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    cursor: pointer;
    padding: 0;

    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* Ícones SVG */
.social-share svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

/* Hover */
.social-share a:hover,
.social-share button:hover {
    background: #001446;
    color: #fff;
    transform: translateY(-2px);
}

/* Active (clique) */
.social-share a:active,
.social-share button:active {
    transform: scale(0.95);
}

/* Feedback copiar */
/* Botão copiar */
.copy-link {
    position: relative;
    overflow: hidden;
}

/* Texto de feedback */
.copy-feedback {
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Estado copiado */
.copy-link.copied {
    background: #16a34a;
    color: #fff;
}

.copy-link.copied svg {
    opacity: 0;
}

.copy-feedback {
    display: none;
}



/* single-page */
.single-page {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}



.single-page-bg {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 0;
	color: #fff;
}

.single-page-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45); /* overlay */
}

.single-page-bg .content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.page-title {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #fff;
}


.breadcrumb-page {
	display: flex;
	justify-content: center;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 8px;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #fff;
}

.breadcrumb-item a {
	color: #fff;
	text-decoration: none;
}

.breadcrumb-item a:hover {
	text-decoration: underline;
}

.breadcrumb-separator {
	display: inline-flex;
	align-items: center;
	margin: 0 6px;
}

.breadcrumb-separator svg {
	width: 14px;
	height: 14px;
	color: #fff;
}

.breadcrumb-text {
	white-space: nowrap;
}





/* footer */

footer {
	width: 100%;
	overflow: hidden;
	background-color: #fff;
	color: #96989A;
}

.footer-content {
	padding: 30px 0;
	overflow: hidden;
}


.footer-logo {
	width: 100%;
	overflow: hidden;
	text-align: center;
	margin-bottom: 20px;
}

.footer-logo img {
	width: 190px;
	margin-bottom: 5px;
}

.footer-logo p {
	line-height: 1.5em;
    font-size: 0.75rem;
}


.footer-address {
	width: 100%;
	overflow: hidden;
	text-align: center;
}

.footer-address h3 {
    font-size: 0.75rem;
    margin-bottom: 2px;
    display: block;
	color: #0076A5;
}

.footer-address address{
	line-height: 1.5em;
	font-size: 0.75rem;
}


.footer-social {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.footer-social-center {
	justify-content: center;
	display: flex;
    align-items: center;
    gap: 0 10px;
}

.footer-social-center a {
	width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #EFEFEF;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 50%;
	transition: background-color .2s;
}

.footer-social-center a svg {
	fill: #000;
	width: 18px;
    height: 18px;
}

.footer-social-center a:hover svg {
	fill: #fff;
}

.footer-social-center .facebook:hover {
	background: #1877f2;
}

.footer-social-center .instagram:hover {
	background: #e4405f;
}

.footer-social-center .linkedin:hover {
	background: #0a66c2;
}


.footer-list {
	width: 100%;
	overflow: hidden;
}

.footer-menu {
	width: 100%;
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	overflow: hidden;
}

/* Links */
.footer-menu a {
	font-size: 0.875rem;
	color: #333;
	text-decoration: none;
	padding: 6px 0;
}



/* Container Principal */
.wpcf7 {
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Estrutura do Formulário */
.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs e Textarea */
.wpcf7-text, 
.wpcf7-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box; /* Garante que o padding não quebre o layout */
}

/* Efeito de Foco - Usando sua cor padrão */
.wpcf7-text:focus, 
.wpcf7-textarea:focus {
    outline: none;
    border-color: #300378;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(48, 3, 120, 0.1);
}

/* Ajuste específico para Textarea */
.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botão de Envio (Submit) */
.wpcf7-submit {
    width: auto;
    min-width: 180px;
    background-color: #300378;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border: none;
    border-radius: 50px; /* Estilo pílula para um look mais moderno */
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    display: inline-block;
}

.wpcf7-submit:hover {
    background-color: #24025a; /* Tom levemente mais escuro para o hover */
    box-shadow: 0 5px 15px rgba(48, 3, 120, 0.3);
    transform: translateY(-2px);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

/* Mensagens de Validação e Resposta */
.wpcf7-not-valid-tip {
    color: #d93025;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border-radius: 6px !important;
    border: 2px solid #300378 !important;
    font-weight: 600;
    text-align: center;
}

/* Spinner de Carregamento */
.wpcf7-spinner {
    background-color: #300378;
    margin: 0 0 0 10px;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 480px) {
    .wpcf7-submit {
        width: 100%;
    }
}






@media only screen and (min-width: 700px){

	.content,
	.section-content {
		width: 688px;
		margin: 0 auto;
	}

}



/* Media Queries - Desktop */
@media (min-width: 992px) {

	.servicos-header,
	.home-news,
	.convenios-header {
		margin-left: 10%;
	}


	/**/
	.content,
	.section-content {
		width: 940px;
	}


	/**/

    .mobile-toggle,
    .mobile-menu {
        display: none;
    }
    
    .desktop-menu,
    .desktop-cta {
        display: block;
    }
    
    .desktop-nav {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
    }
    
    .nav-link {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: var(--transition);
        padding: 10px 0;
        position: relative;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
    }
    
    .nav-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s;
    }
    
    .nav-link:hover:after {
        width: 100%;
    }
    
    .has-dropdown {
        position: relative;
    }
    
    .desktop-submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 250px;
        box-shadow: var(--shadow);
        border-radius: 6px;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
        padding: 10px 0;
    }
    
    .has-dropdown:hover .desktop-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .desktop-submenu li a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: var(--text-color);
        font-size: 14px;
        transition: var(--transition);
    }
    
    .desktop-submenu li a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
        padding-left: 25px;
    }
    
    .desktop-cta .btn-cta {
        padding: 10px 20px;
        font-size: 14px;
    }


	/* section-contact */
	.contact-list {
		flex-direction: row;
		align-items: center;   /* alinha os blocos entre si */
		justify-content: center;
		gap: 220px;
	}

	.contact-block {
		text-align: left;
	}

	.contact-block a {
		justify-content: flex-start;
	}

	/* Bloco de título */
	.contact-block-actende {
		max-width: 280px;
	}


	/* footer */
	.footer-logo {
		width: 32%;
		float: left;
		margin-bottom: 0;
	}

	.footer-address {
		width: 32%;
		float: left;
		margin-left: 2%;
		margin-top: 10px;
	}

	.footer-social {
		width: 32%;
		float: left;
		margin-left: 2%;

	}

	.footer-menu {
		flex-direction: row;
		justify-content: center; /* centraliza o menu */
		align-items: center;
		gap: 24px;
	}

	.footer-menu a {
		white-space: nowrap;
	}
}

@media only screen and (min-width: 1199px) {
	.content,
	.section-content {
		width: 1170px;
	}
}