/*
Theme Name: HG_Framework
Theme URI: http://www.hectorgarrofe.com
Author: Hector Garrofe
Author URI: http://www.hectorgarrofe.com
Description: Un theme básico sobre el que construir todos mis proyectos.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hg_framework
*/

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* variables */
:root {
  --color-primario: 116, 116, 119;
  --color-secundario: #EBB510;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #747477;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* RESET END */

/* Estilos básicos */

.link{
	text-decoration: none;
}

article h1{
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 40px;
	margin-top: 40px;
	margin-bottom: 20px;
	color: rgba(var(--color-primario), 1);
	line-height: 1.2em;
}

article h2{
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 32px;
	margin-bottom: 20px;
	color: rgba(var(--color-primario), 1);
	margin: 10px 0;
	padding-bottom: 10px;
}

.single article h2{
	margin-top: 60px;
	font-size: 28px;
}

article h3{
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-size: 24px;
	margin-bottom: 20px;
	color: rgba(var(--color-primario), 1);
	margin: 20px 0;
	padding-bottom: 10px;
}

article p{
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 20px;
}

p strong{
	font-weight: 400;
}

header#cabecera{
	float: left;
	width: 100%;
	background: rgba(255, 255, 255, 0.65);
	border-bottom: 1px solid #dadada;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.admin-bar header#cabecera{
	top: 32px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-container .logo {
    flex-grow: 1;
    margin: 10px 0;
}

.header-container .main-navigation {
    display: flex;
    justify-content: flex-end;
}

.header-container .menu-container {
    display: flex;
}

#primary-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#primary-menu .menu-item {
    margin-left: 50px;
}

#primary-menu .menu-item a,
#primary-menu a {
    text-decoration: none;
    color: #363636;
    font-weight: 300;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
}

#primary-menu .menu-item a:hover{
	color: #F3953F;
}

#primary-menu .current-menu-item a,
#primary-menu .current_page_parent a{
    color: #F3953F;
    font-weight: 600;
}

.header-container .logo img {
    max-width: 180px; /
    height: auto;
    width: auto;
}

article ul,
article ol {
    font-size: 16px;
    line-height: 1.8em;
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    list-style-type: none; /* Desactiva el estilo de lista predeterminado */
}

article ul li,
article ol li {
    position: relative; /* Asegura que el contenido esté correctamente posicionado */
    padding-left: 20px; /* Añade padding para separar el texto del cuadrado */
}

article ul li::before,
article ol li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 11px;
    width: 6px;
    height: 6px;
    background-color: #F3953F;
    display: inline-block;
}

article ul li strong,
article ol li strong{
	font-weight: 400;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.site-info {
    text-align: center;
    margin-top: 20px;
    color: #fff;             /* Cambia este color según tu diseño */
}

.button{
	background: none;
	color: #000000;
	padding: 10px 20px;
	text-transform: uppercase;
	border: 1px solid #747477;
	border-radius: 20px;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-block;
}

.button:hover{
	background: #F3953F;	
	color: #fff;
	border: 1px solid #fff;
}

.button-container {
    text-align: right; /* Alinea el contenido del contenedor a la derecha */
    margin-top: 20px; /* Ajusta el margen superior para separar del contenido anterior */
}

.button-cat{
	font-size: 10px;
}

.blog #content article{
	margin-bottom: 40px;
}

#breadcrumbs-container {
    display: flex;
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    min-height: 30px; /* Ajusta según tus necesidades */
    background-color: rgba(var(--color-primario), 0.2); /* Añade un fondo para visualizar mejor el contenedor */
    padding: 10px; /* Espacio interno para mejor presentación */
	margin-bottom: 20px;
}

#breadcrumbs {
    margin: 0;
    color: rgba(var(--color-primario), 1);
    filter: brightness(0.7);
}

#breadcrumbs a{
	color: rgba(var(--color-primario), 1);
	text-decoration: none;
	font-size: 12px;
	font-weight: 200;
}

#breadcrumbs .breadcrumb_last{
	font-size: 12px;
	font-weight: 600;
}

.entry-header.center{
	text-align: center;
}

.home .entry-header h1{
	font-size: 55px;
	font-weight: 300;
}

.entry-header h1{
	font-size: 42px;
	font-weight: 300;
}

#productos-destacados.productos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

