/*
Theme Name: Naricitas 2025
Theme URI: https://naricitas.com/
Author: Braulio Aquino
Author URI: https://braulioaquino.com/
Description: Tema hecho a medida para Naricitas
Version: 2025
*/

:root {
    --color-gris: #E4E1E1;
    --color-negro: #2C2528;
    --color-amarillo: #e7c60b;
    --color-rojo: #BF0712;
}

* {
    box-sizing: border-box;
}

/* General */
body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding: 0 0 0 1rem;
}

li {
    margin: 0 0 0.5rem;
}
li:last-child {
    margin-bottom: 0;
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

/* Cabecera */
.header-top {
    background-color: var(--color-rojo);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top .logo {
    width: auto;
    height: 50px;
}

.header-top .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    gap: 2rem;
    position: relative;
}
.header-top .menu-logo {
    margin: -3px 1rem 0 0;
    position: relative;
}
.header-top .menu-left,
.header-top .menu-right {
    display: none;
}

.header-top .menu :not(.menu-logo) a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.75rem;
}
.header-top .menu-item {
    color: #fff;
}
.header-top .menu-item svg {
    font-size: 1.15rem;
}
/* Botón hamburguesa */
.header-top .menu-toggle {
    background: none;
    font-size: 2.25rem;
    cursor: pointer;
    display: block;
    border: solid 1px #fff;
    border-radius: 0.25rem;
    color: #fff;
}
.header-top .menu-items {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-rojo);
    width: 100%;
    z-index: 1000;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}

        /* Mostrar menú cuando está activo */
        .menu-items.active {
            display: block;
        }

        .menu-items li {
            text-align: center;
            border-bottom: 1px solid #ddd;
        }

        .menu-items li:last-child {
            border-bottom: none;
        }
.menu-items a {
    display: block;
    padding: 1.5rem;
}

        .menu-items a:hover {
            background-color: #f4f4f4;
        }
        

        

/* Hero */
.hero {
    margin: 0;
    position: relative;
    box-sizing: border-box;
}
.hero-bg .hero-bg-item {
    height: calc(100vh - 90px);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
    text-align: center;
    color: #fff;
    background: url('https://naricitas.com/wp-content/uploads/2024/10/infantil-portada.jpg.webp') no-repeat center center / cover;
    margin: 0;
    display: block;
    position: relative;
}

.hero-bg .hero-bg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 750px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
    background: 
    radial-gradient(
        circle at center 30%, 
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.75) 25%,
                rgba(255, 255, 255, 0.25) 50%,
                rgba(255, 255, 255, 0) 75%
    );
    z-index: 1;
}

.hero-main {
    position: relative;
    max-width: 100%;
    text-align: center;
    margin-top: calc(-1*(100vh - 90px));
}
.hero-title {
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 2rem;
}
.hero-title img {
    margin: 0 2rem 2rem;
    max-height: 175px;
    width: auto;
    max-width: 100%;
}
.hero-title img:hover {
    transform: scale(1.075);
    transition: transform 0.5s;
}
.hero-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 2rem;
    color: var(--color-negro);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
}
body.page-template-pt-rubros .hero-title h1 {
    display: none;
}

.hero-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    text-transform: uppercase;
    color: var(--color-negro);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
}

.hero-title p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 2rem;
    color: var(--color-negro);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
}

