/* ==========================================================================
   TEMPLATE_5.CSS - NUTRICIÓN INFANTIL (Creciendo Sano)
   Estética: Lúdica, Colorida, Segura y Amigable.
   Paleta: Amarillo Sol (#FFD166), Azul Cielo (#118AB2), Rosa Pastel (#EF476F), Verde Menta (#06D6A0)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Nunito:wght@400;700;900&display=swap');

body { 
    font-family: 'Quicksand', sans-serif; 
    background-color: #ffffff; 
    color: #444;
}

/* Iconos Sociales con colores de "arcoíris" infantil */
.social-icons a, .social-links i { 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}
.bi-instagram { color: #EF476F !important; }
.bi-facebook { color: #118AB2 !important; }
.social-icons a:hover { transform: scale(1.2) rotate(5deg); }

/* HERO SECTION - Imagen de niño/alimentación divertida */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), 
                url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?q=80&w=2070') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 15px solid #FFD166; /* Borde decorativo inferior */
}

/* Botón Contacto - Estilo "Burbuja" */
.btn-contactanos {
    display: inline-block;
    background: #06D6A0 !important; /* Verde menta vibrante */
    color: white !important;
    padding: 20px 45px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 100px; 
    box-shadow: 0 10px 0 #05a87d; /* Efecto 3D de botón de juego */
    transition: all 0.2s ease;
    border: none;
}
.btn-contactanos:hover { 
    transform: translateY(4px);
    box-shadow: 0 4px 0 #05a87d;
    background: #05c08f !important;
}

/* Títulos y Highlights */
h1, h2, h3 { font-family: 'Nunito', sans-serif; font-weight: 900; color: #118AB2; }
.highlight-text, h1 span { color: #EF476F !important; }

/* Perfil del Profesional - Marco de "Nube" */
.profile-mask img {
    border-radius: 50%;
    border: 10px solid #FFD166;
    padding: 5px;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Acordeones Lúdicos */
.accordion-item { 
    border: 3px solid #f0f0f0; 
    border-radius: 25px !important;
    margin-bottom: 15px; 
    overflow: hidden;
}
.accordion-header { 
    background: #fff9e6 !important; 
    font-weight: 700;
    color: #FFD166 !important;
}

/* CAROUSEL DE RECETAS PARA NIÑOS */
.cms-carousel-container { padding: 40px 0; }
.cms-carousel-wrapper {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
}

.cms-card {
    min-width: 320px;
    background: #ffffff;
    padding: 30px;
    border-radius: 40px; /* Bordes muy circulares */
    box-shadow: 0 20px 40px rgba(17, 138, 178, 0.1);
    border: 2px solid #e3f2fd;
    text-align: center;
}
.cms-card::before {
    content: '🍎'; /* Icono decorativo */
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* Cards de Áreas de Especialidad (Baby Led Weaning, Picky Eaters, etc) */
.card-area {
    background: #ffffff;
    border-radius: 35px;
    padding: 40px;
    transition: all 0.3s ease;
    border-bottom: 8px solid #118AB2;
}
.card-area i { color: #FFD166 !important; font-size: 3rem; margin-bottom: 20px; }
.card-area:hover { 
    transform: scale(1.05);
    background: #fdfdfd;
}

/* Equipo de Especialistas */
.team-card img {
    border-radius: 40px 40px 0 40px; /* Corte asimétrico moderno */
    border: 5px solid #06D6A0;
}

/* Footer con ondas o color sólido suave */
.footer-eprofesional {
    background: #118AB2 !important;
    color: #ffffff !important;
    padding: 80px 0 40px;
    border-top-left-radius: 50% 10%;
    border-top-right-radius: 50% 10%;
}

/* Links de lectura en el Blog */
.read-more {
    color: #EF476F !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.nav-btn {
    background: #EF476F !important;
    border-radius: 15px;
    width: 45px;
    height: 45px;
}