:root {
    --primary-color: #0a2540;
    --secondary-color: #0096c7;
    --accent-color: #e9ecef;
    --text-color: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    padding-top: 76px; /* Espacio para navbar fija */
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}
.nav-link {
    color: var(--text-color);
    font-weight: 600;
}
.nav-link:hover {
    color: var(--secondary-color);
}
.btn-cta {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background-color: #0077b6;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,150,199,0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.8)), url('../assets/images/dr_francisco_prado_mercado_3.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section h2, h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-section h4 {
    color: var(--white);
    font-size: 1.0rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features / Icon Boxes */
.feature-wrapper {
    margin-top: -50px; 
    position: relative; 
    z-index: 2;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: var(--accent-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--secondary-color) !important;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 20px;
}
.stars {
    color: #ffc107;
}

.doctor-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.aseguradoras li {
  list-style-type: none;
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}