html, body {
    overflow-x: hidden;
}
body{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size:14px;
	color:#ffffff;
    width: 100%;
    overflow-x: hidden;
    user-select: none;
}

.custom-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.custom-image-container {
    display: flex;
    transition: transform 1s cubic-bezier(0.42, 0, 0.58, 1);
}

.custom-image-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.5s ease-in-out;
}
.custom-image-slide.active {
    transform: translateX(0);
}
.custom-indicators {
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10; 
}
.custom-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.custom-indicator:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

.custom-indicator.active {
    background-color: #63bd9d;
    transform: scale(1.2);
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
header {
    display: flex;
    flex-direction: column;
    width: auto; 
    background-color: #002a60; 
}
.contact-bar {
    display: flex;
    justify-content: center; 
    background-color: #003366; 
    color: white; 
    padding: 8px 0; 
    font-size: 13px; 
}

.contact-bar span {
    margin: 0 15px; 
}

.contact-bar i {
    margin-right: 5px; 
}
.contact-bar a:hover{
    text-decoration: underline;
}
.contact-bar img {
    width: 30px;
    height: auto;
    margin-left: 10px;
    cursor: pointer;
}
.language-flags {
    position: absolute;
    top: 10px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.language-flags a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.language-flags img {
    width: 28px;                    
    height: auto;                    
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid transparent;
}

.language-flags a:hover img {
    transform: scale(1.1);
    opacity: 0.9;
    filter: brightness(1.1);
    border-color: #007bff;
}
.header-content {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    padding: 0 20px; 
    width: auto;
    height: 110px; 
}

.logo-image{
	filter: grayscale(100%) brightness(900%);
    height: auto; 
    width: 270px; 
    margin-left: 10%;
    margin-top: -50px;
    z-index: 999;
    position: absolute;
}

nav {
    flex-grow: 1;
}
.desktop-menu {
    display: flex; 
    justify-content: center;
    background: linear-gradient(to bottom, white, lightgray);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 60px;
    width: 100%; 
    z-index: 999; 
    margin-bottom: -5px;
}
.menu-header {
    margin-top: 12px;
    list-style: none;
    display: flex;
    justify-content: center; 
    padding: 0;
}
.separator {
	width: 1px;
    height: 30px;
    background-color: #000000; 
	display: flex;
}
.menu-header a.active {
    border-bottom: 2px solid #007bff; 
    padding-bottom: 2px; 
}
.menu-header li {
    margin: 0 60px; 
    position: relative;
}

.menu-header a {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 0.9vw; 
    padding: 5px 0; 
    transition: color 0.3s ease; 
}


.menu-header a:hover {
    color: #007bff; 
}

.menu-header li::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px; 
    background: #007bff; 
    position: absolute;
    left: 0;
    bottom: 20px; 
    transform: scaleX(0);
    transition: transform 0.3s ease; 
}

.menu-header li:hover::after {
    transform: scaleX(1); 
}

.buttons-header {
    display: flex;
    margin-right: 10%;
}
.buttons-header button{
    width: auto; 
    max-width: 100%;
    outline: none;
}
.buttons-header button{
    margin-left: 10px;
    padding: 15px 30px; 
    border: none;
    border-radius: 4px;
    background: #2a709e;
    color: white;
	font-weight: bold;
    cursor: pointer;
    font-size: 0.9vw; 
    outline: none;
}
.buttons-header button:first-child {
    background: #ffffff;
	color:  #002a60;
	font-weight: bold;
}
.buttons-header button:hover {
    background:#0076b6d2;
    transform: translateY(-1px); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
	color: #fff;
}

.hamburger {
    display: none; 
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    margin: 4px 0; 
    transition: all 0.3s ease; 
}

.hamburger.active div {
    background-color: #007BFF; 
}
.additional-buttons {
    margin: 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.additional-buttons button {
    background: linear-gradient(to left, #00509e, #001b3d);
    color: #fff; 
    border: none; 
    border-radius: 5px; 
    padding: 15px 30px; 
    width: 80%; 
    margin: 10px 0; 
    cursor: pointer; 
    transition: background-color 0.3s; 
    font-size: 15px; 
    outline: none;
}

.additional-buttons button:hover {
    background-color: #0056b3; 
}
.mobile-menu {
    display: block; 
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: auto; 
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    z-index: 999; 
    border-radius: 5px; 
    transition: transform 0.3s ease, opacity 0.3s ease; 
    transform: translateY(-100%); 
    opacity: 0; 
}

.mobile-menu.show {
    transform: translateY(0); 
    opacity: 1; 
}

.mobile-menu .close-menu {
    position: absolute; 
    top: 20px; 
    right: 20px; 
    background: none; 
    color: #000; 
    border: none; 
    font-size: 30px; 
    cursor: pointer; 
}

.mobile-menu ul {
    list-style: none;
    padding: 20px; 
    margin: 0;
    margin-top: 30%;
    text-align: left; 
}

.mobile-menu li {
    margin: 15px 0; 
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px; 
    display: block; 
}

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

.hamburger.active div:nth-child(2) {
    opacity: 0; 
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


@media (max-width: 768px) {
    .desktop-menu {
        display: none; 
    }
    .mobile-menu {
        display: block; 
    }
	.buttons-header {
        display: none; 
    }
    .hamburger {
        display: flex;
    }

}
@media (max-width: 768px) {
    .contact-bar {
        flex-direction: column; 
        align-items: center; 
        padding: 5px 0; 
    }

    .contact-bar span {
        margin: 5px 0;
        font-size: 14px; 
    }
}

@media (max-width: 992px) {
    .menu-header {
        font-size: 16px; 
    }

    .mobile-menu ul {
        padding: 10px; 
    }
}

@media (max-width: 768px) {
    .contact-bar {
        flex-direction: column; 
        align-items: center; 
    }

    .hamburger {
        margin-left: auto; 
    }
}

@media (max-width: 576px) {
    .contact-bar span {
        font-size: 12px; 
    }

    .mobile-menu a {
        font-size: 16px; 
    }
}
@media (max-width: 1024px) { 

    .logo-image {
        margin-left: 10%;
        width: 30%; 
    }

    .menu-header {
        font-size: 18px; 
    }

    .buttons-header button {
        padding: 10px; 
    }
    .linksnavig {
        display: none;
    }
    
}

@media (max-width: 768px) {
    .contact-bar {
        flex-direction: column; 
        align-items: center; 
    }

    .hamburger {
        margin-left: auto; 
    }
}
@media (max-width: 820px) {
    .contact-bar {
        flex-direction: column; 
        align-items: center; 
    }

    .hamburger {
        margin-left: auto; 
    }
    .linksnavig {
        display: none;
    }
}

@media (max-width: 576px) {
    .contact-bar span {
        font-size: 12px; 
    }

    .mobile-menu a {
        font-size: 16px; 
    }
}
.mobile-menu .language-selector {
    margin-top: 20px;
    text-align: center;
}

.mobile-menu .language-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 5px;
}

.mobile-menu .language-flag {
    width: 30px; 
    height: 30px;
    border-radius: 20%;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.mobile-menu .language-flag:hover {
    transform: scale(1.1);
    opacity: 1;
}

.mobile-menu .language-flag:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .mobile-menu .language-options {
        padding: 8px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu .language-flag {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .mobile-menu .language-options {
        gap: 8px;
    }

    .mobile-menu .language-flag {
        width: 30px;
        height: 25px;
    }
}

.service-container {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    margin: 20px; 
}

.service-box {
    background-color: #ffffff; 
    padding: 20px; 
    height: auto;
    width: 25%; 
    margin: 15px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
    border-radius: 10px; 
    transition: transform 0.3s; 
    text-align: center; 
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    max-width: 100%;
}

.service-box:hover {
    transform: translateY(-8px); 
}

.service-box h2 {
    background-color: rgba(4, 74, 118, 0.7); 
    color: white; 
    padding: 10px 10px; 
    border-radius: 5px; 
    display: inline-block; 
    margin: -20 -20; 
    font-size: 20px; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); 
}

.service-box p {
	text-align: center;
    margin: 10px 0; 
    flex-grow:1; 
}
.service-box a:hover{
    text-decoration: underline;    
}
.btn {
    background-color: #002a60; 
}

.service-box button {
    background-color: #002a60; 
    color: white; 
    border: none; 
    font-weight: bold;
    border-radius: 5px; 
    padding: 15px 15px; 
    font-size: 0.9vw;
    cursor: pointer; 
    transition: background-color 0.3s; 
    margin: 10px auto; 
	width: 80%;
    outline: none;
}
.service-box button:hover{
    background-color: #011c3e;
}
.contact-info {
    margin-top: 10px; 
    text-align: left; 
    height: auto;
}
@media (max-width: 768px) {
    .service-box {
        width: auto; 
    }
}

.sobre-nos {
    text-align: center; 
    padding: 40px; 
    margin-top: 80px;
}

.sobre-nos h2 {
    text-transform: uppercase; 
    margin-bottom: 10px; 
    font-size: 50px; 
}

.linha-separadora {
    width: 60%; 
    height: 6px; 
    background: linear-gradient(to right, transparent, #00509e, transparent);
    margin: 20px auto; 
    position: relative; 
    display: flex; 
    align-items: center;
}

.quadrado {
    background-color: #00509e; 
    width: 15px; 
    height: 15px; 
    border-radius: 5px; 
    margin-bottom: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.numero {
    font-size: 72px; 
    color: #002a60; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
    margin-left: 10px; 
    margin-top: -20px;
}

.conteudo {
    display: flex; 
    justify-content: center; 
    margin-top: 20px; 
    flex-wrap: wrap; 
}

.texto-caixa {
    padding: 20px; 
    box-shadow: 0 50px 90px rgba(0, 0, 0, 0.2); 
    max-width: 600px; 
	height: auto;
    margin-right: 40px; 
    text-align: left; 
}

.texto-caixa p {
    font-size: 20px;
}

.topicos {
    display: flex;
    flex-direction: column; 
    text-align: left; 
    gap: 20px; 
}
.topico h3 {
    font-size: 25px;
    text-align: center;
}

.icon-imagem {
    display: block; 
    margin: 10px auto; 
    width: 40px; 
    height: 40px; 
}

.ver-mais {
    background-color: #ffffff; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    padding: 5px 10px; 
    cursor: pointer; 
    transition: background-color 0.3s; 
    margin: 10px auto; 
    display: block; 
    text-align: center;
    width: 19%;
}

.ver-mais:hover {
    background-color: #f2f2f2; 
    color: #ffffff;
}

.galeria {
    display: flex; 
    gap: 10px; 
}

.foto {
    width: 100px; 
    height: 80px; 
    background-color: #e0e0e0; 
    border-radius: 5px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.foto img {
    height: 100%;
}

.ver-mais {
    background-color: #002a60; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    padding: 8px 12px; 
    cursor: pointer; 
    transition: background-color 0.3s, transform 0.3s; 
    margin: 10px auto; 
    display: block; 
	width: auto;
	font-size: 18px;
}

.ver-mais:hover {
    background-color: #021d40; 
    transform: scale(1.05); 
}

.mais {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background-color: #002a60; 
    cursor: pointer;
    border-radius: 5px; 
    width: 100px; 
    height: 80px; 
    transition: background-color 0.3s, transform 0.3s;
}

.mais:hover {
    background-color: #021d40; 
    transform: scale(1.1); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
}

.mais span {
    font-size: 24px; 
    color: white; 
}


@media (max-width: 768px) {
    .sobre-nos h2 {
        font-size: 40px; 
    }

    .linha-separadora {
        width: 80%; 
    }

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

    .texto-caixa {
        max-width: 100%; 
        margin-right: 0; 
        margin-bottom: 20px; 
    }

    .topicos {
        width: 100%; 
        align-items: center; 
    }

    .ver-mais {
        width: auto; 
        padding: 10px; 
    }

    .galeria {
        flex-direction: column; 
    }
	.foto {
		width: auto;
		height: auto;
	}
	.foto img{
		width: auto;
		height: auto;
	}
}

@media (max-width: 480px) {
    .sobre-nos h2 {
        font-size: 30px; 
    }

    .numero {
        font-size: 50px; 
    }

    .icon-imagem {
        width: 30px; 
        height: 30px; 
    }
    .topicos {
        width: 100%; 
        align-items: center; 
    }

    .ver-mais {
        width: auto; 
        padding: 10px; 
    }

    .galeria {
        flex-direction: column; 
    }
	.foto {
		width: auto;
		height: auto;
	}
	.foto img{
		width: auto;
		height: auto;
	}
}
.especialidades {
    margin-bottom: 10px;
}
.especialidades {
    text-align: center; 
    margin-top: 130px;
}
.especialidades h2 {
   font-size: 50px;
}
.especialidades {
    margin-bottom: 10px; 
    font-size: 50px; 
}
.especialidades-clinica {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.especialidade-item {
    position: relative;
    width: 310px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.especialidade-item p{
    color: #fff;
}
.especialidade-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: background 0.3s ease-in-out;
}

.especialidade-item:hover .especialidade-overlay {
    background: rgba(0, 0, 0, 0.7);
}
.especialidade-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.especialidade-title {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease;
    align-self: flex-start;
    position: absolute;
    bottom: 60px;
    left: 20px;
    z-index: 2;
}
.especialidade-title {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); 
}
.especialidade-underlined {
    display: block;
    height: 6px;
    background: #002a60;
    width: 50px;
    margin: 10px 0;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, width 0.3s ease;
    position: absolute;
    bottom: 40px; 
    left: 20px;
}
.especialidade-underlined::after {
    content: '';
    position: absolute;
    right: -5px; 
    bottom: 0; 
    width: 10px; 
    height: 6px;
    background: #002a60;
    transform: skewX(-20deg);
}
.especialidade-paragraph {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(50px); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
    text-align: left;
}
.especialidade-item:hover .especialidade-title {
    transform: translateY(-80px); 
}

.especialidade-item:hover .especialidade-underlined {
    transform: translateY(-80px); 
    width: 150px;
}

.especialidade-item:hover .especialidade-paragraph {
    opacity: 1;
    transform: translateY(0);
    bottom: 0;
}
.especialidade-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.info-title {
    background-color: #007bff; 
    color: white; 
    padding: 8px; 
    border-radius: 5px; 
    margin-bottom: 10px; 
    font-size: 1.2em; 
}

.info-message {
    margin: 10px 0; 
}

.info-button {
    background-color: #007bff; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    padding: 12px 20px; 
    cursor: pointer; 
    transition: background-color 0.3s; 
    font-size: 1em; 
}
.info-button:focus {
    outline: none; 
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); 
}

.info-button:hover {
    background-color: #0056b3; 
}
.get-quote{
	margin-top:22px;
	display: flex;
	gap: 12px;
}
.get-quote .btn{
	color:#fff;
}

.medicos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.medicos-container h1 {
    text-align: left;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
    color: #002a60;
}

.medicos-container h3 {
    margin-bottom: 25px;
    text-align: left;
    font-size: 16px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.medico-card {
    background: white; 
    border: none;
    border-radius: 10px; 
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    position: relative; 
}   

.medico-card img {
    width: 350px; 
    height: 350px; 
    object-fit: cover; 
    border-radius: 10px; 
}

.medico-card h2 {
    font-size: 1.2em;
    margin: 10px 0 5px;
}

.medico-card p {
    color: #666;
    margin: 5px 0 10px;
}

.medico-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-top: 3px solid #ffffff;
    border-radius: 0 0 10px 10px;
    background-color: rgb(0, 42, 96);
    opacity: 0;
    transform: translateY(30px) scale(0.95) rotateX(5deg);
    filter: blur(8px);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s, filter 0.6s;
    transform-origin: bottom;
}

.medico-card:hover .medico-description {
    transform: translateY(0) scale(1) rotateX(0);
    opacity: 1;
    filter: blur(0);
}

.medico-description.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
}   
.medico-description p {
    color: var(--text-color);
    margin: 10px;
    text-align: center;
    font-size: 1.1em; 
}
.btn-agendar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #002a60;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-agendar:hover {
    background-color: #004080;
}
.exame-item {
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.exame-item:hover .description {
    display: block; 
    max-height: 100%; 
    padding: 10px; 
}
.procedimentos {
	padding: 20px;
	font-family: Arial, sans-serif;
	color: #4c4d4e;
}

.procedimentos h2, .body-text h3 {
	font-size: 2.1em;
	color: #004d7a;
	margin-bottom: 15px;
    font-weight: bold;
}

.procedimentos .body-text p {
	font-size: 1.3em;
	color: #555;
	margin-bottom: 20px;
}

.grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.exame-item {
	position: relative;
	width: 100%;
	max-width: 320px;
	padding: 15px;
	background-color: rgba(240, 248, 255, 0.9);
	border: 1px solid #a1c6ea;
	border-radius: 8px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
}

.exame-item:hover {
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
	background-color: rgba(200, 220, 250, 0.64);
	transform: translateY(-2px);
}

.exame-item span {
	display: block;
	font-weight: bold;
	color: #004d7a;
	margin-bottom: 10px;
	font-size: 1.1em;
}

.description {
    opacity: 0; 
    max-height: 0;
    padding: 0;
    color: #242f3b;
    font-size: 1em;
    line-height: 1.5em;
    background-color: #f0faff;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.05);
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}

.exame-item:hover .description {
    max-height: 150px;
    padding: 10px;
    opacity: 1;
}
@media (max-width: 768px) {
	.grid {
		flex-direction: column;
		align-items: center;
	}

	.exame-item {
		max-width: 100%;
	}
}

.newsletter {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	background-color: #4f708a96;
    color: #fff;
	border-radius: 8px;
	padding: 20px;
	margin-top: 30px;
}

.newsletter p {
	font-size: 1.1em;
	color: #feffff;
	margin-bottom: 10px;
}

.newsletter-img {
	width: 100%;
	max-width: 300px;
	height: auto;
	margin-right: 20px;
	border-radius: 5px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-content {
	flex: 1;
	margin-top: 10px;
}

.saiba-mais {
	display: inline-block;
	background-color: #004d7a;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	margin-top: 10px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.saiba-mais:hover {
	background-color: #003f5c;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	transform: scale(1.05);
}

.wc-cirurgias-oculares { 
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

.wc-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 8px 9px rgba(0, 0, 0, 0.2);
}

.wc-hero-text {
    flex: 1;
    max-width: 600px;
}

.wc-hero-text p {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #444;
}

.wc-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #002a60;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.wc-cta-btn:hover {
    background-color: #002a60;
    color: #fff;
}

.wc-hero-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.wc-containercir {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.wc-procedimento-item {
    flex: 1 1 calc(25% - 20px);
    max-width: 250px;
    text-align: center;
    margin: 0 auto;
}

.wc-procedimento-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.wc-procedimento-item img:hover {
    transform: scale(1.05);
}

.wc-procedimento-item h4 {
    margin-top: 10px;
    font-size: 1.1em;
    font-weight: bold;
    color: #002a60;
}

.wc-procedimento-item p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    margin-top: 5px;
}

.wc-informacoes-adicionais {
    margin-top: 50px;
}

.wc-informacoes-adicionais h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.wc-informacoes-adicionais p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

.wc-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wc-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.wc-card h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #002a60;
}

.wc-card p {
    font-size: 1em;
    color: #666;
}

@media (max-width: 768px) {
    .wc-hero {
        flex-direction: column;
        text-align: center;
    }

    .wc-hero-text {
        max-width: 100%;
    }

    .wc-hero-img img {
        max-width: 100%;
    }

    .wc-procedimento-item {
        flex: 1 1 calc(50% - 20px);
    }

    .wc-cards .wc-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .wc-procedimento-item {
        flex: 1 1 100%; 
    }

    .wc-cards .wc-card {
        flex: 1 1 100%; 
    }

    .wc-hero-text p {
        font-size: 1.2em; 
    }
}

.wc-consultas-oftalmologicas {
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    border-radius: 15px;
}

.wc-introducao {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 4px 6px 18px rgba(0, 0, 0, 0.1);
}

.wc-introducao-texto {
    flex: 1;
    max-width: 600px;
    color: #ffffff; 
}

.wc-introducao-texto p {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #444;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); 
}

.wc-botao-cta {
    display: inline-block;
    padding: 12px 25px;
    background-color: #002a60;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wc-botao-cta:hover {
    background-color: #002a60;
    transform: scale(1.05); 
}

.wc-introducao-imagem img {
    width: 100%;
    max-width: 380px; 
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.wc-servicos-oftalmologicos {
    margin-top: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.wc-titulo-servicos {
    font-size: 2em;
    margin-bottom: 25px;
    color: #003366;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase; 
}

.wc-servico-descricao {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.wc-servico-item {
    flex: 1 1 calc(23% - 20px);
    text-align: center;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wc-servico-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); 
}

.wc-servico-item h4 {
    font-size: 1.2em;
    margin-top: 10px;
    color: #003366;
    text-transform: capitalize;
}

.wc-servico-item p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

.wc-informacoes-sobre-consultas {
    margin-top: 50px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.wc-informacoes-sobre-consultas h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    text-align: center;
}

.wc-informacoes-sobre-consultas p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.wc-cartoes-informativos {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-around;
}

.wc-cartao-informativo {
    flex: 1 1 calc(33% - 25px);
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wc-cartao-informativo:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

.wc-cartao-informativo h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #003366;
    font-weight: 600;
}

.wc-cartao-informativo p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .wc-introducao {
        flex-direction: column;
        text-align: center;
    }

    .wc-introducao-imagem img {
        max-width: 100%;
    }

    .wc-servico-item {
        flex: 1 1 calc(50% - 20px);
    }

    .wc-cartoes-informativos .wc-cartao-informativo {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .wc-servico-item {
        flex: 1 1 100%;
    }

    .wc-cartoes-informativos .wc-cartao-informativo {
        flex: 1 1 100%;
    }

    .wc-introducao-texto p {
        font-size: 1.2em;
    }
}

.wc-exames {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.wc-exames h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
    text-align: left;
}

.wc-exames p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #555;
    text-align: left;
}

.wc-exames h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.wc-busca-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

#wc-lupa {
    background: none;
    border: none;
    font-size: 20px;
    color: #007bff; /* Cor azul moderna */
    cursor: pointer;
    padding: 8px;
    width: auto;
    transition: color 0.3s ease;
}
#wc-lupa:hover {
    color: #0056b3; /* Cor azul mais escura ao passar o mouse */
}

#wc-busca-exames {
    width: 0;
    opacity: 0;
    padding: 12px 10px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9; /* Fundo claro */
}

#wc-busca-exames:focus {
    border-color: #007bff; /* Borda azul quando o campo estiver em foco */
    background-color: #fff; /* Fundo branco ao focar */
}

/* Quando a busca é ativada */
.wc-busca-container.active #wc-busca-exames {
    width: 100%;
    opacity: 1;
    padding: 12px 40px 12px 10px; /* Ajuste no padding */
}

