@media(min-width:768px){[data-sek-id="__nimble__2ecadffd2410"] .sek-sektion-inner > .sek-column[data-sek-id="__nimble__354da1b788e8"]{-ms-flex: 0 0 42.512%;flex: 0 0 42.512%;max-width: 42.512%}[data-sek-id="__nimble__2ecadffd2410"] .sek-sektion-inner > .sek-column[data-sek-id="__nimble__8504312600bd"]{-ms-flex: 0 0 57.488%;flex: 0 0 57.488%;max-width: 57.488%}}/* Añade tu propio código CSS aquí */
/* Elimina los cuadros de texto de ayuda en el pie de página */
.widget-front {
    display: none !important;
}

/* Si los cuadros blancos siguen ahí, este código los borra por completo */
#footer .container.footer-widgets {
    display: none !important;
}
/* ELIMINAR LÍNEA DERECHA DEL FOOTER */
.colophon .pull-right, 
#footer .colophon .pull-right, 
.tc-footer .colophon .pull-right, 
.credits {
    display: none !important;
    visibility: hidden !important;
}

/* CENTRAR EL NOMBRE DE GRC */
.colophon .pull-left, 
#footer .colophon .pull-left {
    width: 100% !important;
    text-align: center !important;
    float: none !important;
}


/* CREAR BARRA DE CONTACTO SUPERIOR */
header.tc-header::before {
    content: "✉️ comercial@grccertificaciones.grupo-grc.com  |  📞 +51 16523278";
    display: block;
    background-color: #f8f9fa; /* Fondo gris muy claro */
    color: #002b49; /* Tu azul corporativo */
    text-align: left;
    padding: 8px 5%;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 1px solid #e0e0e0;
}

/* AJUSTE PARA MÓVILES */
@media (max-width: 767px) {
    header.tc-header::before {
        text-align: center;
        font-size: 11px;
    }
}

/*ACORDION */
/* DISEÑO DE ACORDEÓN GRC - PEGUE ESTO EN CSS ADICIONAL */
.contenedor-faq-grc {
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}
.acordion-grc-item input {
    display: none !important;
}
.pregunta-diseno {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    color: #002b49;
    margin-bottom: 10px;
}
.pregunta-diseno::after {
    content: '+';
    font-size: 20px;
}
.respuesta-diseno {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
    margin-top: -11px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-top: none;
}
.respuesta-diseno p {
    padding: 20px;
    margin: 0;
    color: #555;
    line-height: 1.6;
}
/* Al abrir */
.acordion-grc-item input:checked + .pregunta-diseno {
    background: #002b49;
    color: #fff;
}
.acordion-grc-item input:checked + .pregunta-diseno::after {
    content: '-';
}
.acordion-grc-item input:checked ~ .respuesta-diseno {
    max-height: 400px;
}


/* Oculta la flecha por defecto del navegador */
summary::-webkit-details-marker { 
    display: none; 
}

/* Cambia el color cuando el acordeón está abierto */
details[open] summary { 
    background-color: #002b49 !important; 
    color: #ffffff !important; 
}

/* Gira el símbolo + para que parezca una X o un - */
details[open] summary span { 
    transform: rotate(45deg); 
    display: inline-block; 
    color: #ffffff !important; 
}