/*Configura��es gerais*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #6495ed;
    --secondary-color: #061425;
    --text-color: #ffffff;
    --hover-color: #333333;
    --hover-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Wpp fixed */

.wpp-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.wpp-fixed img {
    width: 60px;
}

.wpp-fixed::before,
.wpp-fixed::after {
    content: '';
    display: block;
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid #008000;
    animation: animar 1.5s linear infinite;
}

.wpp-fixed::after {
    animation-delay: .5s;
}

@keyframes animar {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.container {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.container .hero {
    background: linear-gradient(180deg, #000000, #154488);
}

/** Header */

.container .hero header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.8rem;
}

.container .hero header img {
    width: 250px;
}

.container .hero header nav {
    display: flex;
    gap: 1rem;
}

.container .hero header nav a {
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.container .hero header nav a:hover {
    color: #6495ed;
}

.container .hero header .header-button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    gap: 0.2rem;
    transition: all 0.3s ease;
}

.container .hero header .header-button:hover {
    background-color: #ffffff;
    color: #6495ed;
    box-shadow: var(--hover-shadow);
    transform: scale(1.05);
}

.container .hero header .header-button img {
    width: 20px;
    height: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    gap: 5px;
    position: relative;
    z-index: 1000;
    /* Garante que fique acima do menu */
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
}

/* Transformar em X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50;
    position: absolute;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50;
    position: absolute;
}

/** Main Section */

.container .hero .main-section {
    font-family: "Poppins", sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
}

.container .hero .main-section .text-content {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container .hero .main-section .text-content h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.container .hero .main-section .text-content h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.container .hero .main-section .text-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: left;
}

.container .hero .main-section .text-content .main-button {
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    gap: 0.2rem;
    transition: all 0.3s ease;
}

.container .hero .main-section .text-content .main-button:hover {
    background-color: var(--text-color);
    color: #333333;
    box-shadow: var(--hover-shadow);
    transform: scale(1.05);
}

.container .hero .main-section .text-content .main-button img {
    width: 20px;
    height: 20px;
}

.container .hero .main-section .img-content {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    width: 33%;
}

.container .hero .main-section .img-content img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.container .especialidades {
    font-family: "Poppins", sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.container .especialidades h1,
p {
    text-align: center;
}

.container .especialidades h1 {
    font-size: 3rem;
}

.container .especialidades h1 span {
    color: var(--primary-color);
}

.container .especialidades p {
    width: 80%;
    font-size: 1.1rem;
    color: var(--hover-color);
    margin-bottom: 1rem;
    text-align: center;
}

.container .especialidades .main-button {
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    gap: 0.2rem;
    transition: all 0.3s ease;
}

.container .especialidades .main-button:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: var(--hover-shadow);
    transform: scale(1.05);
}

.container .especialidades .main-button img {
    width: 20px;
    height: 20px;
}

.container .especialidades .especialidades-items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.container .especialidades .especialidades-items .especialidade-item {
    width: 25%;
    height: 400px;
    background: url(./assets/teste.png);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 2rem;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.container .especialidades .especialidades-items .especialidade-item:nth-child(2) {
    background: url(./assets/teste2.png);
    background-size: cover;
    background-position: center;
}

.container .especialidades .especialidades-items .especialidade-item:nth-child(3) {
    background: url(./assets/teste3.png);
    background-size: cover;
    background-position: center;
}

.container .especialidades .especialidades-items .especialidade-item:nth-child(4) {
    background: url(./assets/teste4.png);
    background-size: cover;
    background-position: center;
}

.container .especialidades .especialidades-items .especialidade-item:nth-child(5) {
    background: url(./assets/teste5.png);
    background-size: cover;
    background-position: center;
}

.container .especialidades .especialidades-items .especialidade-item:nth-child(6) {
    background: url(./assets/teste6.png);
    background-size: cover;
    background-position: center;
}

.container .especialidades .especialidades-items .especialidade-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Dark overlay */
    z-index: 1;
    transition: background 0.3s ease;
}

.container .especialidades .especialidades-items .especialidade-item:hover::before {
    background: rgba(0, 0, 0, 0.9);
    /* Darker overlay on hover */
}

.container .especialidades .especialidades-items .especialidade-item h2,
.container .especialidades .especialidades-items .especialidade-item p {
    position: relative;
    z-index: 2;
    color: #ffffff;
    /* Ensure text is readable */
    text-align: center;
}

.container .especialidades .especialidades-items .especialidade-item h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.container .especialidades .especialidades-items .especialidade-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
}

/** Sobre Section */

.container .sobre {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(180deg, #000000, #154488);
    width: 100%;
    margin-top: 2rem;
    text-align: center;
    height: fit-content;
    padding: 1rem;
}

.container .sobre h1 {
    color: var(--text-color);
    font-size: 3rem;
    margin: 1rem 0;
}

.container .sobre .sobre-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.container .sobre .sobre-content .sobre-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 40%;
}

.container .sobre .sobre-content .sobre-text .main-button {
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    gap: 0.2rem;
    transition: all 0.3s ease;
}

.container .sobre .sobre-content .sobre-text .main-button:hover {
    background-color: var(--text-color);
    color: #333333;
    box-shadow: var(--hover-shadow);
    transform: scale(1.05);
}

.container .sobre .sobre-content .sobre-text .main-button img {
    width: 20px;
    height: 20px;
}

.container .sobre .sobre-content .sobre-text h1,
p {
    text-align: left;
}

.container .sobre .sobre-content .sobre-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.container .sobre .sobre-content .sobre-img {
    display: flex;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 30%;
}

.container .sobre .sobre-content .sobre-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/** Feedback Section */

.feedbacks {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--text-color);
    color: var(--hover-color);
    font-family: "Poppins", sans-serif;
}