/* Colocando uma sombra no input */
#wc-busca-exames {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wc-lista-exames {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.wc-exame-item {
    font-size: 15px;
    color: #333;
    background-color: #fff;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Garante espaçamento adequado */
}

.wc-exame-item:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.wc-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.wc-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.wc-popup h4 {
    margin-bottom: 16px;
    font-size: 20px;
    color: #222;
}

.wc-popup p {
    text-align: left;
    margin-bottom: 24px;
    font-size: 16px;
    color: #2e2e2e;
    line-height: 1.3;
}

.wc-popup-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.wc-btn-agendar{
    width: 80%;
    font-size: 15px;
    overflow-wrap: break-word;
}
.wc-btn-agendar,
.wc-btn-voltar {
    overflow-wrap: break-word;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    outline: none;
}
.wc-btn-voltar{
    font-size: 12px;
    overflow-wrap: break-word;
}
.wc-btn-agendar {
    background: #002a60;
    color: #fff;
    outline: none;
}

.wc-btn-agendar:hover {
    background: #001d42;
    outline: none;
}
.wc-btn-agendar:focus{
    outline: none;
    border: none;
}
.wc-btn-voltar {
    background: #6c757d;
    color: #fff;
}

.wc-btn-voltar:hover {
    background: #5a6268;
    transform: none;
}

