﻿/*PRE-CARGA*/

.loading {
	display: none;
	position: fixed;
	
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	justify-content: center;
	align-items: center;
	
	font-size: 2em;
	color:#FFEECC;
	background-color:#110022;
	z-index:99999;
}
.loading--show {
	display:flex;
}

/*RESET*/

*, *::before, *::after, 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, font, 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, button, input, select, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, header, main, section, figure, mark{
	margin: 0; padding: 0; border: 0; outline: 0; vertical-align: baseline; background-color: transparent; text-decoration: none; list-style: none; border-style: none;
	box-sizing: border-box; /*No cuenta con los paddings - MODO FACIL*/
}
form {
  appearance: none;
}
button, input, select, textarea {
  font: inherit;
}

/*MODO DISEÑO*/

.design *{ 
	outline: 1px solid red; /* delineado */
	outline-offset: 0px; /* espacio entre el borde y el delineado */
	background-color: rgba(255, 0, 0, 0.05); /* rojo semitransparente */
	box-shadow: 0 0 0 1px red; /* delineado backup */
	background-clip: padding-box;
}

/* CARGA TIPOGRAFIAS*/

@font-face {
    font-family:"Super Trivia";
    src: url("../fonts/SuperTrivia.ttf") format('truetype');
    src: url("../fonts/SuperTrivia.woff2") format('woff'); 
	unicode-range: U+0000-00FF; /* Rango de caracteres a precargar, por ejemplo, el rango básico latino */  
	font-display: swap; /* Estrategia de carga: auto, block, swap, fallback */
}

@font-face {
    font-family:Mansalva;
    src: url("../fonts/Mansalva.woff2") format('woff');
	unicode-range: U+0000-00FF;
	font-display: swap;  
}

@font-face {
    font-family:NP-Bold;
    src: url("../fonts/NationalPark-ExtraBold.woff2") format('woff');
	unicode-range: U+0000-00FF;
	font-display: swap;
}

@font-face {
    font-family:NP-Light;
    src: url("../fonts/NationalPark-ExtraLight.woff2") format('woff');
	unicode-range: U+0000-00FF;
	font-display: swap;  
}

/* MESA DE TRABAJO */

