/* ============================
   BASE
============================ */
body {
    font-family: "Manrope", sans-serif;
    background: #F7FAFD;
    color: #333;
}

/* ============================
   ÍCONES LATERAIS FIXOS
============================ */
.social-floating {
    position: fixed;
    right: 20px;
    top: 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-floating a {
    width: 42px;
    height: 42px;
    background: #009EC5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: .3s;
}

.social-floating a:hover {
    background: #003580;
}

/* ============================
   HERO SECTION
============================ */
.hero {
	background: 
						linear-gradient(135deg, #009ec57a, #005f9945), url("../images/1.jpg") center/cover no-repeat;
	padding: 230px 0 260px;
	color: #fff;
	text-align: center;
	position: relative;
}
.about-card {
    cursor: pointer;
}

/* ============================
   HERO – ÍCONES FLUTUANTES
============================ */
.hero-icons {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-bottom: 45px;
}

.icon-wrap svg {
    width: 70px;
    height: 70px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
}

.icon-wrap:nth-child(2) svg { animation-delay: .3s; }
.icon-wrap:nth-child(3) svg { animation-delay: .6s; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ============================
   HERO – TEXTOS
============================ */
.hero-title {
    font-family: "Titillium Web", sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0,0,0,0.45);
}

.hero-sub {
    font-size: 1.5rem;
    margin-top: 12px;
    opacity: 1;
    font-weight: 300;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero-info {
    font-size: 1.2rem;
    margin-top: 25px;
    font-weight: 300;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* ============================
   BOTÃO INFANTIL
============================ */
.btn-primary {
    background: rgba(40, 182, 230, 0.8);
    backdrop-filter: blur(6px);
    padding: 16px 45px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: .3s;
}

.btn-primary:hover {
    background: #1d8bad;
    transform: translateY(-3px);
}
.hero-contact {
    margin-top: 25px;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero-hours {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.hero-hours i,
.hero-phones i {
    color: #28B6E6; /* azul bebê do tema */
    font-size: 1.3rem;
}

.hero-phones span {
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
}
/* ABOUT SECTION */
.about-section {
    background: #FFF;
}

.section-title {
    font-family: "Titillium Web", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #003580;
}

.about-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: .3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.about-card.active {
    background: linear-gradient(135deg, #009ec5, #005f99);
    color: white;
}

.about-card.active .about-btn {
    background: #003580;
}

.about-icon i {
    font-size: 3rem;
    color: #28B6E6;
}

.about-card.active .about-icon i {
    color: #fff;
}

.about-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.about-text {
    font-size: 1rem;
    color: #555;
}

.about-card.active .about-text {
    color: #f0f0f0;
}

.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #28B6E6;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
}

.about-btn:hover {
    background: #1d8bad;
    color: #fff;
}
/* HERO - correção para imagens inline */
.icon-wrap img {
    width: 70px;
    height: 70px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
}
/* ============================
   SERVICES SECTION
============================ */

.services-section {
    background: #E3EEF9;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 6px 15px rgba(0,0,0,0.07);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #28B6E6;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-card:hover .service-icon {
    background: #1d8bad;
}

.service-title {
    font-family: "Titillium Web", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #003580;
    margin-bottom: 10px;
}

.service-text {
    font-size: .95rem;
    color: #555;
}
/* ============================
   EXAMS SECTION
============================ */

.exams-section {
    background: linear-gradient(135deg, #009ec5, #005f99);
    padding-top: 70px;
    padding-bottom: 80px;
}

.exams-section .section-title {
    color: #fff;
    font-size: 2.6rem;
}

.exams-section .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.exam-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    text-align: left;
    height: 100%;
    transition: .3s;
}

.exam-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.exam-title {
    font-family: "Titillium Web", sans-serif;
    font-size: 1.3rem;
    color: #003580;
    font-weight: 700;
    margin-bottom: 15px;
}

.exam-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exam-list li {
    font-size: 1rem;
    color: #333;
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.exam-list li::before {
    content: "•";
    color: #28B6E6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    top: -3px;
}
.navbar {
    transition: .4s;
}

.navbar.scrolled {
    background: linear-gradient(135deg, #009ec5, #005f99);
    box-shadow: 0 4px 22px rgba(0,0,0,0.08);
}
@keyframes float {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0); }
}
section {
    padding-top: 90px;
    padding-bottom: 90px;
}
/* ============================
   GALLERY SECTION
============================ */

.gallery-section {
    background: #E3EEF9;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: .3s;
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.07);
    filter: brightness(0.8);
}

.gallery-item::after {
    content: "\f00e"; /* ícone lupa */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: .3s;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Modal */
.gallery-modal-content {
    background: rgba(0,0,0,0.85);
    border: none;
    position: relative;
    padding: 0;
}

.gallery-modal-img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    right: 20px;
    top: 20px;
    filter: invert(1);
    z-index: 10;
}

.gallery-instagram a {
    color: #28B6E6;
    font-weight: 700;
    text-decoration: none;
}
/* ============================
   TEAM SECTION (ESTILO ANTIGO MODERNO)
============================ */

.team-section {
    background: #fff;
    color: #fff;
}

#team-name {
    font-family: "Titillium Web", sans-serif;
    font-size: 2rem;
    font-weight: 700;
		color: #00629b;
}

#team-role {
    font-size: 1.2rem;
    opacity: 0.9;
		color: #003580;
}

#team-description {
	color: #000;
}

.team-photo-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.team-main-photo {
    border-radius: 6px;
}

.team-thumbs img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
    border: 3px solid transparent;
    filter: brightness(.8);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.team-thumbs img:hover {
    transform: translateY(-3px);
    filter: brightness(1);
}

.team-thumb.active {
    border-color: #fff;
    filter: brightness(1);
}
.team-photo-wrapper {
    width: 100%;
    max-width: 500px;        /* tamanho máximo no desktop */
    height: 420px;           /* altura padrão */
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.team-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* preenche sem distorcer */
    object-position: center; /* centraliza o rosto */
    image-rendering: auto;   /* deixa a qualidade natural */
}
/* ============================
   INSURANCE / CONVÊNIOS
============================ */
.insurance-section {
    background: #E3EEF9;
}

.insurance-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: .3s ease;
}

.insurance-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(40%);
    transition: .3s ease;
}