#productos-destacados .producto {
    width: 32%;
    height: 565px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media (max-width: 1400px) {
    #productos-destacados .producto {
        width: 100%;
        max-width: 435px;
        height: auto;
        aspect-ratio: 435 / 565;
    }
}


/*Bloques destacados*/
.bloques-destacados {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 100px auto;
    max-width: 1350px;
    padding: 0 20px;
}

.bloque {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.bloque-texto {
    flex: 1 1 500px;
    max-width: 550px;
}

.bloque-texto h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bloque-texto .descripcion {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.bloque-texto .boton {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    padding: 10px 28px;
    border: 1px solid #333;
    border-radius: 999px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
    text-transform: uppercase;
}

.bloque-texto .boton:hover {
    background: #f0f0f0;
}

.bloque-imagen {
    flex: 1 1 600px;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    aspect-ratio: 850 / 608;
    border-radius: 6px;
}

/* Móviles y pantallas pequeñas */
@media (max-width: 992px) {
    .bloque {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .bloque-texto{
        flex: 1 1 240px;
    }

    .bloque-texto, .bloque-imagen {
        max-width: 100%;
        order: initial;
    }

    .bloque-texto h2 {
        font-size: 42px;
    }

    .bloque-texto .descripcion {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .bloque-texto .boton {
        font-size: 16px;
    }
}
/*END Bloques destacados*/

/*Actualidad en portada*/
.actualidad {
    margin: 100px auto;
    max-width: 1100px;
    padding: 0 20px;
}

.actualidad-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
    text-align: center;
}

.actualidad article.post .entry-title{
	font-size: 24px;
}

@media (max-width: 992px) {
    .actualidad-title {
        font-size: 42px;
    }
}

/*Faldón DEMO*/
.bloque-contacto {
    background-color: #F3F3F3;
    padding: 30px 20px;
}

.contacto-contenido {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contacto-contenido p {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 20px;
    line-height: 1.1;
    color: #555;
    margin: 0;
    flex: 1 1 70px;
}

.contacto-contenido .boton {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 12px 32px;
    border: 1px solid #333;
    border-radius: 999px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
    flex-shrink: 0;
}

.contacto-contenido .boton:hover {
    background: #e0e0e0;
}

.page-id-13 iframe{
	width: 100%;
	min-height: 600px;
	margin-top: 40px;
	margin-bottom: -10px;
}


/*PAGINA DE CONTACTO*/
/* Agrupa los inputs del segundo formulario */
.wpcf7-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.wpcf7-form .form-row p {
    display: flex;
    flex: 1;
    gap: 5px;
    margin: 0;
}

/* Unifica estilo para todos los inputs, incluyendo los de Contact Form 7 */
input[type="text"],
input[type="email"],
input[type="tel"],
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
textarea,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 200;
}

.wpcf7-form-control-wrap{
	width: 100%;
}

/* Que no se rompa en pantallas pequeñas */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .wpcf7-form .form-row p {
        flex-direction: column;
    }
}


.contact-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contact-form-block,
.contact-info-block {
    flex: 1 1 500px;
    background: #f5f5f5;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 8px;
}

.contact-form-block h2{
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
}

.contact-form-block p{
	font-size: 14px;
	font-weight: 200;
	margin-bottom: 15px;
	line-height: 22px;
}

.contact-form-block form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

button[type="submit"],
.wpcf7-submit {
    background-color: #f7931e;
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

.contact-info-block img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 20px;
}

#logo-contacto path{
	fill: #F3953F;
}

#logo-contacto{
	margin-bottom: 20px;
}

.contact-info-block p{
	margin-bottom: 30px;
	line-height: 18px;
}

.contact-info-block p strong{
	font-size: 16px;
	line-height: 18px;
}

.wpcf7 form.sent .wpcf7-response-output{
	border-color: #c0e27d;
    background: #c0e27d;
    font-size: 13px;
    border-radius: 5px;
    color: #000;
    padding: 10px 20px;
    box-sizing: border-box;
}

.wpcf7 form.invalid .wpcf7-response-output{
	border-color: #ffe365;
    background: #ffe365;
    font-size: 13px;
    border-radius: 5px;
    color: #000;
    padding: 10px 20px;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}