.wc-btn-mais {
    outline: none;
    background: none;
    border: none;
    width: auto;
    font-size: 16px;
    color: #007BFF;
    cursor: pointer;
    float: right;
    transition: color 0.2s;
}

.wc-btn-mais:hover {
    background-color: transparent;
    outline: none;
    border: none;
}
.wc-btn-mais:focus{
    outline: none;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
	width: auto;
}

.exame-item {
    background-color: #fff; 
    color: #113f74; 
	font-size: 16px;
	width: auto	;
	font-weight: bold;
    padding: 17px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    cursor: pointer;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease; 
}

.exame-item:hover {
    transform: scale(1.01); 
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); 
}

.plus {
    margin-left: 10px;
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    right: 10px;
    top: 10px;
}


@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .newsletter-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

.clients{
	margin-top: 280px;
	background-size:cover;
	background-position:center;
	padding:30px 0px;
	position:relative;
	border-bottom: 3px solid #005686;
}
.clients .aviso{
	display: inline-block;
	border-radius: 5px;
	word-spacing: -1px;
	max-width: 100%;
	height: auto;

	background-color: #e9dfa1ed;
}
.aviso p{
	font-size: 15px;
	color: #812323;
	line-height: 1.5; 
    margin: 1px 0;
    padding: 0; 
}
.clients .text-convenio h3{
	margin-top: 10px;
	font-size: 15px;
	color: #000000;
}
.clients .text-convenio {
	border-bottom: #000 2px;
	margin-top: -110px;
	opacity: 100%;
	position: relative;
	z-index: 99;
	color: #42c5c4;
	text-align: center;
	font-weight: bold;
	font-size: 35px;
	padding: 12px;
	border-bottom: 3px solid #42c5c4;

}

