/*
    Theme Name: Parai Zoo Theme
    Theme URI: http://amarodev.com
    Author: Jose Antonio Amaro Ortega
    Author URI: http://amarodev.com
    Description: Theme Diseñado para ParaiZoo
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: Veterinaria, Mascotas, flexbox, css grid, mobile first
    Text Domain: paraizoo
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Poppins:wght@400;500;600;700;800;900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /** Fuentes **/
    --fuente-principal: "Oswald", sans-serif;
    --fuente-headings: "Poppins", sans-serif;
    /** Colores **/
    --primario: rgb(0, 0, 126);
    --secundario: #71C6EA;
    /* --secundario: rgb(60, 176, 226); */
    --gris-oscuro: #2f2e2e;
    --gris-claro: #ebebeb;
    --blanco: #fff;
    --negro: #000;
}

/** Boder box y Conversión en tamaño de fuente **/
html {
    box-sizing: border-box;
    font-size: 62.5%; /* 10px = 1rem */
}
*, *:before, *:after {
    box-sizing: inherit;
}
/** Boder box y Conversión en tamaño de fuente **/

body{
    font-family: var(--fuente-headings);
    font-size: 1.8rem;
    line-height: 1.6;
}

/** Headings **/
h1, h2, h3, h4 {
    font-family: var(--fuente-principal);
    margin: 0 0 3rem 0;
    line-height: 1.2;
}
h1 {
    font-size: 6rem;
}
h2 {
    font-size: 4rem;
}
h3 {
    font-size: 3rem;
}
h4 {
    font-size: 2.4rem;
}