.wpcf7-not-valid-tip{
	color: #fff !important;
    display: inline;
    background: #dc3232;
    font-size: 11px;
    border-radius: 5px;
    color: #000;
    padding: 4px 20px;
    font-weight: 200;
    box-sizing: border-box;
}

.story-date{
	display: none !important;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}
/*END PAGINA DE CONTACTO*/




/* Responsive */
@media (max-width: 768px) {
    .contacto-contenido {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contacto-contenido .boton {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}
/*END Faldón DEMO*/


/*Nuevo footer*/
.site-footer {
    background-color: #444;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 60px 20px 30px;
    padding-top: 10px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 200;
}

.site-footer a:hover {
    color: #ccc;
}

.footer-content {
    max-width: 1480px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 32px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-navigation {
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 13px;
    color: #ccc;
}

.footer-legal a {
    color: #ccc;
    margin: 0 5px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer-logo svg {
    width: 100px;
    height: auto;
    fill: white;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-menu {
        justify-content: flex-start;
    }

    .footer-logo svg {
        width: 80px;
    }
}

/*END Nuevo footer*/

/*Estilos blog*/
article.post .entry-title{
	font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 0;
}

article.post .entry-title a{
    color: rgba(var(--color-primario), 1);	
}
/*END Estilos blog*/


/*Hacer que la web respire mejor*/
@media (max-width: 1600px) {
    .container {
        padding: 0 90px;
    }
}
/*END Hacer que la web respire mejor*/

/*Mejoras generales*/
.post h1.entry-title{
	font-size: 40px;
	margin-top: 30px;
	margin-bottom: 40px;
	color: #F3953F;
}

.single-post .entry-content{
	margin-bottom: 100px;
}

.single-post .entry-content .featured-image-left{
    float: right;
    margin: 0 0 20px 80px;
    max-width: 45%;
}
.single-post .entry-content .featured-image-left img{
    display:block;
    width:100%;
    height:auto;
    border: 6px solid #FFF1DD;
}
@media (max-width: 768px){
    .single-post .entry-content .featured-image-left{
        float:none;
        margin:0 0 20px;
        max-width:100%;
    }
}


.single-post .entry-content a{
	color: #F3953F;
	text-decoration: none;
	font-weight: 600;
}

.child-page-item a{
	text-decoration: none;
}

.child-page-title h2{
	font-weight: 200;
	text-align: center;
	margin-top: 20px;
}
/*END Mejoras generales*/

/*Breadcrumb de colores*/
.category-eventos-y-lanzamientos #breadcrumbs-container{
	background: #ECFFE6;
}

.category-ross #breadcrumbs-container{
	background: #FFF1DD;
}

.category-formacion-y-recursos #breadcrumbs-container{
	background: #FFEEFF;
}

.category-tendencias-y-noticias #breadcrumbs-container{
	background: #EEEFFF;
}
/*END Breadcrumb de colores*/


/*Página de producto*/
.page-id-23119 #breadcrumbs-container{
	margin-bottom: 0;
}

.page-id-23119 #product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.page-id-23119 #logo-texto-producto {
    margin: 0 auto;
    margin-top: 40px;
}

.page-id-23119 #logo-producto {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    max-width: 100%;
    height: auto;
}

.page-id-23119 .product-title{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 55px;
    text-align: center;
    margin: 40px 0 20px;
    color: rgba(var(--color-primario), 1);
}

.page-id-23119 .product-intro{
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 20px;
    line-height: 1.6em;
    text-align: center;
    max-width: 75%;
    margin: 0 auto 60px;
}

.page-id-23119 .destacados-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-id-23119 .destacado img{
    width: 100%;
    height: auto;
    display: block;
}

.page-id-23119 .destacado h3{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 32px;
    margin: 20px 0 10px;
    color: rgba(var(--color-primario), 1);
    text-align: center;
}

.page-id-23119 .destacado-descripcion{
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 18px;
    line-height: 1.6em;
    text-align: center;
    color: rgba(var(--color-primario), 1);
}

@media (max-width: 576px) {
    .page-id-23119 .destacados-grid{
        grid-template-columns: 1fr;
    }
}

.page-id-23119 .product-separator{
    border: 0;
    border-top: 1px solid #000;
    max-width: 1100px;
    margin: 60px auto;
}