html, body {
	max-width: 100vw;
	min-height: 100vh;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body{
	background: linear-gradient(to bottom, #FFF1A8, #FFF8D6), url('');
	color:#390000;
	
	font-family: NP-Light, 'Arial Narrow', Arial, sans-serif;
  	font-weight: 100;
	font-size: 16px;
	line-height: 1.2; /*no usar px, em, etc*/
	letter-spacing: normal;
	word-spacing: normal;
	text-align: left;
	
	white-space: normal;
	word-break: keep-all;
	word-wrap: break-word;
	hyphens:auto;
	orphans: inherit;
	widows: inherit;
	
	overflow-x: hidden;
	overflow-y: auto;
	
	cursor: pointer;
	cursor: url('../img/base/cursor-normal.png') 0 0, auto;
}

::selection {
	color:#390000;
	background-color: /*rgba(255,204,51,0.5)*/ transparent;
}
:focus {
  outline:none;
 }
input:focus {
  outline:none;
}
:focus-visible {
	outline: 2px solid #390000;
}

/* CONTENEDORES */

.seccion {
	display: flex;
	width: 100%;
}

.sub-seccion {
	display: flex;
	width: 100%;
	margin: 0 auto;
	justify-content: center; /* Centra el grupo de columnas horizontalmente */
	align-items: center; /* Centra las columnas verticalmente */
	flex-wrap: wrap; /* :wrap-reverse; se envuelven también, pero de abajo hacia arriba.*/
}

/* COLUMNAS */

.a-1-columnas, .a-2-columnas, .a-3-columnas, .a-4-columnas, .a-6-columnas, .a-8-columnas, .a-10-columnas {
	float:left;
}
.a-1-columnas { width: 100%; }
.a-2-columnas { width: 50%; }
.a-3-columnas { width: 33.33%; }
.a-4-columnas { width: 25%; }
.a-6-columnas { width: 16.6%; }
.a-8-columnas { width: 12.5%; }
.a-10-columnas { width: 10%; }



/*FUENTES*/

h1, h2, h3, h4, h5, h6{
	text-transform: none;
	text-shadow: none;
}
p{
	font-variant: normal;
	font-stretch: normal;
}
strong, b {
	font-weight:bold;
}
em{
	font-style:italic;
}
span{
	font-size-adjust: none;
}

/* IMAGENES */

img, video {
	width:100%; /* :100%; Estira la imagen al contenedor a lo ANCHO */
	height: auto; /* Mantiene la proporción, ajustando altura según el ancho */	
	
	max-width:100%; /* en PX controla el maximo de ancho */
	max-height:100%; /* en PX controla el maximo de alto */
	
	min-width:100%; /* en PX controla el minimo de ancho */
	min-height:100%; /* en PX controla el minimo de alto */

  	display: block;
  	object-fit: cover; /* o 'contain' según el caso */
}
 /*
.backgrounds {
	background-image:url('../img/image.png');
	background-repeat: repeat;
	background-position: left top;
	background-size:50%;
	background-attachment: scroll; 
	background-clip: border-box;
	background-origin: padding-box;
	mix-blend-mode: multiply;
}
 */
.llamado{
	position: absolute;
	clip: rect(0, 0, 0, 0);
	clip: rect(0 0 0 0);
	clip-path: circle(0);

	width: 1px;
	height: 1px;
	margin: -1px;

	overflow:hidden;
}
.oculto{
	display:none;
}
.visible{
	overflow:visible;
}

/*ESTILOS CLINIMASCOTAS*/


/*MENU AGENDAR CITA*/

#menu-boton {
	width:11%;
	position: fixed;
	margin-top:75%;
	right: -2.3%;
	z-index: 1000;
	transition: transform 0.3s ease;
}

#menu-boton a {
	cursor: pointer;
	cursor: url('../img/base/cursor-invertido.png') 100 0, auto; 
}

#menu-boton:hover {
	transform: scale(1.2);
	transform:translateX(-15%) rotate(-5deg);
	filter: drop-shadow(0px 10px 20px rgba(99,54,24,0.3));  
}

#menu-boton:active {
	transform: scale(1.8);
}

#menu-boton:focus {
	transform: scale(1.5); 
}

#menu-boton.shifted {
	transform: translateX(-300%);
}
#sidebar {
	position: fixed; /*NO cambia de tamaño*/;
	top: 0;
	
	right: -33%;
	width: 33%;
	
	height: 100%;
	height: auto;
	
	padding:1% 0 2% 7%;
	border-bottom-left-radius: 5px;
	
	background-color: rgba(255,204,51,1);
	transition: right 0.3s ease;
	z-index: 1001;
}

#sidebar.open {
	right: 0;
}

.menu-cerrar {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 2em;
	font-weight: bold;
  	cursor: pointer;
	cursor: url('../img/base/cursor-invertido.png') 100 0, auto;
}
.menu-cerrar:hover {
	color:#FF0033;
}

input {
	border:0px black solid;
	padding:2px;
}

.form-titulo{
	font-family: "Super Trivia";
	font-size:5vw;
	line-height:0.7em;
	width: 78%;
	margin-top:8%;
}

.form-subt{
	font-family: "Mansalva";
	font-size: 2.6vw;
	line-height: 0.6em;
	width: 78%;
	letter-spacing: -0.09em;
	margin-top:2%;
	margin-bottom:8%;	
}

.form-cita {
	width: 78%;
	font-size:1.2vw;
}

.form-cita input, .form-cita select {
	width: 100%;
	height: auto;
	font-size:1.2vw;
	border-radius:10px;
	background-color:#FFF4BB;
}