/** Globales **/
p {
    margin: 0;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
hr {
    border: 1px solid var(--gris-claro);
    margin: 2rem auto;
    width: 90%;
}
.imagen-destacada {
    margin-bottom: 3rem;
}
.contenedor {
    width: min(85%, 100rem);
    margin: 0 auto;
}
.contenido-centrado {
    width: min(85%, 80rem);
}
.contenedor-boton {
    display: flex;
    justify-content: center;
}

/** ScrollSnap **/
.scroll-snap_contenedor {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}
.snap-child {
    scroll-snap-align: start;
    min-height: 100vh;
}
.seccion .cards,
.seccion .cards-right {
    align-items: center;
}
.seccion-ubicaciones {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .seccion-ubicaciones {
        align-items: center;
    }
}

/** Botones **/
.form-submit .submit,
.boton {
    background-color: var(--blanco);
    color: var(--negro);
    padding: 1rem 3rem;
    display: block;
    flex: 1;
    width: 100%;
    text-align: center;
    font-weight: 500;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border: none;
}
.boton-primario {
    background-color: var(--secundario);
    color: var(--negro);
    font-weight: 500;
    line-height: 1.15;
    border: none;
    border-radius: 10px;
    justify-content: flex-end;
    width: 22rem;
    padding: 1rem 2.5rem;
    cursor: pointer;
}
.boton-primario:hover {
    background-color: rgb(60, 176, 226);
}
.boton-secundario {
    background-color: transparent;
    border: 1px solid var(--negro);
    line-height: 1.15;
    color: var(--negro);
    font-weight: 500;
    border-radius: 10px;
    justify-content: flex-end;
    width: 22rem;
    padding: 1rem 2.5rem;
    cursor: pointer;
    text-align: center;
}
.boton-secundario:hover {
    background-color: rgba(0, 0, 0, 0.251);
}
@media (min-width: 768px) {
    .boton {
        display: inline-block;
        flex: 0 0 auto;
        width: auto;
    }
}
.boton-primary {
    background-color: var(--primario);
    color: var(--blanco);
}

/** Utilidades **/
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-primary {
    color: var(--primario);
}
.text-white {
    color: var(--blanco);
}
.seccion {
    padding: 5rem 0;
}
.m-auto {
    margin: 0 auto;
}
.ml-auto {
    margin-left: auto;
}
.mr-auto {
    margin-right: auto;
}

/** Header **/
body.home .header {
    padding-top: 1rem;
    height: auto;
    /* min-height: 70rem; */
    background-size: cover;
    background-position: center top;
    background-image: linear-gradient(rgb(0 0 126 / 0.45), rgb(0 0 126 / 0.4)), url('/wp-content/themes/parai-zoo-theme/img/hero-banner-1.webp');
}
@media (min-width: 992px) {
    body .home .header {
        height: 100vh;
        max-height: 90rem;
    }
}
.header {
    background-color: rgba(0, 0, 126, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}
.header .logo {
    width: 10rem;
}
.barra-navegacion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
	flex-wrap: wrap;
}
@media (min-width: 992px) {
    .barra-navegacion {
        justify-content: space-between;
		flex-wrap: nowrap;
    }
}
.tagline {
    color: var(--blanco);
    margin-top: 5rem;
}
@media (min-width: 992px) {
    .tagline {
        margin-top: 15rem;
    }
}
.tagline h1 {
    font-size: 5rem;
}
.tagline span {
    font-size: 2.4rem;
    display: block;
}
@media (min-width:600px) {
    .tagline h1 {
        font-size: 6rem;
    }
    .tagline span {
    font-size: 2.6rem;
    }
}
@media (min-width:768px) {
    .tagline h1 {
        font-size: 8rem;
    }
    .tagline span {
    font-size: 2.8rem;
    }
}
.banner-servicios {
    display: flex;
    justify-content: center;
}
.hamburguer-menu {
    line-height: 1;
    border-radius: 10px;
    padding: 1px 7px;
    transition: all 0.3s ease-in-out;
}
.hamburguer-menu:hover {
    background-color: rgb(0, 0, 0, 0.25);
    cursor: pointer;
}
@media (min-width: 992px) {
    .hamburguer-menu {
        display: none;
    }
}
.contenedor-movil {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
@media (min-width: 992px) {
	.contenedor-movil {
		width: auto;
	}
}
.contenedor-menu {
    display: none;
    opacity: 0;
	background-color: #262691;
    padding: 2rem 1rem;
    margin: 0 0 0 auto;
    border-radius: 1rem;
    max-height: 0;
    transition-delay: 100ms, 300ms;
    transition-property: opacity, max-height;
    transition-timing-function: ease-in-out;
    transition-duration: 300ms;
    z-index: 1;
}
@media (min-width: 992px) {
    .contenedor-menu {
        all: unset;
    }
}
.mostrar {
    display: block;
    opacity: 1;
    max-height: 35rem;
    transition-delay: 100ms, 300ms;
    transition-property: max-height, opacity;
    transition-timing-function: ease-in-out;
    transition-duration: 300ms;
}
@media (min-width: 992px) {
    .menu-principal ul {
        display: flex;
    }
}
.menu-principal a {
    font-family: var(--fuente-headings);
    text-align: center;
    display: block;
    color: var(--blanco);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.7rem 2rem;
    text-align: right;
}
/* .front-page a {
    color: var(--blanco);
} */
@media (min-width: 992px) {
    .menu-principal .current_page_item {
        border-bottom: 3px solid var(--blanco);
    }
    .menu-principal a {
        position: relative;
        z-index: 1;
        text-align: center;
    }
    .menu-principal a::before, 
    .menu-principal a::after {
        position: absolute;
        left: 0;
        content: '';
        display: block;
        width: 100%;
        height: 50%;
        background-color: var(--primario);
        z-index: -1;
        transform: scaleX(0);
        transition: transform .6s;
    }
    .menu-principal a::before {
        top: 0;
        transform-origin: left;
    }
    .menu-principal a::after {
        top:50%;
        transform-origin: right;
    }
    .menu-principal a:hover::before {
        transform: scaleX(1);
    }
    .menu-principal a:hover::after {
        transform: scaleX(1);
    }
}
.banner {
    width: 40rem;
    height: 45rem;
    display: flex;
    align-items: center;
    margin-top: 5rem;
}
@media (min-width: 768px) {
    .banner {
        width: 60rem;
    }
}
@media (min-width: 992px) {
    .banner {
        width: 75rem;
        height: auto;
    }
}

/** Nosotros Front-Page **/
.contenedor-nosotros {
    width: min(100%, 100rem);
    background-color: #f6f9f9;
    border-radius: 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    max-width: 100%;
}
@media (min-width: 768px) {
    .contenedor-nosotros {
        flex-direction: row;
        height: 55rem;
        gap: 4.5rem;
    }
}
.seccion-nosotros {
    padding: 5rem 0rem 20rem 0rem;
}
@media (min-width: 768px) {
    .seccion-nosotros {
        padding: 12rem 0rem;
        display: flex;
        align-items: center;
    }
}
.nosotros-imagen {
    height: 100%;
    width: 100%;
}
.nosotros-imagen img{
    object-fit: cover;
    width: 100%;
    height: 40rem;
    border-radius: 1.5rem;
}
@media (min-width: 768px) {
    .nosotros-imagen img{
        height: 100%;
    }
}
.nosotros-texto {
    width: 100%;
    padding: 0rem 2rem 3rem 2rem;
}
@media (min-width: 992px) {
    .nosotros-texto {
        padding: 0rem 2rem 0rem 0rem;
    }
}
.nosotros-texto h2 {
    color: var(--primario);
}

/** Servicios Front-Page **/
.servicios {
    background-color: var(--primario);
    margin: 0 auto;
    color: var(--blanco);
}
.servicios-titulo {
    padding-top: 5rem;
}
.cards {
    width: min(100%, 100rem);
    border-radius: 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    padding: 5rem 0 20rem 0;
}
.cards-right {
    width: min(100%, 100rem);
    border-radius: 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    padding: 5rem 0 20rem 0;
}
@media (min-width: 650px) {
    .cards {
        flex-wrap: nowrap;
		gap: 4rem;
		padding: 10rem 0;
    }
    .cards-right {
        flex-wrap: nowrap;
		gap: 4rem;
		padding: 10rem 0;
    }
}
@media (min-width: 768px) {
    .cards {
        gap: 6rem;
    }
}
.card-imagen {
    width: 100%;
}
@media (min-width: 650px) {
    .card-imagen {
        width: auto;
    }
}
.card-imagen img{
    object-fit: cover;
    border-radius: 1.5rem;
    height: 30rem;
    width: 100%;
}
@media (min-width: 650px) {
    .card-imagen img{
        object-fit: cover;
        border-radius: 1.5rem;
        height: 35rem;
        width: auto;
        max-width: 25rem;
    }
}
.card-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media (min-width: 650px) {
    .card-texto {
        align-items: flex-start;
        text-align: left;
    }
    .right {
        align-items: flex-end;
        text-align: right;
    }
}
.card-texto h3 {
    margin-bottom: 1.5rem;
}
.card-texto button {
    margin-top: 2rem;
}

/** Ubicaciones Front-Page **/
.seccion-ubicacion {
    padding-top: 10rem;
}
.ubicaciones {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 5rem 0;
}
@media (min-width: 1024px) {
    .ubicaciones {
        flex-direction: row;
        justify-content: space-between;
    }
}
.ubicaciones .referencias {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
@media (min-width: 768px) {
    .ubicaciones .referencias {
        flex-direction: row;
        gap: 3rem;
    }
    .ubicaciones .referencias .direccion {
        width: 50%;
    }
    .ubicaciones .referencias img {
        width: 50%;
    }
}
@media (min-width: 1024px) {
    .ubicaciones .referencias {
        flex-direction: column;
        gap: 0;
    }
    .ubicaciones .referencias .direccion {
        width: auto;
    }
    .ubicaciones .referencias img {
        width: auto;
    }
}
.ubicaciones h3 {
    margin: 0 0 1rem 0;
    font-size: 2.4rem;
}
.ubicaciones button {
    margin-top: 2rem;
}
.ubicaciones img {
    margin-top: 2rem;
    height: 25rem;
    object-fit: cover;
}
@media (min-width: 768px) {
    .ubicaciones img {
        margin-top: 0;
    }
}
@media (min-width: 1024px) {
    .ubicaciones img {
        margin-top: 2rem;
    }
}
.mapa {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

/** Equipo/Leoncio **/
.seccion-leoncio {
    padding: 5rem 0;
}
@media (min-width: 768px) {
    .seccion-leoncio {
        padding: 5rem;
    }
}
@media (min-width: 1280px) {
    .seccion-leoncio {
        padding: 5rem 0;
    }
}
.contenedor-leoncio {
    width: min(100%, 100rem);
    display: flex;
    flex-wrap: wrap;
    background-color: #eaf6fb;
    border-radius: 1.5rem;
    margin: 0 auto 5rem auto;
    gap: 2rem;
    align-items: center;
    max-width: 100%;
}
.contenedor-leoncio-right {
    width: min(100%, 100rem);
    display: flex;
    flex-wrap: wrap-reverse;
    background-color: #eaf6fb;
    border-radius: 1.5rem;
    margin: 0 auto 5rem auto;
    gap: 2rem;
    align-items: center;
    max-width: 100%;
}
.contenedor-leoncio p,
.contenedor-leoncio-right p {
    font-size: 1.6rem;
}
@media (min-width: 1280px) {
    .contenedor-leoncio {
        height: 40rem;
        flex-wrap: nowrap;
    }
    .contenedor-leoncio-right {
        height: 40rem;
        flex-wrap: nowrap;
    }
}
.nosotros-texto-invertido {
    padding: 0rem 2rem 3rem 2rem;
    width: 100%;
}
@media (min-width: 992px) {
    .nosotros-texto-invertido {
        padding: 0 2rem 1.5rem;
    }
    .nosotros-texto {
        padding: 0 2rem 1.5rem;
    }
}
@media (min-width: 1280px) {
    .nosotros-texto-invertido {
        padding: 0 0 0 1.5rem;
    }
    .nosotros-texto {
        padding: 0 1.5rem 0 0;
    }
}
.leoncio-imagenes img{
	height: 25rem;
}
@media (min-width: 600px) {
    .leoncio-imagenes img{
        height: 100%;
    }
}
@media (min-width: 860px) {
    .leoncio-imagenes img{
        height: 40rem;
    }
}
@media (min-width: 1024px) {
    .leoncio-imagenes img{
        height: 45rem;
    }
}
@media (min-width: 1280px) {
    .leoncio-imagenes img{
        height: 100%;
    }
}
/* Esquela Leoncio */
.esquela-leoncio-contenedor {
	display: flex;
    gap: 2rem;
    align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
@media (min-width: 1120px) {
	.esquela-leoncio-contenedor {
		flex-wrap: nowrap;
	}
}
/* Equipo */
.equipo {
    width: min(100%, 100rem);
    text-align: center;
    padding: 5rem 0rem;
    margin-bottom: 7rem;
}
.equipo h2 {
  margin-bottom: 40px;
}
.miembros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}
.miembro {
  background-color: #eaf6fb;
  border-radius: 1.5rem;
  width: 18rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
    .miembro {
        width: 24rem;
    }
}
.miembro:hover {
  transform: translateY(-5px);
}
.miembro img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  border-radius: 1.2rem;
}
@media (min-width: 768px) {
    .miembro img {
        height: 35rem;
    }
}
.miembro h3 {
  font-size: 2rem;
  margin: 10px 0 5px;
}
.miembro p {
  color: #4a6c7d;
}
.miembro-info {
    padding: 1rem;
}

/** Noticias/FAQs **/
.wp-video {
    display: flex;
    justify-content: center;
    width: auto;
}
.noticias .wp-video {
	margin: 0 auto;
}
.wp-video img,
.wp-image-58 {
    margin: 0 auto;
    width: 50rem;
}
.conversation a {
    word-break: break-word;
}
/* FAQs */
.faqs {
    /* min-height: 50rem; */
    /* scrollsnap*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*scrollsnap */
}
.titulo-faqs {
    margin-bottom: 5rem;
}
.faq-list {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 0;
}
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  text-align: left;
  background-color: #e7f1ff;
  border: none;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  display: none;
  padding: 1rem;
  color: #444;
  animation: fadeIn 0.3s ease;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Galeria instalaciones*/
.lightbox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.galeria h1 {
    font-size: 4rem;
}
.galeria-texto,
.galeria p {
/*     margin-bottom: 5rem; */
}
.galeria-imagenes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 300px);
    gap: 2rem;
}
@media (min-width: 768px) {
    .galeria-imagenes {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }
}
.galeria-imagenes li:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
}
.galeria-imagenes li:nth-child(6) {
        grid-column: 1 / 2;
        grid-row: 4 / 6;
}
.galeria-imagenes li:nth-child(12) {
    grid-column: 2 / 3;
    grid-row: 6 / 8;
}
.galeria-imagenes li:nth-child(14) {
        grid-column: 1 / 2;
        grid-row: 8 / 10;
}
@media (min-width: 768px) {
    .galeria-imagenes li:nth-child(4) {
        grid-column: 4 / 5;
        grid-row: 1 / 3;
    }
    .galeria-imagenes li:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
    }
    .galeria-imagenes li:nth-child(12) {
        grid-column: 4 / 5;
        grid-row: 3 / 5;
    }
    .galeria-imagenes li:nth-child(14) {
        grid-column: 2 / 3;
        grid-row: 4 / 6;
    }
}
.galeria-imagenes li:nth-child(4) img,
.galeria-imagenes li:nth-child(6) img,
.galeria-imagenes li:nth-child(12) img,
.galeria-imagenes li:nth-child(14) img {
    height: 620px;
}
.galeria-imagenes img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/** Cementerio digital **/
.cementerio-digital .contenedor,
.cementerio-digital-archive .contenedor,
.cementerio-digital .side,
.cementerio-digital-archive .side {
    width: min(90%, 120rem);
    margin: 0 auto;
}
.cementerio-digital .side,
.cementerio-digital-archive .side {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
@media (min-width: 600px) {
    .cementerio-digital .side,
	.cementerio-digital-archive .side {
        grid-template-columns: 3fr 1fr;
    }
}
@media (min-width: 768px) {
    .cementerio-digital .side,
	.cementerio-digital-archive .side {
        grid-template-columns: 4fr 1fr;
    }
}
.cementerio-digital .boton-agregar {
    display: block;
    margin: 2rem auto 4rem;
    background-color: var(--secundario);
    color: var(--negro);
}
.cementerio-digital .boton-agregar:hover,
.cementerio-digital #user-submitted-post:hover {
    background-color: rgb(60, 176, 226);
}
/* Formulario esquelas */
.cementerio-digital #user-submitted-posts {
    margin: 0 auto;
    max-width: 60rem;
}
.cementerio-digital #user-submitted-posts #user-submitted-title,
.cementerio-digital #user-submitted-content {
    width: 100%;
}
.cementerio-digital #user-submitted-posts label {
    font-weight: 600;
}
.listado-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
	grid-auto-rows: max-content;
    gap: 2rem;
}
@media (min-width: 600px) {
    .listado-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .listado-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.card {
    background-image: linear-gradient(to bottom, transparent 0, rgb(0 0 0 / 0.7));
    position: relative;
    overflow: hidden;
    border-radius: 10px;
	height: 25rem;
}
.card .post-categories {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    gap: 2rem;
}
.card .post-categories li {
    background-color: var(--primario);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}
.card .post-categories a {
    color: var(--blanco);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
}
.card img {
    display: block;
    position: relative;
    z-index: -1;
    height: 25rem;
    object-fit: cover;
    transition: transform 300ms ease;
}
@media (min-width: 600px) {
	.card {
		height: 30rem;
	}
    .card img {
        height: 30rem;
    }
}
@media (min-width: 768px) {
	.card{
		height: 45rem;
	}
    .card img {
        height: 45rem;
    }
}
.card:hover img {
    transform: scale(1.1);
}
.card .contenido {
    position: absolute;
    padding: 2rem;
    bottom: 0;
    left: 0;
}
.card .contenido h3 {
    color: var(--blanco);
    margin: 0;
}
.card .contenido p,
.card .contenido .meta a {
    color: var(--blanco);
}
.card .meta {
    font-size: 1.4rem;
    font-weight: 600;
}
.card .meta span {
    color: var(--primario);
}
.card-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}
.cementerio-digital form{
    margin-top: 3rem;
}
.cementerio-digital input[type="search"] {
    border: 1px solid var(--gris-claro);
    padding: 1rem;
}
.cementerio-digital .botones-buscar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
@media (min-width: 992px) {
    .cementerio-digital .botones-buscar {
        flex-wrap: nowrap;
    }   
}
.botones-buscar .wp-block-search__input {
    width: 100%;
}
@media (min-width: 768px) {
    .botones-buscar .wp-block-search__input {
        width: 40rem;
    }   
}
.botones-buscar .wp-block-search__button {
    width: 48%;
}
@media (min-width: 768px) {
    .botones-buscar .wp-block-search__button {
        width: 22rem;
    }
}
/* Paginación */
.pagination .screen-reader-text {
    visibility: hidden;
}
.nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.nav-links a {
    font-size: 1.6rem;
    color: var(--primario);
    font-weight: 700;
    padding: 0.5rem;
}
.nav-links .current {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.5rem;
    color: var(--secundario);
}
/* Agregar esquela */
#user-submitted-title,
#user-submitted-content {
    border: 1px solid var(--gris-claro);
    padding: 1rem;
}
#user-submitted-post {
    background-color: var(--secundario);
    color: var(--negro);
    font-weight: 500;
    line-height: 1.15;
    border: none;
    border-radius: 10px;
    justify-content: flex-end;
    padding: 1rem 2.5rem;
    cursor: pointer;
}