/* Servicios */
.services {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-card {
    text-align: center;
    width: 100%;
    height: auto;
    background: url('https://naricitas.com/wp-content/uploads/2024/10/imagen-ejemplo.png') no-repeat center center / cover;
    border: solid 1px var(--color-gris);
    border-radius: 0.25rem;
    padding: 0.75rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.service-card:hover {
    transform: scale(1.075);
    transition: transform 0.5s;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
    radial-gradient(
        circle at center center, 
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.25) 75%,
                rgba(255, 255, 255, 0.75) 100%
    );
}
.service-top {
    margin-bottom: 1rem;
}
.services .service-card:nth-of-type(2) .service-top {
    width: 215px;
}
.services .service-card:nth-of-type(3) .service-top {
    width: 222px;
}
.service-top img {
    max-height: 125px;
    width: auto;
    position: relative;
}
.service-top h3 {
    display: none;
}
.service-bottom {
    width: 100%;
    position: relative;
}
.service-bottom p {
    color: var(--color-rojo);
    background-color: var(--color-amarillo);
    margin: 0 0 1rem;
    border-radius: 0.25rem;
    padding: 1rem;
    box-sizing: border-box;
    font-weight: bold;
}

.service-bottom .btn {
    display: inline-block;
    background-color: var(--color-rojo);
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    margin: 0 0 1rem;
}
.service-bottom .btn:hover {
    transform: scale(1.075);
    transition: transform 0.5s;
}

/* Redes */

ul.service-redes {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    list-style: none;
    padding: 0;
    font-size: 1.5rem;
    gap: 0.75rem;
}
ul.service-redes li a {
    margin: 0;
    display: flex;
    justify-content: center;
    background: #000;
    padding: 0;
    align-items: center;
    line-height: 0;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    color: #fff;
}
ul.service-redes li a.icon-linkedin {
    background-color: #0F65C2;
}
ul.service-redes li a.icon-instagram{
    background-color: #F00075;
}
ul.service-redes li a.icon-facebook {
    background-color: #0765FF;
}
ul.service-redes li a.icon-tiktok {
    background-color: #000000;
}
ul.service-redes li a svg {
    color: #fff;
}

.hero-contacto {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}
.contacto-bloque {
    background: #ea4335;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
    width: 100%;
}
.contacto-bloque h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
}
.contacto-bloque p {
    margin: 0 0 0.25rem;
}
.contacto-bloque a.btn {
    background: #128c7e;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 0.25rem;
}
.contacto-bloque a.btn:hover {
    background: #075e54;
    transform: scale(1.075);
    transition: transform 0.5s;
}
.contacto-bloque:last-child a.btn {
    background: #4a80f5;
}
.contacto-bloque:last-child a.btn:hover {
    background: #1a73e8;
}
.contacto-bloque a.btn svg {
    font-size: 1.35rem;
    position: relative;
    margin-top: -5px;
}

.subtitle {
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    text-align: center;
}
.subtitle a {
    color: inherit;
    text-decoration: none;
}
.subtitle a:hover {
    color: inherit;
    text-decoration: underline;
}

.galeria-lista {
    column-count: 3;
    column-gap: 0.5rem;
}
.galeria-lista a {
    display: block;
    break-inside: avoid;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    overflow: hidden;
}
.galeria-lista a:hover {
    transform: scale(1.075); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    transition: transform .5s; 
}

.catalogo {
    padding-top: 2rem;
    padding-bottom: 0;
}

.call-to-action a {
    background: var(--color-amarillo);
    color: var(--color-rojo);
    text-decoration: none;
    padding: 1rem;
    border-radius: 0.25rem;
    border: solid 1px;
    display: inline-block;
    font-weight: bold;
    width: max-content;
}
.call-to-action a:hover {
    color: var(--color-amarillo);
    background: var(--color-rojo);
}

/* Clientes */
.clientes {
    text-align: center;
    margin: 0;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}
.clientes-logos {
    gap: 1.25rem;
    width: 100%;
    overflow: hidden; /* Oculta los elementos fuera del viewport */
    display: flex;
    justify-content: center;
    align-items: center;
}
.clientes-logos .slick-slide {
    padding: 0rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clientes-logos .slick-slide > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cliente-logo {
    border: solid 1px var(--color-gris);
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: auto;
    box-sizing: border-box;
}
.cliente-logo img {
    max-width: 100%;
    height: auto;
}

/* FAQ */
.faq {
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25)),
        url('https://naricitas.com/wp-content/uploads/2024/10/party-play-time-02.jpg.webp');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}

.faq h3.subtitle {
    color: #fff;
}
.faq .accordion {
    max-width: 940px;
}
.faq .accordion .accordion-content strong {
    color:var(--color-rojo);
}