.form-boton-agenda{
	width:100%;
	margin-top:3%;
	padding:10px;
	border-radius:50px;

	font-family: "Super Trivia";
	font-size:3vw;
	line-height:0.8em;
	
	background-color:#FF0033; 
	color:#FFF4BB; 
	
	transition: transform 0.3s ease;	
	
	cursor: pointer;
	cursor: url('../img/base/cursor-normal.png') 0 0, auto;
}
.form-boton-agenda:hover{
	transform:scale(1.1) rotate(-3deg);
}
.advertencia{
	font-size:0.7em;
	margin:3% 0;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(57,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 999;
}

#overlay.show {
	opacity: 1;
	visibility: visible;
}

/*MENU AGENDAR CITA*/



/*SECCION INICIO*/

#seccion-inicio{
	background: linear-gradient(to bottom, #FFF1A8, transparent), url('../img/base/head-BG.png');
	background-repeat:no-repeat;
	background-size: cover;
	background-position:center;
}
.encabezado{
}

.columna-logo{
}

.encabezado-logo{
	width:63%;
	height:63%;
	margin:14% 10% 23% 27%;
}

.encabezado-texto{
	width:90%;
	font-family: "Super Trivia";
	font-size:8.5vw;
	line-height:0.8em;
}

/*SECCION INICIO*/


/* BOTONES ABAJO/ARRIBA 100%*/

.boton-abajo, .boton-arriba{
	width:6%;
	height:6%;
	margin:-11% auto 20% auto;
	float:none;
}
.boton-abajo a, .boton-arriba a{
	cursor: pointer;
	cursor: url('../img/base/cursor-normal.png') 0 0, auto; 
}

.boton-abajo{
	transition: transform 0.3s ease;
}

.boton-abajo:hover {
	transform: scale(1.05);
	transform:translateY(30%);
}

.boton-abajo:active {
	transform: scale(1.1);
}

.boton-abajo:focus {
	transform: scale(2.05);
}

.boton-arriba{
	transition: transform 0.3s ease;
}

.boton-arriba:hover {
	transform: scale(1.05) rotate(-180deg);
}

.boton-arriba:active {
	transform: scale(1.1) rotate(-180deg) translateY(-15%); 
}

.boton-arriba:focus {
	transform: scale(2.05);
}

/* BOTONES ABAJO/ARRIBA*/


/*TITULOS SECCION*/