.page-id-23119 .binary-features-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-id-23119 .binary-features-block,
.page-id-23119 .binary-image-block{
    flex: 1 1 50%;
}

.page-id-23119 .binary-features-block{
    background-color: #EDEDE8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-id-23119 .binary-image-block img{
    width: 100%;
    height: auto;
    display: block;
}

.page-id-23119 .binary-feature{
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.page-id-23119 .binary-feature-image{
    width: 30%;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-id-23119 .binary-feature-image img{
    max-width: 70px;
    height: auto;
    display: block;
}

.page-id-23119 .binary-feature-text{
    width: 70%;
}

.page-id-23119 .binary-feature-text h4{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 4px;
    color: rgba(var(--color-primario), 1);
}

.page-id-23119 .binary-feature-text p{
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.4em;
    color: rgba(var(--color-primario), 1);
}

.page-id-23119 .binary-features-block h3{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px;
    color: rgba(var(--color-primario), 1);
}

.page-id-23119 .binary-features-block p{
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-size: 18px;
    line-height: 1.6em;
    color: rgba(var(--color-primario), 1);
    margin: 0;
}

@media (max-width: 768px) {
    .page-id-23119 .binary-features-wrapper{
        flex-direction: column;
    }
}
/*END Página de producto*/

/*PRODUCTO INDIVIDUAL*/
.laymotive-producto{
	color: #fff;
	font-weight: 400;
	font-size: 22px;
	margin: 20px 0;
	letter-spacing: 0.8px;
}

.button.invertido{
	color: #fff;
	border: 1px solid #fff;	
}
/*END PRODUCTO INDIVIDUAL*/

/* Breakpoints RESPONSIVE */
@media (max-width: 1200px) {
    .container {
        max-width: 980px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 880px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 660px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 35px;
    }
}

@media (max-width: 400px) {
    .footer-navigation {
        flex-direction: column;    /* Disposición en columna en pantallas pequeñas */
        align-items: center;       /* Centra los elementos horizontalmente */
    }

    .footer-menu {
        flex-direction: column;    /* Disposición en columna para los elementos del menú */
        gap: 0px;                 /* Menor espacio entre elementos */
    }

    .footer-menu li {
        width: 100%;               /* Hacer que los li ocupen el 100% del ancho */
        justify-content: center;   /* Asegurar que el contenido esté centrado */
    }

    .footer-menu a {
        width: 100%;               /* Hacer que los enlaces ocupen el 100% del ancho */
    }
}

/* Distribución en cuadrícula para las entradas del blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-grid article {
    display: flex;
    flex-direction: column;
}

.post-thumbnail{
        background: #FFF1DD;
        transition: all 0.3s;
}

/*
 * Destacar la miniatura cuando el cursor pasa por
 * encima del article completo o solo sobre la miniatura
 */
.post:hover .post-thumbnail,
.post-thumbnail:hover{
        background: #F3953F;
        transition: all 0.8s;
}

.blog-grid .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    padding: 6px;
    box-sizing: border-box;
}

.post-meta {
    display: flex;
    gap: 5px;
    font-size: 14px;
    margin: 10px 0;
    margin-top: 0;
    color: #F3953F;
}

.post-categories {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-container {
    margin-top: 40px;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination-container .page-numbers {
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #747477;
    border-radius: 20px;
    display: inline-block;
    color: #000;
    transition: all 0.3s;
}

.pagination-container .page-numbers.current,
.pagination-container .page-numbers:hover {
    background: #F3953F;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.3s;
}

/* Category specific button styles */
.button.cat-401 {
    color: #CD35AE;
    background-color: #FFEEFF;
    border-color: #CD35AE;
}
.button.cat-401:hover {
    color: #FFEEFF;
    background-color: #CD35AE;
    border-color: #CD35AE;
}

.button.cat-400 {
    color: #815312;
    background-color: #FFEDDC;
    border-color: #815312;
}
.button.cat-400:hover {
    color: #FFEDDC;
    background-color: #815312;
    border-color: #815312;
}

.button.cat-399 {
    color: #026AA2;
    background-color: #F0F9FF;
    border-color: #026AA2;
}
.button.cat-399:hover {
    color: #F0F9FF;
    background-color: #026AA2;
    border-color: #026AA2;
}

.button.cat-398 {
    color: #8B8CCE;
    background-color: #EEEFFF;
    border-color: #8B8CCE;
}
.button.cat-398:hover {
    color: #EEEFFF;
    background-color: #8B8CCE;
    border-color: #8B8CCE;
}

.button.cat-397 {
    color: #3538CD;
    background-color: #EEF4FF;
    border-color: #3538CD;
}
.button.cat-397:hover {
    color: #EEF4FF;
    background-color: #3538CD;
    border-color: #3538CD;
}

.button.cat-395 {
    color: #C4320A;
    background-color: #FFF6ED;
    border-color: #C4320A;
}
.button.cat-395:hover {
    color: #FFF6ED;
    background-color: #C4320A;
    border-color: #C4320A;
}

.button.cat-396 {
    color: #02A25F;
    background-color: #ECFFE6;
    border-color: #02A25F;
}
.button.cat-396:hover {
    color: #ECFFE6;
    background-color: #02A25F;
    border-color: #02A25F;
}

.button.cat-1 {
    color: #F29100;
    background-color: #FFF1DD;
    border-color: #F29100;
}

.button.cat-1:hover {
    color: #FFF1DD;
    background-color: #F29100;
    border-color: #F29100;
}

/* Grid layout for child pages */
.child-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .child-pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .child-pages-grid {
        grid-template-columns: 1fr;
    }
}

.child-page-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.child-page-image {
    position: relative;
}

.child-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.child-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 149, 63, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    text-align: center;
    color: #ffffff;
}

.child-page-overlay img {
    width: 120px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.child-page-item:hover .child-page-overlay {
    opacity: 1;
    visibility: visible;
}

/* Hero video on front page */
.hero-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 40px;
	margin-top: 79px;
}

.admin-bar .hero-video{
    margin-top: 112px;	
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Product video block */
.product-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40.25%;
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 1100px;
}

.product-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    max-height: 550px;
}