/* Respaldo */
.respaldo {
    margin: 0 auto;
    padding: 2rem 0;
}
.respaldo-cuadros {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.respaldo-cuadro {
    position: relative;
    color: var(--color-rojo);
    width: 45%;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: linear-gradient(rgba(231, 198, 11, 0.75), rgba(231, 198, 11, 1.0)),
        url('https://naricitas.com/wp-content/uploads/2024/08/395280_10151642342848276_1164675990_n.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}
.respaldo-cuadro:hover {
    transform: scale(1.075);
    transition: transform 0.5s;
}
.respaldo-cuadro strong {
    margin: 0;
    font-size: 2rem;
}
.respaldo-cuadro span {
    margin: 0;
    font-weight: 600;
}

/* Testimonios */
.testimonios {
    margin: 0 auto;
    padding: 0 0 2rem 0;
}
.testimonios-cuadros {
    padding: 0 2rem 2rem;
    position: relative;
}
.testimonios-cuadros .slick-list {
    margin-bottom: 1rem;
}
.slick-arrow {
    font-size: 0;
    z-index: 1;
    background: none;
    border: 0;
    position: absolute;
    top: calc(50% - 1rem);
}
.slick-arrow.slick-prev {
    left: 0;
}
.slick-arrow.slick-next {
    right: 0;
}
.slick-arrow::before {
    content: '-';
    position: relative;
    display: block;
    z-index: 1;
    font-size: 1.5rem;
}
.slick-arrow.slick-prev::before {
    content: '«';
}
.slick-arrow.slick-next::before {
    content: '»';
}
ul.slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    left: 0;
}
ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
ul.slick-dots li button {
    font-size: 0;
    line-height: 1;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
ul.slick-dots li button:before {
    font-size: 1.25rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    color: black;
}
ul.slick-dots li.slick-active button:before {
    color: var(--color-rojo);
}
.testimonio-cuadro {
    display: flex !important;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0.5rem;
}
.testimonio-cuadro-left {
    width: 150px;
}
.testimonio-cuadro-left img:hover {
    transform: scale(1.175);
    transition: transform 0.5s;
}
.testimonio-cuadro-left img {
    border-radius: 0.25rem;
}
.testimonio-cuadro-right {
    width: calc(100% - 150px - 1rem);
}
.testimonio-cuadro-right p {
    margin: 0 0 0.75rem;
}
.testimonio-cuadro-right p.comentario-autor {
    border-top: solid 1px var(--color-negro);
    padding-top: 0.75rem;
    font-weight: bold;
    margin: 0;
    display: inline-block;
}
.testimonio-cuadro-right p.comentario-autor-cargo {
    font-size: 0.9rem;
    margin: 0;
}

.agendar {
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25)),
        url('https://naricitas.com/wp-content/uploads/2024/08/441411761_17902706954972912_4966919279509914180_n.jpg.webp');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}
.agendar h3.subtitle {
    color: #fff;
}
.agendar .iframe {
    display: block;
    margin: 0 auto 2rem;
    border: solid 1px var(--color-amarillo);
    background: var(--color-amarillo);
    border-radius: 0.25rem;
    overflow: hidden;
}
.agendar .iframe iframe {
    width: 100%;
    display: block;
}
.agendar .iframe p {
    margin: 0;
    text-align: center;
    padding: 1rem;
    font-weight: bold;
    color: var(--color-negro);
}
.agendar h4 {
    color: #fff;
    text-align: center;
    font-size: 1.15rem;
    margin: 0;
}
.page-description {
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
}
.singular-description {
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}
.galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.galeria-description .galeria {
    justify-content: center;
}
.galeria > div {
    width: calc( ( 100% - 2.5rem ) / 6 );
}
.galeria-description .galeria > div {
    width: calc( ( 100% - 1.5rem ) / 4 );
}
.galeria a img {
    width: 100%;
    border-radius: 0.25rem;
}
.galeria a img:hover {
    transform: scale(1.075);
    transition: transform 0.5s;
}
.galeria-content h3 {
    text-align: center;
}
.page-description-1 .subtitle,
.galeria-description .subtitle {
    text-align: left;
}
.page-description-1 hr,
.galeria-description hr {
    display: block;
    border: none;
    border-top: solid 2px var(--color-negro);
    margin: 0 0 2rem;
    width: 25%;
}
.page-description-2 {
    display: none;
}
.page-description-3 {
    text-align: center;
    width: 100%;
}
.page-description-botones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.page-description-botones a {
    background: var(--color-amarillo);
    color: var(--color-rojo);
    text-decoration: none;
    line-height: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}
.page-description-botones a:hover {
    color: var(--color-amarillo);
    background: var(--color-rojo);
}
.catalogo-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.catalogo-item > a {
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('https://naricitas.com/wp-content/uploads/2024/10/lamira-eventos-corporativos-02.jpg.webp');
    border-radius: 0.25rem;
    width: 312px;
    height: 208px;
    position: relative;
    overflow: hidden;
}
.catalogo-item > a:hover {
    transform: scale(1.075);
    transition: transform 0.5s;
}
.catalogo-item > a span {
    display: block;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--color-amarillo);
    color: var(--color-rojo);
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 0 0 0.075rem var(--color-amarillo);
}
footer {
    color: #fff;
    text-align: center;
    clear: both;
}
.pre-footer {
    padding: 2rem 0;
    background: var(--color-rojo);
}
.pre-footer .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.pre-footer .container > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 150px;
}
.pre-footer img {
    max-width: 100%;
    position: relative;
}
.pre-footer h3 {
    font-size: 1rem;
}
.pre-footer .footer-logo:nth-of-type(1) img {
    width: 125px;
}
.pre-footer .footer-logo:nth-of-type(2) img {
    top: 35px;
}
.pre-footer .footer-logo:nth-of-type(3) img {
    top: 20px;
}
.post-footer {
    padding: 1rem;
    background-color: var(--color-negro);
}
.post-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}
.creditos {
    text-align: center;
    padding: 0.75rem;
    background: #000;
    color: var(--color-gris);
    font-size: 0.85rem;
}
.creditos a {
    color: #fff;
    text-decoration: none;
}
.creditos a:hover {
    text-decoration: underline;
}