.titulote{
	margin:0% auto;
	text-align: center;
	background: linear-gradient(to bottom, #FFF8D6, #FFF1A8, #FFF8D6);
	padding:5% 0;
	display:none;

}
.seccion-titulo{
	width:75%;
	margin:0 auto;	
	float:none;
		
	font-family: "Super Trivia";
	font-size:10vw;
	transform:rotate(-3deg);
}
.seccion-subtitulo{
	width:75%;
	margin: -3% auto;
	float:none;
	
	font-family: "Mansalva";
	font-size: 5vw;
	letter-spacing: -0.05em;
	transform:rotate(-3deg);	
}

/* TITULOS SECCION */



/* SECCION SERVICIOS */

#seccion-servicios{
	background: linear-gradient(to top, #FFF1A8, transparent), url('');
	background-repeat:no-repeat;
	background-size:cover;
	background-position: center;
}

.servicios{
	width: 100%;
	margin-top:-10%;
}

.carousel {
	width: 100%;
	display:block;
	height: 47vw;
}

.carousel-cell {
  height: auto;
  margin: 4% 1%;
  background: #FFFFDE;
  border-radius:15px;
}


/*TARJETA SERVICIOS VERTICAL 100% */


.tarjeta-servicios-vertical{
	width:25%;
}
.tarjeta-servicios-vertical-frente{
	width:100%;
	transition: transform 0.3s ease;
	
}
.tarjeta-servicios-vertical-frente:hover {
	transform: scale(1.00) translateY(1.5%); 
}

.tarjeta-servicios-vertical-imagen {
	width:90%;
	margin:0 5%;
}
.tarjeta-servicios-vertical-info {
	width:96%;
	margin:2%;
	margin-top:-10%;
}
.tarjeta-servicios-vertical-titulo{
	width:88%;
	min-height:7.0vw;
	max-height:7.0vw;
	margin:5% 6% 2.5% 6%;

	font-family: "Super Trivia";
	font-size:4vw;
	line-height:0.8em;
	text-align: center;
}
.tarjeta-servicios-vertical-texto{
	width:68%;
	min-height:8vw;
	max-height:8vw;	
	margin:2.5% 0% 5% 6%;
	
	font-size:1.35vw;
	line-height:1.1em;
	text-align:right;
}
.tarjeta-servicios-vertical-boton-mas {
	max-width: 4.0vw;
	max-height: 4.0vw;
	margin: 10% 5% 0 0;
	
	font-family: "Super Trivia";
	font-size: 5vw;
	color: #390000;
	background-color: rgba(255,204,51,1);
	
	border-radius: 500px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	transition: background-color 0.3s ease;
	float:right;
}
.tarjeta-servicios-vertical-boton-mas:hover {
	font-size: 5vw;
	background-color:#FF0033;
	color:#FFF4BB;
	
	transform: scale(1.2);
}

/*TARJETA SERVICIOS VERTICAL */






/*TARJETA SERVICIOS HORIZONTAL 100% */


.tarjeta-horizontal{
	width:50%;
}
.tarjeta-horizontal-frente{
	width:100%;
}
.tarjeta-imagen {
	width:50%;
}
.tarjeta-info {
	width:46%;
	margin:1.9%;
}
.tarjeta-titulo{
	width:90%;
	min-height:12vw;
	max-height:12vw;
	margin:5% 5% 2.5% 5%;

	font-family: "Super Trivia";
	font-size:5vw;
	line-height:0.8em;
	text-align:left;
}
.tarjeta-texto{
	width:70%;
	margin:2.5% 5% 5% 5%;
	
	font-size:1.4vw;
	line-height:1.1em;
	text-align:right;
}
.tarjeta-boton-mas {
	max-width: 4.5vw;
	max-height: 4.5vw;
	margin: 10% 0 0 0;
	
	font-family: "Super Trivia";
	font-size: 5vw;
	color: #390000;
	background-color: rgba(255,204,51,1);
	
	border-radius: 500px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	transition: background-color 0.3s ease;
}
.tarjeta-boton-mas:hover {
	font-size: 5vw;
	background-color:#FF0033;
	color:#FFF4BB;
	
	transform: scale(1.2);
}

/*TARJETA SERVICIOS HORIZONTAL */


.modal {
	display: none; /* Oculto por defecto */
	width: 100%;
	height: 100%;
	
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	
	overflow: auto; 
	background: rgba(57,0,0,0.8);
	
	
}
/* Botón cerrar (X) */

.modal-cerrar {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 28px;
	font-weight: bold;
}

.modal-cerrar:hover {
	color: #FF0033;
}



/* MODAL TARJETA VERTICAL */

.modal-contenido-tarjeta {
	width: 40%;
	max-width: 400px;
	min-width:360px;
	height: 100vh;	
	margin: 0 auto;
	animation: fadeIn 0.3s ease-in-out;	
	display:flex;
	justify-content: center; /* Centra el grupo de columnas horizontalmente */
	align-items: center; /* Centra las columnas verticalmente */
}

.modal-tarjeta {
	width: 100%;
	padding: 30px;
	border-radius: 10px;	
	position:relative;/*X*/
	background-color:#FFF4BB;
}

.tarjeta-vertical{
	width:100%;
}
.tarjeta-vertical-frente{
	width:100%;
}
.tarjeta-vertical-imagen { /*IMAGEN*/
	width:100%;
	height:50%;
}
.tarjeta-vertical-info {
	width:90%;
	margin:5%;
	height:50%;	
}
.tarjeta-vertical-titulo{
	width:90%;
	margin:5%;

	font-family: "Super Trivia";
	font-size:4.5vw;
	font-size:3em;
	line-height:0.8em;
	
	text-align:center;	
}
.tarjeta-vertical-texto{
	width:90%;
	margin:5%;
	
	font-size:1.5vw;
	font-size:1em;
	line-height:1.1em;
	text-align:center;
}

/* MODAL TARJETA VERTICAL */



/* SECCION CONTACTO */

.contacto {
	width: 100%;
	background-color: rgba(0,160,54,1);
}
.info-contacto{
	width:96%;
	margin:0 2%;
}
.info-columna{
	width:25%;
	padding:2%;
}
.info-titulo, .info-txt, .info-hora{
	display: block;
	font-family: "Mansalva";
	font-size:1.8vw;
	line-height:0.6em;
}
.info-titulo{
	width:75%;
	padding:3% 2%;
	margin:2% 0 0 0;
	text-align:center;	
	background-color:#FFCC33;
	border-radius:25px;
	transform:rotate(-3deg);
}
.info-contenido, .info-contenido a{
	display: block;
	margin:0 0 2% 0;

	font-family: "Super Trivia";
	font-size:5vw;
	line-height:0.8em;
	letter-spacing:-0.4vw;
	color:#FFF4BB;
	transition: transform 0.3s ease;
	
}
.info-contenido a:hover {
	transform: scale(1.00) translateY(-5%); 
}
.info-contenido a:active {
  transform: scale(1.2);
}

.info-txt{
	margin:0 0 4% 0;
	color:#FFF4BB;
	letter-spacing: -0.01vw;
	
}
.info-hora{
	display:inline;
	margin:4% 0 0 0;
	color:#FFF4BB;
	letter-spacing: -0.1vw;
}
.info-icono-mapa{
	margin-top:-3%; 
	margin-right:57%;
}
.info-icono-contacto{
	margin-top:-3%;
	margin-right:31%;
}
.info-icono-horario{
	margin-top:-3%; 
	margin-right:9%;
}
.info-icono-mapa, .info-icono-contacto, .info-icono-horario{
	position: absolute;
	width:6vw;
	right:20%;
	margin-top:-15%;
}
.info-redes-boton{
	width:25%;
	padding:2%;
	transition: transform 0.3s ease;
}
.info-redes-boton:hover {
	transform: scale(1.05) translateY(-15%); 
	filter: drop-shadow(0px 10px 6px rgba(0,112,45,0.9));    
}
.info-redes-boton:active {
  transform: scale(1.2);
}
.info-redes-boton:focus {
  transform: scale(2.05);
}

/* SECCION CONTACTO */





a:hover{
  	cursor: pointer;
	cursor: url('../img/base/cursor-invertido.png') 100 0, auto;
}

.by-modo{
	text-align:center;
	margin:5% 0;
}


/*
 _____ ______   _______   ________  ___  ________ 
|\   _ \  _   \|\  ___ \ |\   ___ \|\  \|\   __  \
\ \  \\\__\ \  \ \   __/|\ \  \_|\ \ \  \ \  \|\  \
 \ \  \\|__| \  \ \  \_|/_\ \  \ \\ \ \  \ \   __  \
  \ \  \    \ \  \ \  \_|\ \ \  \_\\ \ \  \ \  \ \  \
   \ \__\    \ \__\ \_______\ \_______\ \__\ \__\ \__\
    \|__|     \|__|\|_______|\|_______|\|__|\|__|\|__|
 ________  ___  ___  _______   ________  ___  _______   ________ 
|\   __  \|\  \|\  \|\  ___ \ |\   __  \|\  \|\  ___ \ |\   ____\ 
\ \  \|\  \ \  \\\  \ \   __/|\ \  \|\  \ \  \ \   __/|\ \  \___|_ 
 \ \  \\\  \ \  \\\  \ \  \_|/_\ \   _  _\ \  \ \  \_|/_\ \_____  \ 
  \ \  \\\  \ \  \\\  \ \  \_|\ \ \  \\  \\ \  \ \  \_|\ \|____|\  \ 
   \ \_____  \ \_______\ \_______\ \__\\ _\\ \__\ \_______\____\_\  \
    \|___| \__\|_______|\|_______|\|__|\|__|\|__|\|_______|\_________\
          \|__|                                           \|_________|

*/

/* === MEDIA QUERIES RESPONSIVE === */

/* Tablets grandes y laptops <= 960px */
@media screen and (max-width: 960px) {

}

/* Tablets medianos y phablets <= 720px */
@media screen and (max-width: 720px) {


/*TARJETAS 720px */

.float{
	float:none;
	display:block;
}
.tarjeta-horizontal{
	width:33%;
}
.tarjeta-imagen {
	width:100%;
}
.tarjeta-info {
	width:96%;
	margin:2%;
}
.tarjeta-titulo{
	min-height:8vw;
	max-height:8vw;
}
.tarjeta-texto{
	font-size:1.8vw;
}
.tarjeta-boton-mas {
	max-width: 6vw;
	max-height: 6vw;
	margin: 10% 0 0 0;
	font-size: 5vw;
}
.tarjeta-boton-mas:hover {
	font-size: 6vw;
}

/*TARJETAS 720px */

}


/* Móviles grandes <= 640px */
@media screen and (max-width: 640px) {



}

/* Móviles pequeños <= 430px */
@media screen and (max-width: 430px) {


/* FORMULARIO */

#menu-boton {
	width:19%;
	margin-bottom:-200%;
	
	right: -2.3%;
	z-index: 1000;
	transition: transform 0.3s ease;
}

#menu-boton a {
	cursor: pointer;
	cursor: url('../img/base/cursor-invertido.png') 100 0, auto; 
}

