/* Importar fuentes de Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Lato:wght@400;500;700&display=swap');

/* Estructura base */
body {
    font-family: 'Lato', sans-serif; 
    margin: 0;
    padding: 0;
    color: #2E2E2E;
    line-height: 1.6;
    background-color: #F9FDFC;
}


h1, h2, h3, h4, h5, h6,
.logo,
.btn,
nav ul li a,
.footer-col h3,
.especialidad-header h3,
.profesional-card h3 {
    font-family: 'Montserrat', sans-serif;
}


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

section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #3D9EB9;
    font-size: 2.2rem;
    position: relative;
    font-weight: 600; 
}

h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #88FAC0;
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    background-color: #3D9EB9;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #2E7E99;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 158, 185, 0.3);
}

.btn-accent {
    background-color: #88FAC0;
    color: #2E2E2E;
}

.btn-accent:hover {
    background-color: #6ED8A8;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700; 
    color: #3D9EB9;
    display: flex;
    align-items: center;
}

.logo span {
    color: #88FAC0;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #2E2E2E;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #3D9EB9;
}

nav ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #88FAC0;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Banner */
.hero {
    background:
        linear-gradient(135deg, rgba(174, 234, 253, 0.85) 0%, rgba(249, 253, 252, 0.85) 50%),
        url('assets/images/image.webp') no-repeat center center;
    background-size: contain;
    padding: 120px 0;
    text-align: center;
    position: relative;
    color: #2E2E2E;
    height: 60vh;
}

.hero h1 {
    font-size: 3rem;
    color: #3D9EB9;
    margin-bottom: 20px;
    font-weight: 700; 
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #2E2E2E;
    font-family: 'Lato', sans-serif;
}

/* Profesionales */
.profesionales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.profesional-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.profesional-card:hover {
    transform: translateY(-10px);
}

.profesional-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #E8F1F0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profesional-card h3 {
    color: #3D9EB9;
    margin-bottom: 5px;
    font-weight: 600; 
}

.profesional-card p {
    color: #2E2E2E;
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #3D9EB9;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #88FAC0;
}

/* Consultorios */
.consultorios-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.consultorios-info {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Lato', sans-serif; 
}

.consultorios-info ul {
    list-style: none;
    padding: 0;
}

.consultorios-info li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.consultorios-info li:before {
    content: "✓";
    color: #88FAC0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.consultorios-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: #3D9EB9;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #88FAC0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #88FAC0;
}

.copyright {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    font-family: 'Lato', sans-serif;
}

/* Estilos específicos para especialidades */
.especialidades-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.especialidad-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.especialidad-card:hover {
    transform: translateY(-10px);
}

.especialidad-header {
    background-color: #3D9EB9;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
}

.especialidad-header h3 {
    font-weight: 600;
}

.especialidad-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #88FAC0;
}

.especialidad-body {
    padding: 20px;
    font-family: 'Lato', sans-serif;
}

.especialidad-body ul {
    padding-left: 20px;
}

.especialidad-body li {
    margin-bottom: 10px;
    position: relative;
    font-family: 'Lato', sans-serif;
}

.especialidad-body li:before {
    content: "•";
    color: #88FAC0;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .consultorios-container {
        grid-template-columns: 1fr;
    }

    .consultorios-img {
        order: -1;
    }
    
    .especialidades-container {
        grid-template-columns: 1fr;
    }
}