.insurance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.insurance-card:hover img {
    filter: grayscale(0%);
}
/* ============================
   CONTACT SECTION
============================ */

.contact-section {
    background: linear-gradient(135deg, #009ec5, #005f99);
    color: white;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.contact-card .form-control {
    border-radius: 10px;
    padding: 12px 15px;
}

.contact-info {
    color: #f7f7f7;
}

.contact-icon {
    font-size: 1.4rem;
    margin-right: 12px;
    margin-top: 4px;
    width: 30px;
		color: #003580;
}

.contact-link {
    color: #a8d7ff;
    text-decoration: none;
}

.contact-link:hover {
    color: #ffffff;
}

.social-icons a {
    font-size: 1.6rem;
    color: #003580;
    margin-right: 15px;
    transition: .3s;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-4px);
}

.contact-details li {
    font-size: 1rem;
}
/* ============================
   FOOTER
============================ */
.footer-section {
    background: #002954; /* Azul mais escuro que a seção de contato */
    color: #dce7f5;
}

.footer-logo {
    width: 150px;
}

.footer-title {
    color: #ffffff;
    font-family: "Titillium Web", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-list li i {
    color: #28B6E6;
    margin-right: 10px;
    font-size: 1.1rem;
}

.footer-list a {
    color: #a8d7ff;
    text-decoration: none;
}
.footer-list a:hover {
    color: #fff;
}

.footer-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.footer-map {
    width: 100%;
    height: 220px;
    border: 0;
}

.footer-social a {
    color: #a8d7ff;
    font-size: 1.6rem;
    margin-right: 15px;
    transition: .3s;
}
.footer-social a:hover {
    color: #fff;
    transform: translateY(-4px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.footer-copy {
    font-size: 0.9rem;
    color: #dce7f5;
}

.footer-dev-logo {
    width: 90px;
    margin-left: 5px;
    vertical-align: middle;
}

.footer-dev a:hover img {
    filter: brightness(1.2);
}
.navbar-toggler {
    border: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 30px;
    height: 30px;
}
@media (max-width: 992px) {
    .navbar {
        background: linear-gradient(135deg, #009ec5, #005f99) !important;
        padding: 12px 0;
    }

    .navbar .nav-link {
        color: #fff !important;
        font-size: 1.2rem;
        padding: 12px 0;
    }

    .navbar-collapse {
        background: linear-gradient(135deg, #009ec5, #005f99);
        padding: 15px;
        border-radius: 0 0 12px 12px;
    }
}
@media (max-width: 992px) {
    header#hero {
        padding-top: 180px !important;
    }
}
.navbar.scrolled {
    background: linear-gradient(135deg, #009ec5, #005f99) !important;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #00639b #fff;
}