@import url('https://fonts.googleapis.com/css2?&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --teal-color: #39cabb;
    --navy-color: #1e2a4a;
    --light-teal: #e0f7f5;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.top-header {
    background-color: var(--teal-color);
    color: white;
    padding: 15px 0;
    font-size: 16px;
}

.top-header a {
    color: white;
    text-decoration: none;
}

.top-header i {
    margin-right: 5px;
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    /* height: 50px; */
}

.navbar-nav li {
    padding: 0 20px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    padding: 0 15px;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--teal-color);
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.btn-appointment {
    background-color: var(--teal-color);
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-appointment:hover {
    background-color: var(--navy-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background-image: url('https://img.freepik.com/free-photo/medical-banner-with-doctor-wearing-coat_23-2149611193.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
    color: white;
}

.hero-interna {
    padding: 20px 0 !important;
}

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

.bg-transparencia {
    background-image: url('../img/bg-transparencia.jpg');
    background-position: top;
}

.bg-servicos {
    background-image: url('../img/bg-servicos.jpg');
    background-position: top;
}

.bg-contato {
    background-image: url('../img/bg-contato.jpg');
    background-position: top;
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 42, 74, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: var(--teal-color);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--navy-color);
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-transparencia {
    background-color: var(--teal-color);
    color: white;
}

.lei {
    font-size: 14px;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--teal-color);
}

.section-title p {
    font-family: 'Roboto', sans-serif;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.teal-bg {
    background-color: var(--teal-color);
    color: white;
}

.service-card.teal-bg .service-title,
.service-card.teal-bg .service-text {
    color: white;
}

.bg-service-link {
    background-color: #e1f7f5;
    color: var(--teal-color) !important;
    padding: 15px 30px;
}

.bg-service-link:hover {
    background-color: var(--navy-color);
    color: white !important;

}

.service-title {
    color: var(--navy-color) !important;
}

.service-icon {
    background-color: #e1f7f5;
    width: 95px;
    height: 95px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.service-icon img {
    max-width: 100%;
}

.service-content {
    text-align: center;
    padding: 30px;
}

.service-content .service-title {
    color: var(--navy-color) !important;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-color);
}

.service-text {
    color: #6c757d;
    margin-bottom: 0px;
}

.service-link {
    color: var(--teal-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-badge {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    background-color: var(--teal-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 15px;
}

.about-badge-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.about-badge-text p {
    margin-bottom: 0;
    color: #6c757d;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--teal-color);
}

.about-content p {
    color: #6c757d;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-color);
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    margin-bottom: 0;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    background-color: var(--teal-color);
    padding: 50px 0;
    color: white;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.cta-content p {
    margin-bottom: 0;
    opacity: 0.8;
}

.btn-cta {
    background-color: var(--navy-color);
    color: white;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: white;
    color: var(--navy-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    height: calc(100% - 30px);
}

.testimonial-card .text-muted {
    color: var(--teal-color) !important;
}

.testimonial-card h3 {
    color: var(--navy-color);
}

.testimonial-icon {
    color: var(--teal-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.bg-navy {
    background-color: var(--navy-color);
    color: white;
}

.text-teal {
    color: var(--teal-color);
}


.text-star {
    color: var(--teal-color);
}

.testimonial-text {
    color: #6c757d;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    margin-bottom: 0;
    color: #6c757d;
}

/* Stats Section */
.stats-section {
    background-color: var(--navy-color);
    padding: 80px 0;
    color: white;
}

.text-navy {
    color: var(--navy-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--teal-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--navy-color);
    color: white;
    padding: 80px 0 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    color: white;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--teal-color);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--teal-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--teal-color);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--teal-color);
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    background-color: #1b2642;
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-align: center;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    border: none;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    background-color: var(--navy-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--navy-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .btn-appointment {
        margin-top: 15px;
        display: inline-block;
    }

    .hero-title {
        font-size: 36px;
    }

    .about-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -50px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.social-icons a {
    padding: 0 5px;

}

@media (max-width: 767px) {
    .top-header {
        text-align: center;
    }

    .top-header .social-icons,
    .top-header .contact-info {
        margin-bottom: 10px;
    }

    .hero-section {
        padding: 100px 0;
    }

    .hero-title {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .cta-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-button {
        text-align: center;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }
}

.f-22 {
    font-size: 22px;
}

.service-content .fale-conosco {
    color: white !important;
}