/*
Theme Name: Tema Dr. Albavera
Author: Asistente de Programación
Version: 1.1
*/

* { box-sizing: border-box !important; }
body { margin: 0; padding: 0; }

#dr-lander-main-wrapper {
    font-family: 'Lato', sans-serif !important;
    color: #2c3e50 !important;
    line-height: 1.6 !important;
    width: 100% !important;
    background-color: #ffffff !important;
    overflow-x: hidden !important;
}

#dr-lander-main-wrapper h1, #dr-lander-main-wrapper h2, #dr-lander-main-wrapper h3 {
    font-family: 'Montserrat', sans-serif !important; 
    color: #0f4c81 !important;
}

/* Hero Section Corregida */
.hero-section {
    background: linear-gradient(135deg, #0f4c81 0%, #2a6f9d 100%) !important;
    padding: 60px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 80vh !important;
}

.hero-content {
    max-width: 1200px !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
}

.hero-text { flex: 1; min-width: 300px; }

/* Título en Blanco */
.hero-welcome-title { 
    font-size: 3rem !important; 
    color: #ffffff !important; 
    font-weight: 700 !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4) !important;
    margin-bottom: 20px !important;
}

.hero-mission-text { 
    color: #f0f0f0 !important; 
    border-left: 4px solid #ffffff !important; 
    padding-left: 20px !important; 
    margin: 20px 0 !important;
    font-size: 1.2rem !important;
}

.profile-card {
    background: white !important;
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    max-width: 420px !important;
}
.profile-card img { width: 100% !important; border-radius: 6px; display: block; }

.btn-cta {
    display: inline-block !important;
    background-color: #25D366 !important;
    color: #fff !important;
    padding: 18px 35px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    border: 3px solid #000 !important;
    transition: transform 0.3s;
}

.btn-cta:hover { transform: scale(1.05); }

.insurance-banner { background: #f4f6f8 !important; padding: 40px; text-align: center; border-bottom: 4px solid #c5a059; }
.services-section { padding: 80px 20px; text-align: center; }
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; max-width: 1100px; margin: 0 auto; }
.service-card { flex: 1 1 300px; padding: 40px; background: #fff; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.logos-banner { overflow: hidden; padding: 60px 0; background: #fff; text-align: center; }
.logos-track { display: flex; width: max-content; animation: scroll 25s linear infinite; gap: 60px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partner-logo { height: 110px; filter: grayscale(100%); opacity: 0.7; }

.locations-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; padding: 40px; max-width: 1200px; margin: 0 auto; }
.location-card { flex: 1 1 45%; background: #fff; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); overflow: hidden; }

.social-section { text-align: center; padding: 60px; border-top: 1px solid #eee; }
.social-icons-container { display: flex; justify-content: center; gap: 30px; margin-top: 20px; }
.social-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; text-decoration: none; }
.btn-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.btn-facebook { background: #1877F2; }

.footer { background: #1a1a1a; color: #888; padding: 40px; text-align: center; }
.footer a { color: #ccc; text-decoration: none; }

@media (max-width: 768px) {
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-welcome-title { font-size: 2.2rem !important; }
    .hero-mission-text { border-left: none; border-top: 4px solid #fff; padding: 20px 0; }
    .location-card { flex: 1 1 100%; }
}