/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    --header-height: 4rem;

    /* Brand Colors */
    --primary-color: #178b44;
    --secondary-color: #442b18;
    --tertiary-color: #6d6758;
    --dark-color: #1a1a1a;
    --white-color: #ffffff;
    
    /* Additional Colors */
    --primary-light: #1fa652;
    --primary-dark: #136938;
    --bg-color: #f8f9fa;
    --text-color: #1a1a1a;
    --text-light: #6d6758;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* Typography */
    --body-font: 'Poppins', sans-serif;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;

    /* Font Weight */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Margins */
    --mb-0-5: 0.5rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Responsive Typography */
@media screen and (max-width: 968px) {
    :root {
        --h1-font-size: 2rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
    }
}

/* ========== BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: var(--dark-color);
    font-weight: var(--font-semibold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--body-font);
}

/* ========== REUSABLE CSS CLASSES ========== */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding: 5rem 0 4rem;
}

.section__header {
    text-align: center;
    margin-bottom: var(--mb-3);
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--dark-color);
    margin-bottom: var(--mb-0-5);
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section__subtitle {
    color: var(--text-light);
    font-size: var(--normal-font-size);
    margin-top: var(--mb-1);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: var(--font-medium);
    transition: var(--transition);
    font-size: var(--normal-font-size);
}

.button--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(23, 139, 68, 0.3);
}

.button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(23, 139, 68, 0.4);
}

.button--secondary {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button--secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.button--small {
    padding: 0.75rem 1.5rem;
    font-size: var(--small-font-size);
}

.button--block {
    width: 100%;
    justify-content: center;
}

/* ========== HEADER & NAV ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: var(--z-fixed);
    transition: var(--transition);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    font-size: 1.1rem;
}

.nav__logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link--login {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.nav__link--login::after {
    display: none;
}

.nav__link--login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 139, 68, 0.3);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* ========== HOME ========== */
.home {
    margin-top: var(--header-height);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.home__data {
    z-index: 1;
}

.home__title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-1);
    line-height: 1.2;
}

.home__title span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home__description {
    color: var(--text-light);
    margin-bottom: var(--mb-2);
    font-size: 1.1rem;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home__img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home__img-overlay {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(23, 139, 68, 0.3);
    animation: float 3s ease-in-out infinite;
}

.home__img-overlay i {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Home Stats */
.home__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat__card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat__card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.stat__number {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stat__text {
    color: var(--text-light);
}

/* ========== ABOUT ========== */
.about {
    background: var(--white-color);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about__img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(23, 139, 68, 0.2);
}

.carousel {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel__inner {
    width: 100%;
    height: 100%;
}

.carousel__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel__img.active {
    opacity: 1;
}

.carousel__dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white-color);
    width: 25px;
    border-radius: 5px;
}

.about__img-overlay {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(23, 139, 68, 0.2);
}

.about__img-overlay i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
}

.about__subtitle {
    font-size: var(--h3-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.about__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1-5);
    text-align: justify;
}

.about__values {
    margin-top: var(--mb-2);
}

.value__item {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--mb-1-5);
    align-items: flex-start;
}

.value__item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.value__item h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.value__item p {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

/* ========== SERVICES ========== */
.services {
    background: var(--bg-color);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service__card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--mb-1-5);
}

.service__icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.service__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
}

.service__description {
    color: var(--text-light);
}

/* ========== SPECIALTIES ========== */
.specialties {
    background: var(--white-color);
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.specialty__card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    cursor: pointer;
}

.specialty__card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.specialty__card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.specialty__card h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.specialty__list {
    display: none; /* Hide in card, show in modal */
    text-align: left;
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.modal .specialty__list {
    display: block;
}

.specialty__list li {
    font-size: var(--normal-font-size);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.specialty__list li:last-child {
    border-bottom: none;
}

.specialty__list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal__container {
    position: relative;
    background: var(--white-color);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal.show .modal__container {
    transform: translateY(0);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.modal__title {
    font-size: var(--h3-font-size);
    color: var(--primary-color);
    margin: 0;
}

.modal__close {
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal__close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal__body {
    max-height: 90vh;
    overflow-y: auto;
}

/* ========== ENTRY MODAL SPECIFIC (Style: Official Communication) ========== */
.modal__container--entry {
    max-width: 700px;
    width: 85%;
    padding: 1.5rem; /* White border/padding like reference */
    background: var(--white-color);
    border-radius: 25px;
    overflow: visible; /* Allow close button to overlap slightly if needed */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal__body--entry {
    max-height: 85vh;
    border-radius: 15px;
    overflow-y: auto; /* Permite ver toda la imagen si es muy alta */
    overflow-x: hidden;
    scrollbar-width: thin; /* Para navegadores modernos */
    scrollbar-color: var(--primary-color) transparent;
}

/* Estilos para la barra de desplazamiento en Webkit (Chrome, Safari, Edge) */
.modal__body--entry::-webkit-scrollbar {
    width: 6px;
}

.modal__body--entry::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.modal__close--entry {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--white-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    font-size: 1.4rem;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.modal__close--entry:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--primary-color);
    color: var(--white-color);
}

.modal__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ========== SPECIALISTS ========== */
.specialists {
    background: var(--bg-color);
}

.specialists__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.specialist__card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.specialist__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.specialist__img {
    height: 350px;
    overflow: hidden;
}

.specialist__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.specialist__card:hover .specialist__img img {
    transform: scale(1.05);
}

.specialist__img i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.9);
}

.specialist__data {
    padding: 2rem;
    text-align: center;
}

.specialist__name {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.specialist__specialty {
    color: var(--primary-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
}

.specialist__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1-5);
    font-size: var(--small-font-size);
}

/* ========== CONTACT ========== */
.contact {
    background: var(--white-color);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact__card:hover {
    background: var(--white-color);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact__card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact__card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact__card p {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

.contact__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social__link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social__link:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(23, 139, 68, 0.3);
}

/* Contact Form */
.contact__form {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
}

.form__group {
    margin-bottom: var(--mb-1-5);
}

.form__input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: var(--transition);
    background: var(--white-color);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(23, 139, 68, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.25rem;
    margin-bottom: var(--mb-1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--mb-1);
}

.footer__subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--mb-1);
    color: var(--white-color);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links li {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__links i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(23, 139, 68, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white-color);
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .home__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home__img-overlay {
        width: 300px;
        height: 300px;
    }

    .home__img-overlay i {
        font-size: 6rem;
    }

    .home__buttons {
        justify-content: center;
    }

    .about__content {
        grid-template-columns: 1fr;
    }

    .about__img-overlay {
        height: 350px;
    }

    .about__img-overlay i {
        font-size: 5rem;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding: 3rem 0 2rem;
    }

    .home__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat__card {
        padding: 1.5rem;
    }

    .stat__card i {
        font-size: 2rem;
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .services__grid,
    .specialties__grid,
    .specialists__grid {
        grid-template-columns: 1fr;
    }

    .home__img-overlay {
        width: 250px;
        height: 250px;
    }

    .home__img-overlay i {
        font-size: 4rem;
    }
}

/* ========== SCROLL BAR ========== */
::-webkit-scrollbar {
    width: 10px;
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