.feedbacks h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Nova camada para controlar o overflow */
.carousel-wrapper {
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 2rem;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    flex-shrink: 0;
    text-align: center;
}

.carousel-item p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.carousel-item span {
    font-size: 1rem;
    font-style: italic;
    color: var(--hover-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-controls button {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.carousel-controls button:hover {
    background-color: var(--hover-color);
}

.feedbacks .main-button {
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin: 3rem auto 0 auto;
}

.feedbacks .main-button:hover {
    background-color: var(--text-color);
    color: #333333;
    box-shadow: var(--hover-shadow);
    transform: scale(1.05);
}

.feedbacks .main-button img {
    width: 20px;
    height: 20px;
}

/* Responsivo para Feedback Section */

@media (max-width: 1024px) {
    .carousel-wrapper {
        width: 80%;
    }

    .carousel-item p {
        font-size: 1rem;
    }

    .carousel-item span {
        font-size: 0.9rem;
    }

    .carousel-controls button {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .feedbacks h1 {
        font-size: 2rem;
    }

    .carousel-wrapper {
        width: 100%;
    }

    .carousel {
        will-change: transform;
        touch-action: pan-y;
    }

    .carousel-item p {
        font-size: 0.9rem;
    }

    .carousel-item span {
        font-size: 0.8rem;
    }

    .carousel-controls button {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .feedbacks h1 {
        font-size: 1.8rem;
    }

    .carousel-item {
        width: 100%;
    }

    .carousel-item p {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .carousel-item span {
        font-size: 0.7rem;
    }

    .carousel-controls button {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Modal for Convenios */

.container .convenios {
    background: linear-gradient(180deg, #000000, #154488);
    font-family: "Poppins", sans-serif;
    width: 100%;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem;
}

.container .convenios h1 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.container .convenios p {
    color: var(--text-color);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.container .convenios .main-button {
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    gap: 0.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: -1rem;
}

.container .convenios .main-button:hover {
    background-color: var(--text-color);
    color: #333333;
    box-shadow: var(--hover-shadow);
    transform: scale(1.05);
}

.container .convenios .main-button img {
    width: 20px;
    height: 20px;
}

/*PopUp*/

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background-color: var(--text-color);
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
}

.popup h2 {
    margin-top: 0;
    font-size: 24px;
    color: var(--sub-title-color);
}

.popup ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.popup ul li {
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    color: var(--p-d-color);
}

.close-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.close-btn:focus {
    outline: none;
}

/* Responsividade */    
@media (max-width: 600px) {
    .popup {
        width: 90%;
        padding: 20px;
    }

    .btn-popup {
        font-size: 14px;
        padding: 10px 20px;
    }

    .popup h2 {
        font-size: 20px;
    }

    .popup ul li {
        font-size: 16px;
    }

    .close-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Contato Section */
.container .contato {
    font-family: "Poppins", sans-serif;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 100%;
    height: fit-content;
    flex-wrap: wrap;
    /* Added for responsiveness */
}

.container .contato .titles-content {
    width: 40%;
    text-align: center;
    /* Center text for smaller screens */
}

.container .contato .titles-content h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin: 1rem 0;
}

.container .contato .btn-content .main-button {
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: var(--text-color);
    color: var(--hover-color);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.container .contato .btn-content .main-button:hover {
    background-color: var(--text-color);
    color: #333333;
    box-shadow: var(--hover-shadow);
    transform: scale(1.05);
}

.container .contato .btn-content .main-button img {
    width: 20px;
    height: 20px;
}

/* Footer */

.footer {
    background: var(--secondary-color);
    color: #ccc;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--text-color);
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-social-icons a img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

.footer-main {
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: space-around;
}

.footer-about .logo {
    width: 250px;
}

.footer-contact h4,
.footer-locations h4 {
    color: var(--primary-color);
    letter-spacing: 2px;
}

.footer-contact .icon,
.footer-locations .icon {
    width: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: var(--text-color);
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    border-top: 1px solid var(--text-color);
    padding-top: 10px;
}

.privacy-policy {
    display: block;
    margin-top: 5px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 12px;
}

.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-floating img {
    width: 30px;
}

/* Responsivo Geral */
@media (max-width: 1500px) {
    .container .especialidades .especialidades-items .especialidade-item h2 {
        font-size: 1.5rem;
    }

    .container .especialidades .especialidades-items .especialidade-item p {
        font-size: 0.8rem;
    }
}


@media (max-width: 1024px) {
    .container .hero header {
        flex-direction: column;
        gap: 1rem;
    }

    .container .hero header nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container .hero .main-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .container .hero .main-section .text-content {
        width: 90%;
        align-items: center;
    }

    .container .hero .main-section .img-content {
        width: 80%;
        margin-top: 1rem;
    }

    .container .hero .main-section .text-content p {
        text-align: center;
    }

    .container .especialidades .especialidades-items .especialidade-item {
        width: 45%;
        height: 300px;
    }

    .container .sobre h1 {
        font-size: 2.5rem;
    }

    .container .sobre .sobre-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .container .sobre .sobre-content .sobre-text {
        width: 80%;
        text-align: center;
    }

    .container .sobre .sobre-content .sobre-img {
        width: 60%;
    }

    .container .contato {
        flex-direction: column;
        gap: 1.5rem;
    }

    .container .contato .titles-content {
        width: 80%;
    }

    .container .contato .titles-content h2 {
        font-size: 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-about,
    .footer-contact,
    .footer-locations {
        flex: none;
        width: 100%;
    }

    .footer-about .logo {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .wpp-fixed img {
        width: 45px;
    }

    .container .hero header {
        justify-content: space-between;
        padding: 1rem;
    }

    .container .hero header nav {
        position: absolute;
        top: 180px;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .container .hero header nav.active {
        height: 300px;
        /* Altura quando aberto */
    }

    .container .hero header nav a {
        margin: 1rem 0;
    }

    .header-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .container .hero .main-section .text-content h1 {
        font-size: 2rem;
    }

    .container .hero .main-section .text-content h2 {
        font-size: 1.3rem;
    }

    .container .hero .main-section .text-content p {
        font-size: 1rem;
    }

    .container .hero .main-section .text-content,
    .container .hero .main-section .img-content {
        width: 100%;
    }

    .container .especialidades .especialidades-items .especialidade-item {
        width: 100%;
        height: 250px;
    }

    .container .especialidades .especialidades-items .especialidade-item h2 {
        font-size: 1.5rem;
    }

    .container .especialidades .especialidades-items .especialidade-item p {
        font-size: 0.8rem;
    }

    .container .especialidades h1 {
        font-size: 2.2rem;
    }

    .container .especialidades p {
        font-size: 0.8rem;
    }

    .container .sobre .sobre-content .sobre-text h1,
    p {
        text-align: center;
        font-size: 2rem;
    }

    .container .sobre .sobre-content .sobre-text {
        justify-content: center;
        align-items: center;
    }

    .container .sobre .sobre-content .sobre-text p {
        text-align: center;
        font-size: 1rem;
    }

    .container .sobre .sobre-content .sobre-img {
        width: 80%;
    }

    .container .contato .titles-content h2 {
        font-size: 1.3rem;
    }

    .container .contato .btn-content .main-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-about,
    .footer-contact,
    .footer-locations {
        flex: none;
        width: 100%;
    }

    .footer-about .logo {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .container .hero header img {
        width: 150px;
    }

    .container .hero header nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .container .hero .main-section {
        padding: 1rem;
    }

    .container .hero .main-section .text-content h1 {
        font-size: 1.6rem;
    }

    .container .hero .main-section .text-content h2 {
        font-size: 1.1rem;
    }

    .container .hero .main-section .text-content p {
        font-size: 0.8rem;
    }

    .container .especialidades .especialidades-items .especialidade-item {
        width: 100%;
        height: 200px;
    }

    .container .sobre .sobre-text h1 {
        font-size: 1.8rem;
    }

    .container .sobre .sobre-content .sobre-text p {
        font-size: 0.9rem;
    }

    .container .sobre .sobre-content .sobre-text {
        width: 100%;
    }

    .container .sobre .sobre-content .sobre-img {
        width: 100%;
    }

    .container .contato {
        padding: 1rem;
    }

    .container .contato .titles-content {
        width: 100%;
    }

    .container .contato .titles-content h2 {
        font-size: 1.2rem;
    }

    .container .contato .btn-content .main-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .container .convenios .main-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-nav a {
        font-size: 1.2rem;
        display: block;
        margin: 5px 0;
    }

    .footer-main {
        text-align: center;
    }

    .footer-main .footer-contact p {
        font-size: 1.2rem;
    }

    .footer-main .footer-locations p {
        font-size: 1.2rem;
    }

    .footer-about .logo {
        width: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-bottom a {
        font-size: 0.7rem;
    }

    .carousel-wrapper {
        width: 100%;
    }
}