/* --- MENÚ KADENCE A PANTALLA COMPLETA TOTAL --- */

@media screen and (max-width: 1024px) {
    
    /* 1. Eliminamos los botones de texto negro que creamos antes */
    nav::before, .main-navigation::before, .menu-container::before, div[class*="menu"]::before {
        display: none !important;
    }

    /* 2. Forzamos el contenedor principal a ocupar TODO el ancho y alto */
    /* Este es el selector clave en Kadence para el menú desplegable */
    .mobile-menu-container, 
    .mobile-navigation,
    .kb-mobile-menu-dropdown {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important; /* 100% del ancho de pantalla */
        height: 100vh !important; /* 100% del alto de pantalla */
        background-color: 



 !important; /* Tu color gris azulado */
        z-index: 99999 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* Centra los botones verticalmente */
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 3. Estiramos la lista de enlaces al 100% */
    .mobile-menu-container ul.menu,
    .mobile-navigation ul {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 4. Estilizamos los botones (enlaces) */
    .mobile-menu-container li,
    .mobile-navigation li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .mobile-menu-container li a,
    .mobile-navigation li a {
        display: block !important;
        width: 100% !important;
        padding: 20px 0 !important;
        font-size: 1.3rem !important; /* Letra más grande y clara */
        color: #7D552D;




 !important; /* Tu dorado */
        text-align: center !important;
    }

/* 5. Aseguramos que el botón de cerrar sea cliqueable y esté arriba de TODO */
.mobile-exit, 
.menu-toggle-close,
.kb-mobile-menu-dropdown .mobile-exit {
    position: fixed !important; /* Cambiado a fixed para que no se mueva al hacer scroll */
    top: 20px !important;
    right: 20px !important;
    z-index: 1000000 !important; /* Un nivel por encima del 99999 del menú */
    cursor: pointer !important;
    width: 45px !important;  /* Le damos un tamaño generoso para el dedo */
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important; /* FUERZA que acepte clics */
}



/* --- ANIMACIÓN DE CAÍDA POR PASOS (KADENCE) --- */

/* 1. Definimos la coreografía del movimiento */
@keyframes caidaMenu {
    0% {
        transform: translateY(-100%); /* Empieza totalmente fuera por arriba */
        opacity: 0;
    }
    100% {
        transform: translateY(0);    /* Termina en su sitio */
        opacity: 1;
    }
}

/* 2. Aplicamos la animación al contenedor cuando se activa */
.toggled-on .kb-mobile-menu-dropdown,
.mobile-navigation.toggled .kb-mobile-menu-dropdown {
    display: block !important;
    animation: caidaMenu 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

/* 3. Animación extra para los botones (opcional, para que entren suave) */
.toggled-on .mobile-menu-container li {
    animation: aparecerBotones 0.4s ease forwards;
    animation-delay: 0.3s; /* Espera a que el fondo baje un poco */
    opacity: 0;
}

@keyframes aparecerBotones {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	

/* Evita que el botón de hamburguesa original se quede "flotando" debajo y confunda */
.toggled-on .menu-toggle-open {
    display: none !important;
}

/* Forzamos a que el área de la X no tenga nada encima */
.mobile-menu-container {
    overflow: visible !important;
}

	
	
	
	
	
	
	
	
	
	
	
	
	
/* ICONOS SOCIALES EN CUADRO */
.social-icons a,
.footer-social a,
.et_pb_social_media_follow a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  
  width: 40px;
  height: 40px;

  border: 2px solid #ffffff; 
  
  /* --- CAMBIA ESTA LÍNEA --- */
  border-radius: 15px; /* Para un estilo "super-elipse" moderno */
  /* border-radius: 50%;    Usa esto si quieres que sean totalmente CIRCULARES */
  /* ------------------------- */

  text-decoration: none;
  margin: 5px;
  transition: all 0.3s ease;
}
	
	
	
	
	
	
	
	
	

	
	
	
	
	
	
	
	
	
	
	
	
	
/* Cambia el radio de las cajas de texto y el área de mensaje */
.wp-block-jetpack-contact-form input[type="text"],
.wp-block-jetpack-contact-form input[type="email"],
.wp-block-jetpack-contact-form textarea {
    border-radius: 15px !important; /* Ajusta este número a tu gusto */
    border: 1px solid #ccc; /* Opcional: por si quieres definir el borde también */
}

/* Cambia el radio del botón de enviar si también lo deseas */
.wp-block-jetpack-contact-form .contact-form-button {
    border-radius: 10px !important;
}

	
	
	
	
	
	
	
	
	
	
	
	
	
	
/* Forzar centrado y eliminar espacio automático entre flechas */
.wp-block-buttons.is-content-justification-center,
.wp-block-group.is-layout-flex.is-content-justification-center {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important; /* Aquí controlas la distancia entre ellas */
}

/* Esto anula el "space-between" que te las separa */
.wp-block-buttons > .wp-block-button,
.wp-block-group.is-layout-flex > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex-basis: auto !important;
}
	
	
	
	
	
	
	
	
	
	
	
	

	
	
	
	
	
	
	
	

/* 1. Forzar el contenedor de cada entrada */
.wp-block-post-template.is-flex-container li, 
.wp-block-post-template li {
    background-color: #ffffff !important;
    padding: 20px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    margin-bottom: 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* 2. Asegurar que el fondo blanco cubra todo el espacio */
.wp-block-post {
    background-color: #ffffff !important;
    height: 100% !important;
}

/* 3. Ajuste para que las imágenes no se peguen a los bordes */
.wp-block-post-featured-image {
    margin: -20px -20px 20px -20px !important;
    border-radius: 8px 8px 0 0 !important;
    overflow: hidden !important;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	

	
	
.scroll-horizontal {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 15px;
}

.scroll-horizontal img {
  height: 250px;
  flex: 0 0 auto;
  border-radius: 10px;
}
	

	
	
	
	

	
	


	
	
	
	
	
	
	
	
	
	
	
	





