/** Cementerio digital Archive **/
.archive-list li a{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--negro);
}

/** Single **/
.contenedor-single h1{
    font-size: 4rem;
}
@media (min-width: 768px) {
    .contenedor-single h1{
        font-size: 6rem;
    }
}
.esquela-individual .imagen-destacada {
    margin: 3rem auto;
    width: auto;
    height: 35rem;
    object-fit: contain;
    border-radius: 1rem;
}
@media (min-width: 768px) {
    .esquela-individual .imagen-destacada {
        height: 50rem;
    }
}
.esquela-individual .comment-form-attachment__file-types-notice,
.esquela-individual .comment-form-attachment__autoembed-links-notice,
.esquela-individual .comment-form-cookies-consent {
	display: none!important;
}
.imagen-esquela {
    width: fit-content;
    margin: 0 auto;
}
.imagen-esquela a {
	display: inline-block;
}
/** Marca de agua Logo **/
.single-lightbox {
    position: relative;
}
#image-wrap:after {
    content: '';
    position: absolute;
    width: 65px;
    height: 65px;
    background: url(img/logo/logo-paraizoo-oficial.webp);
    background-size: 100%;
    opacity: .8;
    bottom: 40px;
    right: 15px;
}
@media (min-width: 768px) {
	#image-wrap:after {
		    width: 75px;
    		height: 75px;
	}
}
/* Comentarios */
.comentarios {
    width: min(95%, 60rem);
    margin: 5rem auto 0 auto;
}
.comment-reply-title {
    color: var(--primario);
    text-align: center;
    font-size: 3rem;
}
.logged-in-as a {
    color: var(--primario);
}
.comment-form-comment label {
    font-weight: 700;
    margin: 2rem 0;
    display: block;
}
.comment-form-comment textarea,
.comentarios input[type="text"] {
    border: 1px solid var(--gris-claro);
    width: 100%;
    padding: 1rem;
}
.comentarios .comment-form-attachment__input {
	max-width: 100%;
    white-space: normal;
}
.form-submit .submit {
    background-color: var(--primario);
    color: var(--blanco);
    cursor: pointer;
}
.comentarios input[type="text"] {
    margin: 0.5rem 0;
}
h3.comentarios {
    margin: 3rem 0;
}
.lista-comentarios .comment {
    background-color: #f6f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}
.lista-comentarios p {
    font-weight: 500;
}
.lista-comentarios a {
    color: var(--primario);
}
.lista-comentarios .comment-edit-link,
.lista-comentarios .comment-reply-link {
    color: var(--primario);
    font-weight: 600;
}
.lista-comentarios cite{
    font-size: 2rem;
    font-weight: 700;
}
.lista-comentarios .children .comment {
    background-color: var(--blanco);
    margin: 2rem 0;
}

/** Modal **/
/* Fondo semitransparente */
.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}
.no-visible {
    display: none;
}
/* Contenedor del contenido */
.modal-content {
  background-color: #fff;
  margin: 0 auto;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 5rem 3rem;
  width: 90%;
  max-width: 110rem;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease-out;
}
@media (min-width: 768px) {
    .modal-content {
        margin: auto;
    }
}
.ubicacion-instrucciones {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 768px) {
    .ubicacion-instrucciones {
        flex-direction: row;
    }
}
.croquis-imagen {
    width: 40rem;
    height: 30rem;
    border-radius: 1rem;
    margin: auto;
}
@media (min-width: 992px) {
    .croquis-imagen {
        width: 45rem;
        height: auto;
    }
}
@media (min-width: 1100px) {
    .croquis-imagen {
        width: 50rem;
        height: auto;
    }
}
.modal-content h3 {
    color: var(--primario);
    text-align: center;
}
.modal-content p {
    margin-bottom: 1rem;
    color: #000000;
}
.modal-servicio {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
@media (min-width: 768px) {
    .modal-servicio {
        flex-direction: row;
    }
}
.modal-servicio img {
    height: 30rem;
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}
@media (min-width: 768px) {
    .modal-servicio img {
        height: 35rem;
        width: auto;
        max-width: 25rem;
    }
}
/* Botón de cerrar */
.close-btn {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 35px;
  cursor: pointer;
}
.close-btn:hover {
  color: #000;
}
/* Animación opcional */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/** Footer **/
.footer {
  background-color: var(--primario);
  color: var(--blanco);
  padding: 4rem 2rem;
  font-family: sans-serif;
  min-height: 35rem;
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  width: min(90%, 1200px);
  margin: auto;
  gap: 1.5rem;
  text-align: center;
  align-items: center;
}
@media (min-width: 600px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
    }
}
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 882px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(5, 1fr);
    }
}
.footer-column img {
    display: inline;
}
.footer-column h4 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 1rem;
}
.footer-column a {
    color: var(--blanco);
}
.menu-footer a {
    color: var(--blanco);
}
.menu-footer a:hover {
    border-bottom: 2px solid var(--blanco);
}
.logo-section {
  text-align: center;
}
.logo-footer {
  width: 18rem;
  margin: 1rem auto;
}
@media (min-width: 600px) {
    .logo-footer {
        margin: 0 auto 1rem auto;
    }
}
.social-icons {
	display: flex;
	justify-content: center;
	align-items:center;
}
.social-icons a {
  margin: 0 8px;
  color: white;
  font-size: 2.3rem;
  text-decoration: none;
}
.contact-list i,
.social-icons i {
  margin-right: 8px;
}
.contact-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.flag {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin-right: 6px;
}