.clients .single-clients img {
	margin-top: 35px;
	width: 100%;
	cursor: pointer;
	text-align: center;
	float: none;
	padding: 0 38px;
}
.contact-us .inner{
	box-shadow: 0px 0px 10px #00000024;
	border-radius: 5px;
	overflow:hidden;
    outline: none;
}
.contact-us .contact-us-left{
    width: 100%;
    height: 100%;
}
.contact-us .contact-us-form{
	padding:50px 40px;
}
.contact-us .contact-us-form h2 {
	position: relative;
	font-size: 32px;
	color: #333;
	font-weight: 600;
	line-height: 27px;
	text-transform: capitalize;
	margin-bottom: 12px;
	padding-bottom: 20px;
	text-align: left;
}
.contact-us .contact-us-form h2:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:2px;
	width:50px;
	background:#1A76D1;
}
.contact-us .contact-us-form p {
	font-size: 14px;
	color: #333;
	font-weight: 400;
	text-align: left;
	margin-bottom:50px;
}
.contact-us .form {
	margin-top: 30px;
}
.contact-us .form .form-group {
	margin-bottom: 22px;
}
.contact-us .form .form-group input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	text-transform: capitalize;
	padding: 0px 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}
.contact-us .form .form-group textarea {
	width: 100%;
	height:100px;
	border: 1px solid #eee;
	text-transform: capitalize;
	padding:18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}
.contact-us .form .form-group.login-btn {
	margin: 0;
}
.contact-us .form button {
	border: none;
}
.contact-us .form .btn {
	display: inline-block;
	margin-right: 10px;
	color: #fff;
	line-height: 20px;
	width:100%;
}
.contact-us .form .btn:hover{
	background:#002a60;
	color:#fff;
}
.contact-us .contact-us-form .checkbox {
	text-align: left;
	margin: 0;
	margin-top: 20px;
	display:inline-block;
	
}
.contact-us .contact-us-form .checkbox label {
	font-size: 14px;
	font-weight: 400;
	color: #333;
	position: relative;
	padding-left: 20px;
}
.contact-us .contact-us-form .checkbox label:hover{
	cursor:pointer;
}
.contact-us .contact-us-form .checkbox label input{
	display:none;
}
.contact-us .contact-us-form .checkbox label::before {
	position: absolute;
	content: "";
	left: 0;
	top: 5px;
	width: 15px;
	height: 15px;
	border: 1px solid #1A76D1;
	border-radius: 100%;
}
.contact-us .contact-us-form .checkbox label::after {
	position: relative;
	content: "";
	width: 7px;
	height: 7px;
	left: -16px;
	top: -15px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: block;
	font-size: 9px;
	background: #1A76D1;
	border-radius: 100%;
}
.contact-us .contact-us-form .checkbox label.checked::after{
	opacity:1;
	visibility:visible;
	transform:scale(1);
}
.contact-us .contact-info{
	margin-top:50px;
}
.contact-us .single-info {
	background: #1a76d1;
	padding: 40px 60px;
	height: 150px;
	border-radius: 10px;
	position:relative;
	-webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.contact-us .single-info:before{
	position: absolute;
    z-index: -1;
    content: '';
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 90%;
    background:#1A76D1;
    opacity: 0;
    filter: blur(10px);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.contact-us .single-info:hover:before{
	opacity: 0.8;
}
.contact-us .single-info:hover{
	transform: translateY(-5px);
}
.contact-us .single-info i{
	font-size:42px;
	color:#fff;
	position:absolute;
	left:40px;
}
.contact-us .single-info a:hover{
    text-decoration: underline;
}
.contact-us .single-info .content {
	margin-left: 45px;
}
.contact-us .single-info .content h3{
	color:#fff;
	font-size:18px;
	font-weight:600;
	
}
.contact-us .single-info .content p{
	color:#fff;
	margin-top:5px;
}
.contact-us #myMap {
	height: 100%;
	width: 100%;
}

.error-page {
	text-align: center;
	background: #fff;
	border-top: 1px solid #eee;
}
.error-page .error-inner {
	display: inline-block;
}
.error-page .error-inner h1 {
	font-size: 140px;
	text-shadow: 3px 5px 2px #3333;
	color: #1A76D1;
	font-weight: 700;
}
.error-page .error-inner h1 span {
	display: block;
	font-size: 25px;
	color: #333;
	font-weight: 600;
	text-shadow: none;
}
.error-page .error-inner p {
	padding: 20px 15px;
}
.error-page .search-form {
	width: 100%;
	position: relative;
}
.error-page .search-form input {
	width: 400px;
	height: 50px;
	padding: 0px 78px 0 30px;
	border: none;
	background: #f6f6f6;
	border-radius: 5px;
	display: inline-block;
	margin-right: 10px;
	font-weight:400;
	font-size:14px;
}
.error-page .search-form input:hover{
	padding-left:35px;
}
.error-page .search-form .btn {
	width: 80px;
	height: 50px;
	border-radius: 5px;
	cursor: pointer;
	background: #1A76D1;
	display: inline-block;
	position: relative;
	top: -2px;
}
.error-page .search-form .btn i{
	font-size:16px;
}
.footer{
	position: relative;
	margin-top: 200px;
}
.footer .footer-top{
	z-index: 1;
	padding:10px 0px;
	background:#002a60;
}
.footer .footer-top:before{
	content:"";
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#000;
	opacity:0.1;
}
.footer img{
	margin-top: 0px;
	margin-left: -250px;	
	filter: contrast(255%) brightness(3%) invert(100%);
}
.footer .single-footer{
	margin-top: 1px;
	margin-left: 250px;	
	width: auto;
}
.footer .single-footer h2{
	font-size: 30px;
}

.footer .contatofooter{
    margin-top: 20px;
	margin-left: -500px;
}
.footer .contatofooter h3{
	color: #fff;
}
.footer .contatofooter p{
	color: #fff;
	font-size: 20px;
    margin: 15px;
    margin-left: 0px;
}
.footer .contatofooter p:hover{
    text-decoration: underline;
}
.footer .single-footer .maps{
	left: 827px;
	width: 651px;
	height: 415px;
}
.footer .contatofooter .social{
	margin-top:25px;
}
.footer .contatofooter .social li{
	display:inline-block;
	margin-right:10px;
}
.footer .contatofooter .social li:last-child{
	margin-right:0px;
}
.footer .contatofooter .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #fff;
	padding: 0;
	border-radius: 100%;
	display: block;
	color:#fff;
	font-size: 16px;
}
.footer .contatofooter .social li a:hover{
	color:#1A76D1;
	background:#fff;
	border-color:transparent;
}
.linksnavig {
    margin: 0 auto;
    padding: 0;
    margin-left: -285px;
    margin-top: 230px;
    
}
.footer-links {
    list-style: none;
    padding: 0; 
    margin: 0; 
}