/* Programas section */
.programas-section {
    background-color: #F5F4F1;
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.programas-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 64px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 60px;
}

.programas-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.programa {
    flex: 1 1 500px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.programa-imagen {
    flex: 1 1 0;
}

.programa-imagen img {
    width: 100%;
    height: auto;
    display: block;
}

.programa-texto {
    flex: 1 1 50%;
}

.programa-texto h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
    color: #D26F35;
}

.programa-texto ul {
    list-style: none;
    padding-left: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8em;
}

.programa-texto ul li {
    position: relative;
    padding-left: 0;
    margin-bottom: 8px;
    font-weight: 500;
}

/*test*/
body.page-id-9 .entry-header,
body.page-id-11 .entry-header,
body.page-id-13 .entry-header{
	display: none;
}

#post-9 .entry-content,
#post-11 .entry-content,
#post-13 .entry-content{
	max-width: 1080px;
	margin: 0 auto;
	font-size: 60px;
}

#post-9 .entry-content p,
#post-13 .entry-content p{
	margin-top: 40px;
	font-size: 24px;
}

#post-11 .entry-content p{
	margin-top: 70px;
	font-size: 24px;
}

.wp-block-quote{
	background: #FFF0DD;
	border-bottom: 4px solid #F3953F;
	padding: 20px 40px;
	box-sizing: border-box;
	margin-bottom: 20px;
	opacity: 0.8;
}

.wp-block-quote p{
	color: #F3953F;
	font-size: 28px;
	font-weight: 300;
	margin-bottom: 0;
	font-style: italic;
}

.child-page-excerpt{
    font-weight: 200;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6em;
    color: #747477;
    text-align: center;
}

.titulo-molongui{
	font-size: 24px;
	font-weight: 400;
	margin-top: 20px;
}

/*TIMELINE*/
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #ffeddc;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  width: 100%;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}

.timeline-item.left .timeline-content {
  margin-right: auto;
  padding-right: 0;
  text-align: right;
}

.timeline-item.right .timeline-content {
  margin-left: auto;
  padding-left: 0;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #F3953F;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  width: 45%;
  box-sizing: border-box;
  position: relative;
}

.timeline-content h3 {
  margin: 0 0 10px;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  background: rgba(243, 149, 63, 0.3);
  color: #333;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 4px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    width: 100%;
    margin: 0 0 0 40px;
    padding: 0;
    text-align: left;
  }

  .timeline-item::before {
    left: 20px;
    top: 10px;
  }
}
/*END TIMELINE*/