.accordion {
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.accordion-item {
    border-top: 1px solid #ddd;
}

.accordion-item:first-child {
    border-top: none;
}

.accordion-header {
    background: var(--color-amarillo);
    color: var(--color-negro);
    font-weight: 600;
    padding: 1rem;
    text-align: center;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.25s linear;
}

.accordion-header:hover {
    background-color: #eee;
    transition: 0.25s linear;
}
.accordion-content {
    height: 0;
    overflow: hidden;
    background-color: #fefefe;
    border-top: 1px solid #ddd;
    transition: 0.25s linear;
    
}
.accordion-content.open {
    height: auto;
    padding: 1rem;
    line-height: 1.25;
    transition: 0.25s linear;
}

#whatsapp {
    position: fixed;
    inset: auto 1rem 0 auto;
    opacity: 1;
    max-height: 100vh;
    max-width: 100vw;
    visibility: visible;
    z-index: 999999999 !important;
    display: flex;
    align-items: center;
}
.page-description #whatsapp {
    position: relative;
    z-index: 1 !important;
    justify-content: center;
    margin-bottom: 1rem;
}
#whatsapp:hover .whatsapp-mensaje {
    box-shadow: rgb(0 18 46 / 18%) 0px 2px 20px 0px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 2px 20px 0px;
}
#whatsapp:hover .whatsapp-img {
    box-shadow: rgb(2 6 16 / 20%) 0px 2px 16px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 2px 20px 0px;
}

.whatsapp-img {
    background: linear-gradient(135deg, rgb(0, 182, 191), rgb(155, 230, 141));
    box-shadow: rgb(2 6 16 / 20%) 0px 2px 16px;
    height: 3rem;
    width: 3rem;
    bottom: 0;
    border-radius: 3rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin: 0 0.75rem 0 0;
}
a.whatsapp-img {
    color: #fff;
    text-decoration: none;
}
a.whatsapp-img:hover {
    color: #fff;
    text-decoration: none;
}