#menu-boton:hover {
	transform: scale(1.2);
	transform:translateX(-15%) rotate(-5deg);
	filter: drop-shadow(0px 10px 20px rgba(99,54,24,0.3));  
}

#menu-boton:active {
	transform: scale(1.8);
}

#menu-boton:focus {
	transform: scale(1.5); 
}

#menu-boton.shifted {
	transform: translateX(-300%);
}

#sidebar {
	right: -100%;
	
	width: 100%;
	
	padding:1% 0 2% 10%;
	border-bottom-left-radius: 0px;
}
.form-titulo{
	width: 90%;
	font-size:17vw;
	line-height:0.8em;
	margin-top:15%;
}
.form-subt{
	width: 90%;
	font-size: 8vw;
}
.form-cita {
	width: 90%;
	font-size:4vw;
}
.form-cita input, .form-cita select {
	font-size:4vw;
}
.form-boton-agenda{
	font-size:8vw;
}
.advertencia{
	font-size:0.9em;
	margin-bottom:10%;
}

/* FORMULARIO */


/*SECCION INICIO 430px*/

#seccion-inicio{
	max-height:666px;
	margin:10vh auto;
}
.encabezado{
	width:100%;
}
.columna-logo{
	width:100%;
}
.columna-texto{
	width:100%;
}
.encabezado-logo{
	width:75%;
	margin:10% auto -5% auto;
}
.encabezado-texto{
	width:80%;
	margin:5% auto;
	font-size:15vw; 
}