.footer-links li {
    margin: 10px 0; 
    font-size: 20px;
}

.footer-links a {
    color: white; 
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
.footer .contatofooter.ff-link li a i{
	margin-right:10px;
}
.footer .single-footer.f-link li{
	display:block;
	margin-bottom:12px;
}
.footer .single-footer.f-link li:last-child{
	margin:0;
}
.footer .single-footer.f-link li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
}
.footer .single-footer.f-link li a:hover{
	padding-left:8px;
}
.footer .single-footer h2{
	color:#fff;
	font-size:30px;
	font-weight:600;
	text-transform:capitalize;
	margin-bottom:40px;
	padding-bottom:20px;
	position:relative;
}
.footer .single-footer h2::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0px;
	height: 3px;
	width: 50px;
	background: #fff;
}
.footer .single-footer .time-sidual{
	margin-top:15px;
}
.footer .single-footer .time-sidual{
	overflow:hidden;
}
.footer .single-footer .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span{
	display:inline-block;
}
.footer .single-footer .day-head .time {
	font-weight: 400;
	float: right;
}
.footer .single-footer p{
	color:#fff;
	margin-top: -30px;
	font-size: 18px;
}
.footer .copyright{
	background:#1A76D1;
	padding:12px 0px 12px 0px;
	text-align:center;
}
.footer .copyright .copyright-content p{
	color:#fff;
}
.footer .copyright .copyright-content p a{
	color:#fff;
	font-weight:400;
	text-decoration:underline;
	display:inline-block;
	margin-left:4px;
}
.treatment-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
}

.treatment-image {
    width: 100%; 
    height: auto; 
    overflow: hidden;
    margin: 20px; 
    margin-top: 0;
}

.treatment-image img {
    width: 100%; 
    height: auto; 
}

.treatment-row {
    display: flex; 
    flex-wrap: wrap; 
}

.treatment-column {
    flex: 1; 
    min-width: 300px; 
}

.treatment-content {
    display: flex; 
}

.treatment-description {
    max-width: 600px; 
}
.treatment-description h3{
    font-weight: bold;
}
.treatment-description p{
    margin: 5px;
    font-size: 16px;
    color: #000;
}

.back-button {
    display: block; 
    width: 20%;
    margin-top: auto; 
    margin-left: auto; 
    margin-right: auto; 
    padding: 10px 15px; 
    background-color: #002a60; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 5px; 
    text-align: center; 
    font-size: 1vw; 
}

.back-button:hover {
    background-color: #001b3d; 
}


@media (max-width: 768px) {
    .treatment-row {
        flex-direction: column; 
        align-items: center; 
    }

    .treatment-content {
        flex-direction: column; 
        align-items: center; 
    }

    .treatment-image {
        width: 100%; 
        margin: 10px 0; 
    }

    .treatment-description {
        max-width: 90%; 
    }

    .back-button {
        font-size: 4vw; 
    }
}

@media (max-width: 1700px) {
    .header .logo-image {
        width: 1500px;
    }
}
@media (max-width: 768px) {
    .desktop-menu {
        display: none; 
    }
    .mobile-menu {
        display: block; 
    }
    .buttons-header {
        display: none; 
    }
    .hamburger {
        display: flex; 
        width: 50px;
        margin-left: auto;
    }
    .logo-image {
        width: 35%;
        margin-left: 10%;
    }
    .footer-top .container img{
        margin-left: 130px;
        width: auto;
        margin-top: -35px;
    }
    .service-box button{
        font-size: 18px;
    }
    .service-box p{
        font-size: 15px;
        font-weight: bold;
    }
    .linha-separadora {
        margin-top: 50px;
    }
    .sobre-nos .topico .foto{
        width: 60%;
        margin-left: 140px;
    }
    .header-content {
        position: fixed;
        right: 0;  
        left: 0;
        background-color: #002a60;
        z-index: 9999;
        display: flex;

    }
    .custom-carousel{
        margin-top: 110px;
    }
    .mobile-menu ul {
        margin-top: 15%; 
    }
}
@media (max-width: 430px) { 
    .logo-image {
        margin-left: 280px;
        max-height: 70%;
        margin-top: -40px;
    }
    .footer-top .container img{
        width: 65%;
        margin-top: -65px;
        margin-bottom: 40px;
        margin-left: -2px;
    }
    .service-box p{
        font-size: 15px;
        font-weight: normal;
    }
    .sobre-nos .topico .foto{
        width: 80%;
        margin-left: 40px;
    }
    .linha-separadora {
        margin-top: 50px;
    }
    .service-box button{
        font-size: 15px;
    }

    .header-content {
        position: fixed;
        right: 0;  
        left: 0;
        background-color: #002a60;
        z-index: 9999;
        display: flex;

    }
    .custom-carousel{
        margin-top: 110px;
    }

    .header {
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100%; 
        background-color: #002a60; 
    }
    .mobile-menu ul{
        margin-top: 20%;
    }
    .logo-image {
        width: 60%;
        margin-left: 68%;
    }
    .contact-info .single-info{
        margin: 10px;
    }
    .linksnavig {
        display: none;
    }
    .container-sobre {
        margin-top: 70px
    }
    .especialidade-text {
        font-size: 20px;
    }
}
@media (max-width: 820px) {
    .desktop-menu {
        display: none; 
    }
    .mobile-menu {
        display: block; 
    }
    .buttons-header {
        display: none; 
    }
    .hamburger {
        display: flex; 
        margin-left: auto; 
    }

	.footer .single-footer {
		margin: 20px 0;
	}
	.footer .single-footer h2 {
		padding-bottom: 20px;
	}
	.footer .footer-top {
		padding: 65px 0px;
	}
	.footer  img{
		margin-top: -80px;
		margin-left: 0px;	
	}
	.single-footer .maps{
		width: 150px;
	}

	.footer .single-footer .maps{
		margin-top: 10px;
		margin-left: 10px;
		margin-right: 10px;
		width: auto;
	}
	.footer .single-footer p{
		margin-top: 10px;
		
	}
	.footer .single-footer h2{
		margin-left: 10px;
		margin-right: 10px;		
	}
	.footer .single-footer p{
		margin-left: 10px;
		margin-right: 10px;		
	}
	.footer .contatofooter{
		margin-top: -20px;
		margin-left: 10px;

	}
    .especialidades h2 {
        font-size: 45px;
     }
     .header-content {
        position: fixed;
        right: 0;  
        left: 0;
        background-color: #002a60;
        z-index: 9999;
        display: flex;

    }
    .custom-carousel{
        margin-top: 110px;
    }
    .mobile-menu ul {
        margin-top: 25%; 
    }
}