.whatsapp-mensaje {
    display: none;
    transition-property: opacity;
    box-shadow: rgb(0 18 46 / 18%) 0px 2px 20px 0px;
    height: 42px;
    z-index: 1;
    white-space: nowrap;
    font-size: 1.05rem;
    border-radius: 1rem;
    background: rgb(255, 255, 255);
    align-items: center;
    padding: 0 1rem;
}
a.whatsapp-mensaje {
    text-decoration: none;
    color: #000;
}
a.whatsapp-mensaje:hover {
    color: inherit;
    text-decoration: none;
}


@media (min-width: 576px) {
    .hero-bg .hero-bg-item {
        height: 380px;
    }
    .hero-main {
        margin-top: -380px;
        min-height: 380px;
    }
    .hero-title {
        height: 380px;
    }
    .galeria-description .galeria > div {
        width: calc( ( 100% - 2rem ) / 5 );
    }
    .service-card {
        width: calc(50% - 1rem);
    }
    .services .service-card:nth-of-type(2) .service-top img {
        top: 25px;
    }
    .services .service-card:nth-of-type(3) .service-top img {
        top: 25px;
    }
    .hero-contacto {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .contacto-bloque {
        width: calc(50% - 0.5rem);
    }
    .contacto-bloque a.btn svg {
        font-size: 2.5rem;
    }
    .galeria > div {
        width: calc((100% - 5.5rem) / 12);
    }
    .galeria-lista {
        column-count: 4;
    }
    .pre-footer .container > div {
        width: calc(50% - 2rem);
    }
    .pre-footer .container > div {
        width: calc(50% - 1rem);
    }
    .pre-footer img {
        width: 150px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .contacto-bloque p {
        margin-bottom: 0.5rem;
    }
    .contacto-bloque a.btn {
        padding: 1rem;
    }
    .contacto-bloque a.btn svg {
        font-size: 1.5rem;
    }
    .catalogo > p {
        font-size: 1.25rem;
        text-align: center;
    }
    .galeria-lista {
        column-count: 5;
    }
    .respaldo-cuadro {
        width: calc(33% - 1rem);
    }
    .pre-footer .container {
        justify-content: space-between;
    }
    .pre-footer .container > div {
        width: calc(25% - 1rem);
        gap: 1rem;
    }
    .pre-footer .footer-logo:nth-of-type(3) img {
        top: 35px;
    }
    .pre-footer .footer-logo:nth-of-type(4) img {
        top: 15px;
    }    
    .pre-footer h3 {
        display: none;
    }
    .post-footer .container {
        flex-direction: row;
    }
    .whatsapp-img {
        height: 3.75rem;
        width: 3.75rem;
    }
    .whatsapp-mensaje {
        display: flex;
        padding: 1.3rem 1rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .hero-bg .hero-bg-item {
        height: 425px;
    }
    .hero-main {
        margin-top: -425px;
        min-height: 425px;
    }
    .hero-title {
        height: auto;
        margin: 0;
        padding-top: 2.5rem;
    }
    .catalogo-item > a {
        width: 300px;
        height: 200px;
    }
    .galeria-description .galeria > div {
        width: calc( ( 100% - 2.5rem ) / 6 );
    }
    .galeria-lista {
        column-count: 6;
    }
    .services {
        gap: 0.5rem;
        margin-bottom: 5rem;
    }
    .service-card {
        width: calc(25% - 0.5rem);
        height: 350px;
    }
    .service-top img {
        max-width: 175px;
        margin: 0 auto;
    }
    .service-bottom p {
        font-size: 0.9rem;
        padding: 1rem 0.5rem;
    }
    .service-bottom .btn {
        margin: 0;
    }
    .service-bottom ul.service-redes {
        bottom: -65px;
        position: absolute;
        width: 100%;
    }
    .contacto-bloque {
        padding: 1.5rem;
    }
    .galeria > div {
        width: calc((100% - 2.5rem) / 6);
    }
    .singular-description {
        padding: 3rem 0;
        font-size: 1.25rem;
    }
    .page-description {
        padding-top: 3rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .page-description-1 {
        width: calc( 100% - 300px - 300px - 2rem );
        width: calc(50% - 0.5rem);
    }
    .page-description-1 p,
    .galeria-description {
        font-size: 1.25rem;
        margin: 0 0 2rem;
    }
    .page-description-2 {
        display: block;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-image: url('https://naricitas.com/wp-content/uploads/2024/10/lamira-eventos-corporativos-02.jpg.webp');
        border-radius: 0.25rem;
        width: calc(50% - 0.5rem);
    }
    .page-description-3 {
        font-size: 1.25rem;
    }
    .page-description-botones {
        gap: 1rem 1.5rem;
    }
    .page-description-botones a {
        padding: 0.75rem 2rem;
    }
    .clientes,
    .faq,
    .respaldo,
    .agendar {
        padding: 3rem;
    }
    .catalogo {
        padding-top: 3rem;
    }
    .testimonios {
        padding-bottom: 3rem;
    }
    .testimonio-cuadro {
        align-items: center;
    }
    .respaldo-cuadro {
        width: 250px;
    }
    .pre-footer .container > div {
        width: auto;
    }
    .whatsapp-img {
        height: 3.5rem;
        width: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
    .header-top .menu-toggle {
        display: none;
    }
    .header-top .menu {
        padding: 0.75rem 1rem 0.5rem;
    }
    .header-top .menu ul {
        display: none;
    }
    .header-top .menu-logo {
        margin: -0.5rem auto 0;
    }
    .header-top .menu-left,
    .header-top .menu-right {
        display: flex;
        align-items: center;
        flex: 1;
        gap: 1rem;
    }
    .header-top .menu-left {
        justify-content: start;
    }
    .header-top .menu-right {
        justify-content: end;
    }
    .header-top .menu-item svg {
        font-size: 1.25rem;
        position: relative;
        margin-top: -5px;
    }
    .hero-bg .hero-bg-item {
        height: 700px;
    }
    .hero-main {
        margin-top: -700px;
        min-height: 700px;
    }
    .hero-title {
        padding-top: 3rem;
    }
    body.page-template-pt-rubros .hero-title {
        padding-top: 1rem;
        min-height: 600px;
    }
    .hero-title img {
        max-width: 525px;
        max-height: 250px;
    }
    .hero-title h1 {
        font-size: 3rem;
    }
    .hero-title h2 {
        font-size: 4rem;
        font-weight: 600;
    }
    .hero-title p {
        font-size: 2.75rem;
    }
    .catalogo-item > a {
        width: 312px;
        height: 208px;
    }
    .catalogo-item > a span {
        background: rgba(231, 198, 11, 0.75);
    }
    .catalogo-item > a:hover span {
        background: var(--color-amarillo);
    }
    .galeria-description .galeria > div {
        width: calc((100% - 3rem) / 7);
    }
    .services {
        justify-content: space-between;
        width: 1100px;
        margin: 0 auto 5rem;
    }
    .service-card {
        width: 256px;
        height: 400px;
    }
    .service-bottom p {
        font-size: 1rem;
        padding: 1rem;
    }
    .contacto-bloque {
        padding: 1.5rem;
        width: 425px;
    }
    .contacto-bloque h3 {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    .contacto-bloque p {
        margin-bottom: 1rem;
        font-size: 1.15rem;
    }
    .subtitle {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .page-description {
        padding-top: 5rem;
    }
    .singular-description {
        padding: 5rem 0;
    }
    .catalogo {
        padding-top: 5rem;
    }
    .clientes,
    .faq,
    .respaldo,
    .agendar {
        padding: 5rem 0;
    }
    .testimonios {
        padding-bottom: 5rem;
    }
    .accordion-header {
        font-size: 1.25rem;
        padding: 1.5rem 1rem;
        font-weight: bold;
    }
    .accordion-content.open {
        line-height: 1.5;
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    .respaldo-cuadro {
        width: 275px;
        padding: 2rem 1rem;
    }
    .respaldo-cuadro strong {
        font-size: 2.5rem;
    }
    .respaldo-cuadro span {
        font-size: 1.25rem;
    }
    .testimonio-cuadro-right p {
        margin: 0 0 0.75rem;
        font-size: 1.25rem;
    }
    .catalogo > p {
        font-size: 1.75rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .hero-title img {
        max-height: 275px;
    }
    .galeria-description .galeria > div {
        width: calc((100% - 4.5rem) / 10);
    }
}