/*SECCION INICIO*/




/*TITULOS SECCION  430px */
.titulote{
	margin:50% auto 50% auto;
	padding:20% 0;
	display:none;

}
.seccion-titulo{
	width:90%;
	margin-top:-4%;
	font-size:15vw;
}
.seccion-subtitulo{
	width:90%;
	margin: -5% auto;
	font-size: 10vw;
}

/* TITULOS SECCION */

/* BOTONES ABAJO/ARRIBA 430px*/ 

.boton-abajo, .boton-arriba{
	width:12%;
	height:12%;
}
.boton-arriba{
}
.ocultame{
	display:none;
}

/* BOTONES ABAJO/ARRIBA 430px*/ 



/* TARJETAS 430px */

.float{
	float:left;
	display:inline-block;
}
.derecha{
	float:right;
}
.tarjeta-horizontal{
	width:100%;
}
.tarjeta-imagen {
	width:50%;
}
.tarjeta-info {
	width:46%;
	margin:2%;
}
.tarjeta-titulo{
	min-height:26vw;
	max-height:26vw;
	font-size:11vw;
}
.tarjeta-texto{
	font-size:2.6vw;
}
.tarjeta-boton-mas {
	max-width: 8vw;
	max-height: 8vw;
	margin: 10% 0 0 0;
	font-size: 8vw;
	border-radius: 500px;
}
.tarjeta-boton-mas:hover {
	font-size: 9vw;
}