@media (max-width: 992px) {
    .menu-header {
        font-size: 16px; 
    }
    .mobile-menu ul {
        padding: 10px; 
    }
}

@media (max-width: 576px) {
    .contact-bar span {
        font-size: 12px; 
    }
    .mobile-menu a {
        font-size: 16px; 
    }
}


@media (max-width: 992px) {
    .menu-header li {
        margin: 0 10px; 
    }

    .menu-header a {
        font-size: 3vw; 
    }
}

@media (max-width: 768px) {
    .menu-header a {
        font-size: 4vw; 
    }
}

@media (max-width: 1750px) { 
    .logo-header {
        margin-left: -100px;
    }
}

.containerconvenios {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
}

.quadro-aviso {
    background-color: rgba(255, 235, 59, 0.626);
    color: #333;
    margin-top: 30px;
    margin-bottom: 60px;
    padding: 15px;
    width: 50%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.icone-aviso {
    margin-top: -8px;
    margin-right: 10px;
    font-size: 35px;
}

.clinica-convenios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    width: 100%;
}

.clinica-conveniosimg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinica-conveniosimg:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.clinica-conveniosimg img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px; 
}

.clinica-conveniosimg:hover .overlay-text {
    opacity: 1; 
}

.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow: auto;
    transition: opacity 0.3s ease;
}
.popup-content {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    font-family: 'Arial', sans-serif;
    animation: popup-fade-in 0.5s ease-out;
    width: 450px;
    max-width: 90%;
    padding: 20px;
    font-size: 16px;
}
.popup label{
    color: #333;
    font-size: 16px;
}

@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.popup-close {
    font-size: 30px;
    color: #002a60;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
}
.popup-close:hover {
    color: #F44336;
}
.popup-header {
    margin-bottom: 20px;
}
#popup-img-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
.popup-convenio-img {
    width: 100%;
    max-width: 130px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-convenio-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#popup-title {
    font-size: 24px;
    font-weight: bold;
    color: #002a60;
    margin-bottom: 15px;
}
#popup-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}
input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s;
}
input[type="text"]:focus {
    border-color: #002a60;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); 
}
button {
    background-color: #002a60;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background-color 0.3s, transform 0.3s ease-in-out, box-shadow 0.3s ease;
}
button:hover {
    background-color: #001b3d;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
button:active {
    transform: scale(0.98);
}
.popup:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    filter: blur(5px);
    z-index: -1;
    transition: background 0.3s ease;
}
@media (max-width: 768px) {
    .popup-content {
        width: 80%;
        padding: 20px;
    }

    .popup-convenio-img {
        max-width: 100px;
    }
}
@media (max-width: 1200px) {
    .clinica-convenios {
        grid-template-columns: repeat(4, 1fr); 
    }
}