/*arreglos barra mobile fija*/
@media screen and (max-width: 960px) {
	.admin-bar #breadcrumbs-container{
		margin-top: 108px;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar #breadcrumbs-container{
		margin-top: 94px;
	}
	
	.admin-bar .hero-video{
	    margin-top: 98px;	
	}
	
	.hero-video{
	    margin-top: 112px;	
	}
}

@media screen and (max-width: 960px) {
	#breadcrumbs-container{
		margin-top: 110px;
	}
}

@media screen and (max-width: 782px) {
	#breadcrumbs-container{
		margin-top: 110px;
	}
	
	.footer-columns{
		display: none;
	}
	
	.footer-bottom{
		border-top: none;
	}
	
	.footer-legal{
		line-height: 18px;
	}
}

@media (max-width: 576px) {
    #post-9 .entry-content p,
    #post-11 .entry-content p,
    #post-13 .entry-content p{
	    font-size: 20px;
    }
    
    .page-id-23119 .product-title{
	    font-size: 36px;
    }
    
    .post h1.entry-title{
	    font-size: 32px;
    }
    
    .single article h2{
	    font-size: 24px;
    }
    
    .post h1.entry-title{
	    margin-bottom: 30px;
    }
}
/* QR Dashboard */
.welcome-message {
	padding: 120px 0 60px;
	text-align: center;
}

.welcome-message .entry-title {
	font-size: 42px;
	margin-bottom: 20px;
}

.welcome-message .lead {
	font-size: 18px;
	color: #555;
	margin-bottom: 25px;
}

.qr-dashboard {
	margin: 40px 0 80px;
}

.qr-dashboard__header {
	text-align: center;
	margin-bottom: 40px;
}

.qr-dashboard__header h2 {
	font-size: 30px;
	color: rgba(var(--color-primario), 1);
	margin-bottom: 10px;
}

.qr-dashboard__header p {
	color: #555;
	font-size: 16px;
}

.qr-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 30px;
}

.qr-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qr-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.qr-card__preview {
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
	border-radius: 12px;
	padding: 12px;
}

.qr-card__preview img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.qr-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #999;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border: 1px dashed #d3d3d3;
	border-radius: 12px;
}

.qr-card__id {
	margin: 18px 0 12px;
	font-size: 18px;
	color: rgba(var(--color-primario), 1);
	text-align: center;
}

.qr-card__title {
	font-size: 15px;
	color: #666;
	text-align: center;
	margin-bottom: 14px;
}

.qr-card__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 16px;
}

.qr-card__meta {
	text-align: center;
	font-size: 14px;
	color: #555;
	word-break: break-all;
}

.qr-card__label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 6px;
	letter-spacing: 0.08em;
}

.qr-card__meta a {
	color: rgba(var(--color-primario), 1);
	text-decoration: none;
}

.qr-card__meta a:hover {
	text-decoration: underline;
}

.qr-card__stats {
	margin-top: 12px;
	text-align: center;
	font-size: 14px;
	color: #555;
}

.qr-card__stat {
	display: inline-block;
	margin-left: 4px;
	font-weight: 600;
	color: rgba(var(--color-primario), 1);
}

.qr-empty-state {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	border: 1px dashed #d3d3d3;
	border-radius: 12px;
}

.qr-empty-state h3 {
	font-size: 26px;
	color: rgba(var(--color-primario), 1);
	margin-bottom: 12px;
}

.qr-empty-state p {
	color: #555;
	margin-bottom: 20px;
	font-size: 16px;
}

.button.button-secondary {
	background: transparent;
	border: 1px solid rgba(var(--color-primario), 1);
	color: rgba(var(--color-primario), 1);
}

.button.button-secondary:hover {
	background: rgba(var(--color-primario), 1);
	color: #fff;
}

@media (max-width: 768px) {
	.welcome-message {
		padding-top: 40px;
	}

	.welcome-message .entry-title {
		font-size: 32px;
	}

	.qr-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}

	.qr-card {
		padding: 20px;
	}

	.qr-card__preview {
		width: 160px;
		height: 160px;
	}

	.qr-card__title {
		font-size: 14px;
	}

	.qr-card__stats {
		font-size: 13px;
	}
}