/* TARJETAS */



/* SECCION SERVICIOS 430px */

.servicios{
	margin-top:0%;
}

.carousel {
	height: 100%;
}

.carousel-cell {
  height: auto;
  margin: 20% 2%;
}


/*TARJETA SERVICIOS VERTICAL 430px */


.tarjeta-servicios-vertical{
	width:85%;
}
.tarjeta-servicios-vertical-frente{
	width:100%;
}
.tarjeta-servicios-vertical-imagen {
	width:90%;
	margin:0 5%;
}
.tarjeta-servicios-vertical-info {
	width:96%;
	margin:2%;
	margin-top:-10%;
}
.tarjeta-servicios-vertical-titulo{
	width:88%;
	min-height:20.0vw;
	max-height:20.0vw;
	margin:5% 6% 2.5% 6%;

	font-family: "Super Trivia";
	font-size:12vw;
}
.tarjeta-servicios-vertical-texto{
	width:68%;
	min-height:22vw;
	max-height:22vw;	
	margin:2.5% 0% 5% 6%;
	
	font-size:4vw;
	line-height:1.1em;
	text-align:right;
}
.tarjeta-servicios-vertical-boton-mas {
	max-width: 12.0vw;
	max-height: 12.0vw;
	margin: 10% 5% 0 0;	
	font-size: 10vw;
}
.tarjeta-servicios-vertical-boton-mas:hover {
	font-size: 15vw;
	background-color:#FF0033;
	color:#FFF4BB;
	
	transform: scale(1.2);
}

.flickity-prev-next-button {
  top: 50%;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 2.5%; }
.flickity-prev-next-button.next { right: 2.5%; }


/*TARJETA SERVICIOS VERTICAL */










/* MODAL TARJETA VERTICAL 430px */

.modal-contenido-tarjeta {
	width: 90%;
	max-width: 400px;
	min-width:1px;
	height: 100vh;	
	margin: 0 auto;
	animation: fadeIn 0.3s ease-in-out;	
	display:flex;
	justify-content: center; /* Centra el grupo de columnas horizontalmente */
	align-items: center; /* Centra las columnas verticalmente */
}

/* MODAL TARJETA VERTICAL */


/* SECCION CONTACTO 430px */

.contacto {
}
.info-contacto{
	width:80%;
	margin:0 auto;
	padding:5% 0;
}
.info-columna{
	width:100%;
}
.info-titulo, .info-txt, .info-hora{
	font-size:8vw;
	letter-spacing: -0.1vw;	
}
.info-titulo{
	width:80%;
	padding:3% 2%;
	margin:2% 0 0 0;
}
.info-contenido, .info-contenido a{
	font-size:16vw;
}
.info-txt{
}
.info-hora{
	margin:2% 0 0 -4%;
}
.info-icono-mapa, .info-icono-contacto, .info-icono-horario{
	width:18vw;
}
.info-icono-mapa{
	margin-top:-135%; 
	margin-right:3%;
}
.info-icono-contacto{
	margin-top:-65%;
	margin-right:-12%;
}
.info-icono-horario{
	margin-top:50%; 
	margin-right:5%;
}
.info-redes-boton{
	padding:3%;
}

/* SECCION CONTACTO 430px */

}

/* Celulares muy pequeños <= 320px */
@media screen and (max-width: 320px) {
}