@media (max-width: 992px) {
    .clinica-convenios {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 768px) {
    .clinica-convenios {
        grid-template-columns: repeat(2, 2fr); 
    }
}

@media (max-width: 576px) {
    .quadro-aviso {
        width: 90%;
    }
    .clinica-convenios {
        grid-template-columns: repeat(2, 1fr);        
    }
}

@media (max-width: 1366px) {
        .clinica-convenios-slider .linha-separadora{
            margin-top: 50px;            
        }

        .footer .contatofooter{
            margin-left: -360px;
        }
            

}

@media (max-width: 1440px) {
    .clinica-convenios-slider .linha-separadora{
        margin-top: 50px;            
    }

    .footer .contatofooter{
        margin-left: -360px;
    }
        

}
@media (max-width: 1550px) {
    .clinica-convenios-slider .linha-separadora{
        margin-top: 50px;            
    }

    .footer .contatofooter{
        margin-left: -360px;
    }
        

}


.clinica-section {
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

  .clinica-texto-explicativo {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.2em;
    line-height: 1.8;
  }
  
  .clinica-texto-explicativo p {
    margin-bottom: 15px;
  }
  

.clinica-topico {
    margin-top: 20px;
    max-width: 800px;
    text-align: left;
    font-size: 1.2em;
}
  
.clinica-topico h2 {
    font-size: 1.8em;
    color: #002a60;
    margin-bottom: 10px;
}
  
  .clinica-boxes-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    max-width: 1000px;
    flex-wrap: wrap; 
  }
  
  .clinica-box {
    flex: 1;
    padding: 20px;
    background-color: rgba(245, 245, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    transition: transform 0.3s;
    text-align: left;
    font-size: 1.2em;
    line-height: 1.8;
    border-left: 4px solid #002a60;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease forwards;
  }
  
  .clinica-box:hover {
    transform: translateY(-5px);
  }
  
  .clinica-titulo-box {
    color: #002a60;
    padding-bottom: 10px;
    font-size: 1.4em;
    border-bottom: 2px solid rgba(0, 119, 182, 0.3);
    margin-bottom: 15px;
  }
  
 
  .clinica-topico-fotos {
    margin-top: 30px;
    max-width: 800px;
    text-align: left;
    font-size: 1.2em;
  }
  
  .clinica-fotos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; 
  }
  
  .clinica-foto {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .clinica-mais-fotos {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #ffffff;
    background-color: #002a60;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .clinica-mais-fotos:hover {
    background-color: #002a60;
}
  

  @keyframes slideUpFade {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  @media (max-width: 768px) {
    .clinica-box {
      max-width: 100%; 
    }
  
    .clinica-fotos-container, .clinica-boxes-container {
      flex-direction: column; 
      align-items: center;
    }
  
    .clinica-foto, .clinica-mais-fotos {
      width: 100%;
      max-width: 300px; 
    }
  
    .clinica-topico h2 {
      font-size: 1.6em; 
    }
  }

.nicho-newsletter {
    display: flex;
    max-width: 60%;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.menu-opcoes {
    flex: 1;
    padding: 20px;
    border-right: 2px solid #eaeaea;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background-color: #f8f9fa;
    border-radius: 8px 0 0 8px;
}
.menu-opcoes h2 {
    margin-bottom: 20px;
    font-size: 1.6em; 
    color: #333;
}
.menu-opcoes ul {
    list-style-type: none;
    padding: 0;
}

.menu-opcoes li {
    margin: 10px 0;
}

.menu-opcoes a {
    text-decoration: none;
    color: #002a60;
    padding: 10px 15px;
    border-radius: 5px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-opcoes a:hover {
    background-color: #002a60;
    color: white;
}

.detalhes-conteudo {
    flex: 2;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.area-imagem-botao {
    margin-bottom: 30px;
}

.banner-imagem {
    width: 100%;
    height: 250px; 
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
    object-fit: cover; 
}
.banner-imagem:hover {
    transform: scale(1.02); 

}

.voltarespecialidade:hover{
    background-color: #002a60;
}
.botao-acao,
.botao-final {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.botao-acao:hover{
    background-color: #002a60;
}
.botao-final:hover {
    background-color: #002a60;
}
.menu-opcoes a.active {
    background-color: #002a60;
    color: white;
}
.lista-vantagens {
    list-style-type: disc;
    margin-left: -2px;
    color: #333;
    font-size: 1.1em;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: background-color 0.3s ease;
}
.lista-vantagens:hover {
    background-color: rgba(255, 255, 255, 1);
}
.lista-vantagens li {
    position: relative;
    padding-left: 20px;
}

.lista-vantagens li::before {
    content: '✓';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}


.detalhes-conteudo h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.detalhes-conteudo p {
    line-height: 1.6;
}
.detalhes-conteudo li{
    color: #333;
}
.detalhes-conteudo ul{
    margin-bottom: 30px;
}
.galeria-imagens {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.imagem-galeria {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.imagem-galeria:hover {
    transform: scale(1.05);
}
.vantagens-imagens {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; 
}

.imagem-vantagem {
    width: 200px;
    height: auto;
    border-radius: 10%; 
    margin: 0 10px; 
    transition: transform 0.3s ease;
}

.imagem-vantagem:hover {
    transform: scale(1.05); 
}
@media (max-width: 768px) {
    .nicho-newsletter {
        flex-direction: column; 
        max-width: 100%;
    }

    .menu-opcoes {
        border-right: none; 
        border-bottom: 2px solid #eaeaea; 
        height: auto; 
        position: relative; 
    }

    .detalhes-conteudo {
        padding: 10px; 
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 10px;
        background-color: #002a60;
        color: white;
        border: none;
        border-radius: 5px;
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    .menu-opcoes {
        display: none; 
    }

    .menu-opcoes.active {
        display: block; 
    }
    .imagem-vantagem {
        width: 120px; 
    }
}


.desktop-menu .submenu {
    display: none;
    position: absolute;
    left: 0; 
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);  
    border-radius: 8px;
    margin-top: 12px; 
    padding: 0;
    min-width: 220px;  
    opacity: 0; 
    transform: translateY(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; 
    z-index: 1000;
    margin-left: -60px;
}

.menu-header li:hover .submenu {
    display: block;
    opacity: 1; 
    transform: translateY(0); 
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15); 
}

.submenu li {
    padding: 0;
    border-top: 1px solid #f0f0f0; 
}

.submenu li:first-child {
    border-top: none;
}

.submenu a {
    display: block;
    padding: 12px 24px; 
    color: #333333;
    font-size: 16px;  
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.menu-header li:has(.submenu) > a {
    position: relative;
    padding-right: 30px;  
}

.menu-header li:has(.submenu) > a::after {
    content: "▾"; 
    position: absolute;
    right: 10px; 
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 18px; 
    color: #343a40;
}

.menu-header li:hover > a::after {
    transform: translateY(-50%) rotate(180deg); 
    color: #007bff;  
}
.menu-header .submenu a:hover {
    color: #007bff;  
}
.menu-header .submenu li::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px; 
    background: #007bff; 
    position: absolute;
    left: 0;
    bottom: 0;  
    transform: scaleX(0);
    transition: transform 0.3s ease; 
}
.menu-header .submenu li:hover::after {
    transform: scaleX(1); 
}

@media (max-width: 768px) {
    .mobile-menu .submenu {
        display: none;
        position: static;
        background-color: transparent;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
    }

    .mobile-menu li > a {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu li:has(.submenu) > a::after {
        content: "▼";
        font-size: 16px; 
        margin-left: 8px;
        color: #343a40;
    }

    .mobile-menu .show-submenu .submenu {
        display: block;
    }
}
.overlay-container,
.overlay-containerconv,
.overlay-containercontato,
.overlay-containersobre,
.overlay-containeresp {
    position: relative;
    height: 150px; 
    width: 100%; 
    background-size: cover; 
    background-position: center; 
    overflow: hidden; 
}

.overlay-container {
    background-image: url('img/corpoclinico.jpg'); 
}

.overlay-containerconv {
    background-image: url('img/client-bg.jpg'); 
}

.overlay-containercontato {
    background-image: url('img/fun-bg.jpg'); 
}

.overlay-containersobre {
    background-image: url('img/gallery12.jpg'); 
}

.overlay-containeresp {
    background-image: url('img/blockqoute-bg.jpg'); 
}

.overlay-container::before,
.overlay-containerconv::before,
.overlay-containercontato::before,
.overlay-containersobre::before,
.overlay-containeresp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(20, 31, 51, 0.896); 
    z-index: 1; 
}

.overlay-title,
.overlay-titleconv,
.overlay-titlecontato,
.overlay-titlesobre,
.overlay-titleesp {
    position: absolute; 
    z-index: 2; 
    color: #ffffff; 
    font-size: 2.5rem;
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%); 
    padding: 0 15px; 
}


@media (max-width: 768px) {
    .overlay-title,
    .overlay-titleconv,
    .overlay-titlecontato,
    .overlay-titlesobre,
    .overlay-titleesp {
        font-size: 1.8rem; 
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .overlay-container,
    .overlay-containerconv,
    .overlay-containercontato,
    .overlay-containersobre,
    .overlay-containeresp {
    margin-top: 110px;
   
}
}


@media (max-width: 480px) {
    .overlay-title,
    .overlay-titleconv,
    .overlay-titlecontato,
    .overlay-titlesobre,
    .overlay-titleesp {
        font-size: 1.5rem; 
    }
}
.detalhes-catarata {
    flex: 2;
    padding: 20px;
    overflow-y: auto;
}
.area-imagem-botao-catarata {
    margin-bottom: 30px;
}
.banner-imagem {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}
.banner-imagem:hover {
    transform: scale(1.02);
}
.voltarespecialidade {
    margin-left: 26%;
    text-align: center;
    display: inline-block;
    width: 50%;
    background-color: #6c757d;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.voltarespecialidade:hover {
    background-color: #002a60;
}
.botao-acao-catarata,
.botao-final-catarata {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.botao-acao-catarata:hover {
    background-color: #002a60;
}
.botao-final-catarata:hover {
    background-color: #002a60;
}
.menu-opcoes a.active {
    background-color: #002a60;
    color: white;
}
.lista-vantagens-catarata {
    list-style-type: disc;
    margin-left: -2px;
    color: #333;
    font-size: 1.1em;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: background-color 0.3s ease;
}
.lista-vantagens-catarata:hover {
    background-color: rgba(255, 255, 255, 1);
}
.lista-vantagens-catarata li {
    position: relative;
    padding-left: 20px;
}
.lista-vantagens-catarata li::before {
    content: '✓';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.detalhes-catarata h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}
.detalhes-catarata p {
    margin-bottom: 20px;
    color: #555;
}
.detalhes-catarata li {
    color: #333;
}
.detalhes-catarata ul {
    margin-bottom: 30px;
}
.galeria-imagens-catarata {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.imagem-galeria {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.imagem-galeria:hover {
    transform: scale(1.05);
}
.detalhes-cornea {
    flex: 2;
    padding: 20px;
    overflow-y: auto;
}
.area-imagem-botao-cornea {
    margin-bottom: 30px;
}
.banner-imagem {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.banner-imagem:hover {
    transform: scale(1.02); 
}
.botao-acao-cornea,
.botao-final-cornea {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.botao-acao-cornea:hover,
.botao-final-cornea:hover {
    background-color: #002a60;
}
.lista-vantagens-cornea {
    list-style-type: disc;
    margin-left: -2px;
    color: #333;
    font-size: 1.1em;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: background-color 0.3s ease;
}
.lista-vantagens-cornea:hover {
    background-color: rgba(255, 255, 255, 1);
}
.lista-vantagens-cornea li {
    position: relative;
    padding-left: 20px;
}
.lista-vantagens-cornea li::before {
    content: '✓';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.detalhes-cornea h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}
.detalhes-cornea p {
    margin-bottom: 20px;
    color: #555;
}
.detalhes-cornea li {
    color: #333;
}
.detalhes-cornea ul {
    margin-bottom: 30px;
}
.detalhes-retina {
    flex: 2;
    padding: 20px;
    overflow-y: auto;
}
.area-imagem-botao-retina {
    margin-bottom: 30px;
}
.banner-imagem {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}
.banner-imagem:hover {
    transform: scale(1.02);
}
.botao-acao-retina,
.botao-final-retina {
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.botao-acao-retina:hover,
.botao-final-retina:hover {
    background-color: #002a60;
}
.lista-vantagens-retina {
    list-style-type: disc;
    margin-left: -2px;
    color: #333;
    font-size: 1.1em;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: background-color 0.3s ease;
}
.lista-vantagens-retina:hover {
    background-color: rgba(255, 255, 255, 1);
}
.lista-vantagens-retina li {
    position: relative;
    padding-left: 20px;
}
.lista-vantagens-retina li::before {
    content: '✓';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.detalhes-retina h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}
.detalhes-retina p {
    margin-bottom: 20px;
    color: #555;
}
.detalhes-retina li {
    color: #333;
}
.detalhes-retina ul {
    margin-bottom: 30px;
}
.clinica-convenios-slider {
    text-align: center;
    margin-top: 180px;
}
.clinica-convenios-slider h2 {
    font-size: 50px;
}
.clinica-slider-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}
.clinica-slider-item {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clinica-slider-item img {
    width: 100%;
    max-width: 150px; 
    height: auto;
    object-fit: contain;
}
.clinica-slider-container .clinica-slider-item {
    text-align: center;
    padding: 10px;
}
.clinica-slider-container .clinica-slider-item img {
    height: auto;
    border-radius: 8px;  
}
.clinica-aviso-caixa {
    display: flex;
    align-items: center;
    background-color: rgba(237, 237, 83, 0.7);
    padding: 15px;
    border-radius: 10px;
    margin: -15px auto;
    width: 30%;
}
.clinica-aviso-simbolo {
    font-size: 30px;
    margin-right: 10px;
}

.clinica-aviso-texto {
    flex: 1;
    text-align: center;
}
.owl-carousel .item {
    transition: opacity 0.6s ease; 
}
@media (max-width: 768px) {
    .clinica-slider-container {
        width: 90%;
    }

    .clinica-aviso-caixa {
        width: 90%;
    }
}
@media (max-width: 480px) {
    .clinica-slider-item img {
        max-width: 100px; 
    }

    .clinica-aviso-simbolo {
        font-size: 18px;
    }
    .clinica-aviso-caixa {
        margin-top: -120px;
        width: 90%;
    }
}
.error-404-container {
    position: relative;
    text-align: center;
    z-index: 2; 
    margin-top: 120px;
  }
  
  .background-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1%, transparent 30%);
    background-size: 10px 10px;
    animation: moveParticles 10s linear infinite;
    z-index: 1;
  }
  
  @keyframes moveParticles {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
  }
  
  .error-title {
    font-size: 12rem;
    font-weight: bold;
    color: #f44336;
    position: relative;
    z-index: 3;
    text-shadow: 0 0 10px rgba(244, 67, 54, 0.5), 0 0 20px rgba(244, 67, 54, 0.7);
    animation: shake 3s infinite;
  }
  
  @keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
  }
  
  .error-message {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #ddd;
    z-index: 3;
  }
  
  .particle-effect {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    z-index: 3;
  }
  
  .particle {
    font-size: 6rem;
    color: #ff5722;
    animation: float 2.5s ease-in-out infinite, rotate 3s linear infinite;
    opacity: 0.8;
    margin: 0 10px;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
  }
  
  @keyframes rotate {
    0%, 100% { transform: rotate(0); }
    50% { transform: rotate(10deg); }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .back-home {
    margin-top: 30px;
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    color: #333;
    background: #ff5722;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    z-index: 4; 
    position: relative;
  }
  
  .back-home:hover {
    background: #f44336;
    color: #fff;
  }
  
  .back-home:active {
    transform: scale(0.95);
  }


.whatsapp-chat {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}

.whatsapp-button {
    background-color: #2AC688; 
    color: var(--e-global-color-1a0db661);
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14); 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 56px;
    width: 56px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #25D366;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:active {
    transform: scale(0.95);
}


.whatsapp-button .icon {
    font-size: 28px;
    color: white; 
    transition: transform 0.3s ease, color 0.3s ease; 
}

.whatsapp-button.active .icon {
    transform: rotate(720deg); 
    color: #000000; 
}

.whatsapp-button:active {
    transform: scale(0.95); 
}


.wa__btn_popup_txt {
    display: block;
    position: absolute;
    right: 100%;
    margin-right: 7px;
    color: #444645; 
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.wa__btn_popup_txt span strong {
    font-weight: bold;
}

.wa__btn_popup_txt.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-popup {
    display: none;
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 330px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 5px solid #ffffff;
}

.whatsapp-popup.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-popup.fade-out {
    opacity: 0;
    transform: translateY(20px);
}


.whatsapp-header {
    background-color: #128C7E;
    color: white;
    padding: 15px;
    text-align: left;
}

.whatsapp-header p {
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.whatsapp-header span {
    font-size: 14px;
}

.whatsapp-body {
    padding: 15px;
    color: #555;
    font-size: 16px;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
}

.whatsapp-contact:hover {
    background-color: #f5f5f5;
    transition: background-color 0.3s;
}

.whatsapp-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-avatar img:hover {
    border-color: #25D366;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-info {
    margin-left: 10px;
}

.whatsapp-name {
    font-weight: bold;
    font-size: 14px;
}

.whatsapp-name:hover {
    color: #25D366;
    transition: color 0.3s;
}

.whatsapp-role {
    font-size: 12px;
    color: #888;
}


.custom-gallery-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px; 
  }
  
  .custom-gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; 
  }
  
  .custom-gallery-item {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.9;
  }
  
  .custom-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
  

  .custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  
  .custom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%; 
  }
  
  .custom-main-image {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  .custom-thumbnail-container {
    display: flex;
    justify-content: center; 
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
  }
  .custom-thumbnail-container .thumbnail-item {
    scroll-snap-align: center;
  }
  
  .custom-thumbnail-container::-webkit-scrollbar {
    height: 8px;
  }
  
  .custom-thumbnail-container::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 5px;
  }
  
  .custom-thumbnail-container::-webkit-scrollbar-track {
    background: #eee;
  }
  
  .thumbnail-item {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0.8;
  }
  
  .thumbnail-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  
  .thumbnail-item.active-thumbnail {
    border: 3px solid white;
    opacity: 1;
  }
  
  .custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .custom-close:hover {
    color: #ff6347;
  }
  
  @media (max-width: 768px) {
    .custom-gallery-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  
    .custom-main-image {
      max-height: 65vh;
    }
  
    .thumbnail-item {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 480px) {
    .custom-gallery-container {
      grid-template-columns: 1fr;
    }
  
    .custom-main-image {
      max-height: 50vh;
    }
  }
  @media (min-width: 769px) {
    .custom-modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .custom-main-image {
      max-width: 80%;
      margin-bottom: 20px;
    }
  
    .custom-thumbnail-container {
      justify-content: center;
      width: 80%;
      margin: 0 auto;
    }
  }
  
  .thumbnail-item {
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  }
  
  .thumbnail-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }  
  
  