        /* --- COLORES DE MEDICINA NATURAL --- */
        :root {
            --color-primary-natural: #8bc34a; /* Verde Oliva Suave */
            --color-secondary-natural: #689f38; /* Verde Oscuro */
            --color-accent-natural: #cddc39; /* Verde Limón */
            --color-text-dark: #333;
            --color-text-light: #fff;
            --color-background-body: #f8f9fa;
        }

        /* --- ESTILOS GENERALES Y RESETEO --- */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--color-background-body);
            color: var(--color-text-dark);
            position: relative;
        }
        
        img {width:100%}

        @media screen and (min-width: 600px) {
            .event-images-container img {
                width:20%;
                margin-left:2%;
            }
        }
        @media screen and (max-width: 599px) {
            .event-images-container img {
                width:100%;
                margin-bottom:4%;
            }
        }

        /* 6. FONDO DE PÁGINA: SLIDE DE YERBAS CURATIVAS */
        .background-slider {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2; /* Detrás de todo el contenido */
            opacity: 0.1; /* Transparencia suave */
            overflow: hidden;
        }
        
        .background-slider img {
            width: 100%;
            height: 100%;
            position: absolute;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            object-fit: cover;
        }
        
        .background-slider img.active {
            opacity: 1;
        }

        /* Contenido debe estar sobre el slider */
        .content-wrap {
            position: relative;
            z-index: 1;
            background-color: rgba(255, 255, 255, 0.85); /* Un fondo blanco semitransparente para que el texto sea legible */
        }

        /* --- CABECERA (Header) --- */
        .main-header {
            background-color: var(--color-primary-natural); /* Cambiado a color natural */
            color: white;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            position: relative; /* Necesario para que el toggle button posicione dentro */
        }

        .header-left h1 {
            margin: 0;
            font-size: 2.2em;
        }

        /* Contenedor del cuadro de imagen (a la derecha) */
        .image-upload-box {
            width: 150px;
            height: 150px;
            border: 2px dashed #e6e6e6; 
            background-color: var(--color-accent-natural); 
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s;
        }

        .image-upload-box:hover {
            background-color: var(--color-secondary-natural); 
        }

        /* --- MENÚ DE NAVEGACIÓN (Navbar) --- */
        .navbar {
            background-color: var(--color-secondary-natural); /* Color natural oscuro */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .navbar ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            text-align: center;
            display: flex;
            justify-content: center;
        }

        .navbar li {
            position: relative;
            padding: 0;
            z-index: 100;
        }

        .navbar li a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .navbar li a:hover {
            background-color: var(--color-primary-natural); 
        }

        .dropdown-content {
            background-color: #689f38; /* Color natural intermedio */
        }

        .dropdown-content a:hover {
            background-color: var(--color-primary-natural); 
        }

        /* Estilos de Submenú */
        .dropdown-content {
            display: none; 
            position: absolute;
            top: 100%; 
            left: 0;
            background-color: #79aa53;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1000; 
            border-radius: 0 0 4px 4px;
            padding: 0;
            margin-top: 0;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: block;
            position: relative; 
        }

        .dropdown-content a:hover {
            background-color: #1565c0;
        }

        .dropdown:hover .dropdown-content {
            display: block; 
        }


        /* 2. Botón Hamburguesa (Fijo en móvil, oculto en escritorio) */
        .menu-toggle {
            display: none; 
            position: fixed; 
            top: 10px;
            left: 2%;
            cursor: pointer;
            font-size: 1.5em;
            color: white;
            z-index: 1001;
            padding: 10px;
            background-color: var(--color-secondary-natural);
            border-radius: 4px;
        }
        
        /* 2. Menú móvil (Fijo y se desplaza desde arriba) */
        .mobile-menu {
            display: none;
            position: fixed; 
            top: 5px; 
            left: 15%;
            width: 70%; 
	    padding:6%;
	    height: 65%;
            background-color: var(--color-secondary-natural);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-radius: 8px;
            z-index: 999;
            transform: translateY(-10px); 
            opacity: 0;
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }
.mobile-menu2 {
overflow: hidden;
overflow-y:auto;
width: 100%;
height: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 1000;
}
        .mobile-menu.open {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu ul {
            display: block;
            padding: 0;
            margin: 0;
        }
        .mobile-menu ul a {
color:white;
        }
        /* Ocultar submenús en la versión móvil (serán simples enlaces) */
        .mobile-menu .dropdown-content {
            position: static;
            display: block;
            min-width: 100%;
            box-shadow: none;
            background-color: #558b2f; /* Tono más oscuro */
            border-radius: 0;
        }
        
        /* Asegurar enlaces de submenú móvil */
        .mobile-menu .dropdown-content a {
            padding-left: 30px; /* Indentar para distinguirlos */
            background-color: #558b2f;
        }

        /* --- 3. SLIDER DE IMÁGENES PRINCIPAL --- */
        .main-slider {
            position: relative;
            max-width: 1200px;
            margin: 20px auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .slide-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 400px;
            position: relative;
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); 
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .slide-overlay h3 {
            margin: 0 0 10px 0;
            font-size: 2em;
            text-shadow: 2px 2px 4px #000;
        }

        .slide-overlay a {
            padding: 10px 20px;
            background-color: var(--color-accent-natural); 
            color: var(--color-text-dark);
            text-decoration: none;
            border-radius: 5px;
            margin-top: 15px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .slide-overlay a:hover {
            background-color: var(--color-primary-natural);
            color: var(--color-text-light);
        }
        
        /* --- 4. BOTÓN ANIMADO --- */
        .animated-button {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 25px;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration: none;
            color: var(--color-text-light);
            background-color: var(--color-secondary-natural);
            border: none;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            z-index: 1;
            transition: color 0.4s ease-in-out, background-color 0.4s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .animated-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--color-accent-natural); /* Color de ola */
            transition: left 0.4s ease-in-out;
            z-index: -1;
            transform: skewX(-20deg);
        }

        .animated-button:hover {
            color: var(--color-text-dark); 
        }

        .animated-button:hover::before {
            left: 0;
        }

        /* --- ESTILOS DE ANIMACIÓN (Fade-in sutil y recurrente) --- */
        /* Estado inicial: oculto y transparente, ligeramente debajo */
        .hidden-effect {
            opacity: 0;
            transform: translateY(10px); 
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Estado final: visible y en posición normal */
        .show-effect {
            opacity: 1;
            transform: translateY(0);
        }

        /* Retrasos de animación para elementos en contenedores */
        /* Aseguramos que la transición esté en todos los elementos a animar */
        .content-section, 
        .info-card, 
        .video-wrapper {
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Retrasos de animación para las tarjetas de información */
        .info-cards-container .info-card:nth-child(1) { transition-delay: 0s; }
        .info-cards-container .info-card:nth-child(2) { transition-delay: 0.2s; }
        .info-cards-container .info-card:nth-child(3) { transition-delay: 0.4s; }
        .info-cards-container .info-card:nth-child(4) { transition-delay: 0.6s; }

        /* Retrasos de animación para los videos */
        .video-responsive-container .video-wrapper:nth-child(1) { transition-delay: 0s; }
        .video-responsive-container .video-wrapper:nth-child(2) { transition-delay: 0.2s; }
        .video-responsive-container .video-wrapper:nth-child(3) { transition-delay: 0.4s; }
        .video-responsive-container .video-wrapper:nth-child(4) { transition-delay: 0.6s; }
        /* --- FIN ESTILOS DE ANIMACIÓN --- */


        /* --- MEDIA QUERIES PARA RESPONSIVIDAD (Punto 2) --- */
        @media (max-width: 900px) {
            /* Ocultar el menú de navegación completo */
            .navbar ul {
                display: none;
            }

            /* Mostrar el botón hamburguesa */
            .menu-toggle {
                display: block;
            }
            
            /* Ajustar cabecera para que no se interponga con el toggle fijo */
            .main-header {
                padding-right: 15px;
            }
        }
        
        /* Estilos originales de layout */
        .content-section {
            padding: 10px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .layout-row {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            gap: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }

        .col-text h2 {
            color: var(--color-secondary-natural); /* Títulos en color natural */
            font-size: 2.2em;
            margin-top: 0;
        }
        
        /* --- SECCIÓN MANTENTE INFORMADO (Cards) --- */
        .info-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .info-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .info-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .card-content {
            padding: 15px;
            text-align: left;
        }

        .card-content h3 {
            color: var(--color-secondary-natural);
            margin-top: 0;
        }

        /* --- SECCIÓN VIDEOS (Ajuste Responsivo de YouTube) --- */
        .video-responsive-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* Ratio 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* --- SECCIÓN CONTACTO (Nuevos Estilos de Dos Columnas) --- */

        .contact-layout {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            max-width: 1000px;
            margin: 20px auto;
            padding: 20px;
            /* Responsividad básica para móviles */
            flex-direction: column; 
        }

        @media (min-width: 768px) {
            .contact-layout {
                flex-direction: row; /* Vuelve a dos columnas en pantallas grandes */
            }
        }

        .contact-social {
            flex: 1; /* Columna Izquierda (Redes + Imágenes) */
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-form-container {
            flex: 1; /* Columna Derecha (Formulario) */
        }

        /* Estilos de Redes Sociales */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-icons a {
            font-size: 2.5em;
            color: #2196f3;
            transition: color 0.3s;
            text-decoration: none; /* Importante para los íconos */
        }

        .social-icons a:hover {
            color: #1976d2;
        }

        /* Contenedor de las dos imágenes */
        .social-images {
            display: flex;
            justify-content: space-around;
            gap: 15px;
            margin-top: 20px;
        }

        .social-images img {
            width: 48%;
            height: auto;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        /* Formulario */
        .contact-form {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        .form-group textarea {
            resize: vertical;
            height: 100px;
        }

        .submit-button {
            background-color: #e91e63;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            transition: background-color 0.3s;
        }

        .submit-button:hover {
            background-color: #c2185b;
        }
        
        /* --- FOOTER --- */
        .footer {
            background-color: #263238;
            color: #b0bec5;
            text-align: center;
            padding: 25px 0;
            font-size: 0.85em;
            margin-top: 40px;
        }

        /* --- MEDIA QUERIES PARA RESPONSIVIDAD GENERAL --- */
        
        /* Diseño para dispositivos móviles (pantallas de 767px o menos) */
        @media (max-width: 767px) {
            
            /* 1. LAYOUT DE COLUMNAS (SOBRE MÍ, DICCIONARIO, AGENDA) */
            .layout-row {
                /* Fuerza a las columnas a apilarse verticalmente */
                flex-direction: column; 
                gap: 20px; /* Reduce el espacio entre elementos apilados */
            }

            /* Resetea la inversión de orden para móviles (opcional, si quiere la imagen siempre arriba) */
            .layout-row.reverse {
                flex-direction: column; 
            }
            
            /* Ajuste para el texto principal del header */
            .header-left h1 {
                font-size: 1.5em;
            }
            
            /* El menú principal se apila */
            .navbar ul {
                flex-wrap: wrap;
            }
            
            /* El cuadro de subir foto en el header */
            .image-upload-box {
                width: 100px;
                height: 100px;
            }

            /* 2. LAYOUT DE CONTACTO */
            .contact-layout {
                flex-direction: column; /* Ya estaba en el código, pero lo aseguramos */
            }
        }
        
        /* Diseño para tabletas y escritorios medianos (768px y más) */
        @media (min-width: 768px) {
            .contact-layout {
                flex-direction: row; /* Vuelve a dos columnas en pantallas grandes */
            }
        }
        
        .col-media {width:100%}

@media screen and (min-width: 600px) {
.micontac {
font-size:3vw;
font-weight:bold;
}
}
@media screen and (max-width: 599px) {
.micontac {
font-size:5vw;
font-weight:bold;
}
}
