@font-face {
	font-family: 'CeraPro';
	src: url('https://www.clinicaplanas.com/ka/apps/clinicaplanas_assets/fonts/CeraPro.woff2') format('woff2'),
			url('https://www.clinicaplanas.com/ka/apps/clinicaplanas_assets/fonts/CeraPro.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}



	/* VARIABLES > COLORES BASE
	======================================================================================================================
	Definición de la paleta de colores base para el proyecto                                                            */

:root {  
  --font-base-size: 15px;
  --dark-pink: #f570a9;
  --medium-pink: #efafbd;
  --light-pink: #fbe3f9;
  --dark-orange: #ea5721;
  --light-orange: #f18930;
  --light-beige: #f4eede;
  --red-pink: #F2C9A9;
  --purple: #926886;
	--beige-card: #F2C9A9;
}


/*
========================================================================================================================
BASE
========================================================================================================================
Definimos los elementos HTML comunes y los elementos estructurales de la página                                       */         

html, body {
  font-size: var(--font-base-size);
  font-family: Lato;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1 {
  font-size: 6rem;
  line-height: 1.1;
  font-family: Lato;
  font-weight: 900;
}
h2 {
  font-size: 3.6rem;
  line-height: 1.1;
}
h3 {
  font-size: 1.8rem;
  line-height: 1.1;
	color: #515151;  
}
p {
  font-size: 1.3rem;
  line-height: 1.2;
}

.black {
  font-weight: 700;
}

/* RESPONSIVE TIPOGRAFÍAS!!! */
@media (min-width: 800px) and (max-width: 1200px){
  h1 { font-size: 5.0rem; }
  h2 { font-size: 3.2rem; }

}

@media screen and (max-width: 1025px){
  h1 { font-size: 3.6rem; }
  h2 { font-size: 3.0rem; }
  h3 { font-size: 1.8rem; }
}

@media screen and (max-width: 769px){
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1rem; }
}

.c-white        { color: #ffffff; }
.c-dark-pink    { color: #f570a9; }
.c-medium-pink  { color: #e4a8cc; }
.c-light-pink   { color: #fbe3f9; }
.c-dark-orange  { color: #ea5721; }
.c-light-orange { color: #f18930; }
.c-light-beige  { color: #f4eede; }

.bg-dark-pink    { background: #f570a9; }
.bg-medium-pink  { background: #e4a8cc; }
.bg-light-pink   { background: #fbe3f9; }
.bg-dark-orange  { background: #ea5721; }
.bg-light-orange { background: #f18930; }
.bg-light-beige  { background: #f4eede; }
.bg-beige				 { background: #F7E5D4; }

.container-medium {
	max-width: calc(var(--max-width) * .85);
	margin: 0 auto;
	padding-left: var(--space);
	padding-right: var(--space);
}

@media(min-width: 1920px) {
	.container-medium {
		max-width: calc(var(--max-width) * .95);
	}
}

@media(max-width:768px) {
	.container-medium {
		padding: .8rem 1.8rem;
	}
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-fit {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hr-cta {
  margin-top: 1.5rem;
  max-width: 30px;
  border: 2px solid #515151;
}

@media(max-width:768px) {
	.hr-cta {
		margin-top: .9rem;
		max-width: 25px;
		border: 1px solid;
	}
}

/*
========================================================================================================================
SECCIONES
========================================================================================================================
Definimos las clases que se van a servir en todo el contenido principal de la landing (DESKTOP FIRST)                  */


/* ------------------------------------------ CTA - DESPUÉS DE HERO ------------------------------------------*/
.container-cta {
  margin: 2%;
}

/* ------------------------------------------ 4 TARJETAS ------------------------------------------*/
.beige-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
	.beige-cards > div {
		display: flex;
		justify-content: center;
		text-align: center;
		align-items: center;
		padding: var(--60px) var(--10px);
		font-size: var(--22px);
		font-weight: bolder;
		background-color: var(--beige-card);
		border-radius: var(--20px);
		color: white;
	}

.text-under-cards {
	display: flex;
	justify-content: center;
	max-width: 100%;
	padding-top: var(--40px);
}
	.text-under-cards p {
		display: flex;
		max-width: 55%;
	}

.hr-text {
	margin-top: .5rem;
	max-width: 30px;
	border: 2px solid #e5e5e5;
}

@media(max-width:768px) {
	.beige-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
		.beige-cards > div {
			width: 180px;
			height: 150px;
			padding: var(--30px) var(--5px);
			font-size: var(--18px);
		}

	.text-under-cards {
		display: flex;
		justify-content: center;
		max-width: 100%;
		padding-top: var(--30px);
	}	
		.text-under-cards p {
			max-width: 100%;
		}

	.hr-text {
		margin-top: .6rem;
		max-width: 25px;
	}
}

/* ------------------------------------------ FORMULARIO ------------------------------------------*/
.container-form {
  background: transparent;
}

.reservar-plaza {
  margin-top: .5rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  color:#c53a63;
}

.form-group input, .form-group select {
  border-radius: 10px; 
  width: 450px;
}

#landing-form-container {
  margin-bottom: 40px; 

}

#landing input[type="checkbox"] {
  appearance: none; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
  margin-right: 5px !important;
  width: 16px; 
  height: 16px;
  border: 1px solid #6b6b6b; 
  border-radius: 3px; 
  background-color: transparent; 
  cursor: pointer;
  position: relative;
}

#landing input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #6b6b6b; 
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#landing-form form {
  margin-top: 0;
}

#landing .small-legal {
  width: 400px;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #6b6b6b;
}

#landing-form input[type="text"], 
#landing-form input[type="email"] {
  width: 400px !important;
  padding: 25px !important;
  padding-left: 15px !important;
  margin-bottom: 5px;
  border: 2px solid #fff !important;
  border-radius: 10px;
  font-family: Lato;
  font-size: 16px;  
  letter-spacing: .1rem;
  color: #6b6b6b;
}

#landing-form input[type="text"]:focus, 
#landing-form input[type="email"]:focus,
#landing-form select:focus {
    outline: none; 
}

::placeholder {
  font-family: Lato;
  letter-spacing: .1rem;
  color: #6b6b6b;
}

#landing-form select {
  width: 400px !important;
  max-width: 100%;
  padding: 15px !important;
  padding-left: 10px !important;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: none;
  font-size: 16px;  
  font-family: Lato;
  letter-spacing: .1rem;
  color: #6b6b6b;
  margin: 0 auto 5px auto;
  display: block;
  box-sizing: border-box;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

#landing-form span.error {
  color: red;
  display: block;
  margin-top: -10px;
  margin-bottom: 15px;
}

#privacy-policy p {
  margin-top: 10px;
  font-weight: 400;
  color: #515151;
}

#privacy-policy p a{
  font-weight: 700;
  color: #515151;
}

.title-form {
	font-size: var(--20px);
	letter-spacing: .15rem;
	margin-bottom: var(--30px);
	color: #6b6b6b;
}

#boton-formulario {
	background: #C9CCBB;
	border-radius: 10px;
	padding: var(--10px) var(--20px);
	margin-bottom: .5rem;
	letter-spacing: .15rem;
	color: white;
}
	#boton-formulario:hover {
		background:#9ea094;
	}

@media(max-width:768px) {

  .reservar-plaza {
    margin-top: 0;
    font-size: var(--20px);
  }
  
  .small-legal {
    font-size: 2.5vw !important;
    width: 380px;
    padding-left: 10px;
  }

  #privacy-policy p {
    font-size: .8rem !important;
  }

  #boton-formulario {
    margin-bottom: .5rem;
  }

  #landing-form-container {
  background-image: url(
    'https://www.clinicaplanas.com/ka/apps/clinicaplanas_assets/landings/remodelacion_corporal_express/fondo-formulario-movil.png') 
    !important;
  background-size:  cover;
  background-repeat: no-repeat;
  background-position: center;
}

#landing-form {
  padding: 2rem 1.8rem;
}

#landing-form input[type="text"], #landing-form input[type="email"] {
  height: 50px !important;
  margin-bottom: 5px;
  font-size: 14px;
}

#landing-form select {
  height: 50px !important;
  width: 100%;
  font-size: 14px;
  margin-bottom: 5px;
  padding: 10px !important;
}

#landing .small-legal {
  font-size: 14px;
  line-height: 1.4;
}

#landing .g-recaptcha > div {
  margin: 0 auto 15px auto;
}

.g-recaptcha > div {
  width: 100%;
}

#landing-form > div {
  padding: 0 !important;
}

.title-form {
	margin-top: var(--10px);
	margin-bottom: var(--30px);
}

}


/* ------------------------------------------ SLIDERS ------------------------------------------*/

.bg-beige {
  padding: var(--50px) var(--20px) var(--50px) var(--20px);
}

.SLIDER, .SLIDER[data-imagefit=true]>.slide img {
  width: auto !important;
}

#slider-remodelacion hr {
  margin-bottom: var(--50px);
}

@media(min-width:1921px) {
  .container#slider-remodelacion {
    max-width: 70%;
  }
}

/* ------------------------------------------ SECCIÓN COLUMNAS ------------------------------------------*/
.columns-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 4rem;
}

  .columns-section .img-columns {
    display: flex;
    justify-content: end;
    align-items: center;
  }
    .columns-section .img-columns img {
      max-width: 70%;
      height: auto;
    }

    .columns-section .text-columns h2 {
      font-weight: normal;
      line-height: 1;
      margin-bottom: var(--30px);
    }
    .columns-section .text-columns ul {
      padding-left: var(--20px);
      margin-bottom: var(--40px);
    }
      .columns-section .text-columns ul li {
        letter-spacing: .1rem;
        color: #515151;
      }
    .columns-section .text-columns a {
      background: #F2C9A9;
      border-radius: 10px;
      text-decoration: none;
      padding: var(--10px) var(--20px);
      color: #515151;
      font-weight: 700;
    }    
      .columns-section .text-columns a:hover {
        background: #f1d9c6;
      }

@media(max-width:768px) {
  .columns-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
    .columns-section .img-columns {
      justify-content: center;
    }

  .columns-section .text-columns {
    padding-left: 15%;
    padding-right: 15%;
  }
    .columns-section .text-columns h2 {
      font-size: var(--40px);
    }    
      .columns-section .text-columns a {
        font-size: var(--12px);
      }
}

@media(min-width:1921px) {
  .columns-section {
    gap: 10rem;
  }
}

/* ------------------------------------------ SECCIÓN IMAGEN CENTRADA ------------------------------------------*/
.image-center {
  display: flex;
  justify-content: center;
}
  .image-center img {
    width: 90%;
  }

@media(max-width:768px) {
  .image-center img {
    width: 100%;
  }

  .container#image-center {
    padding: 0;
  }
}

@media(min-width:1921px) {
  .image-center img {
    width: 100%;
  }
}


/* ------------------------------------------ ULTIMO CTA ------------------------------------------*/

#last-cta p {
  margin-bottom: var(--50px);
}

#last-cta a {
  background: #F2C9A9;
  border-radius: 10px;
  text-decoration: none;
  padding: var(--10px) var(--20px);
  color: #515151;
  font-weight: 700;
}    
  #last-cta a:hover {
    background: #f1d9c6;
  }

@media(max-width:768px) {
  #last-cta a {
    font-size: var(--12px);
  }
}


/*
========================================================================================================================
RESPONSIVE - TABLET - MÓVIL GRANDE
========================================================================================================================
     			                                                           											  */

@media (max-width: 768px) {

  /* ------------------------------------------ CTA - DESPUÉS DE HERO ------------------------------------------*/

  .p-1 {
    padding: 2rem;
    padding-bottom: .5rem !important;
  }

}

/*
========================================================================================================================
RESPONSIVE - POR ENCIMA DE TABLET
========================================================================================================================
     			                                                           											  */
@media (min-width: 769px) {

  #landing-form-container {
    background-size: cover;
    background-position: center;
  }

  #container-fecha span br {
    display: none;
  }
  
.hidden-ls-none {
  display: none;
}

}


/*
========================================================================================================================
RESPONSIVE ESPECÍFICOS PARA QUE SE VEA BIEN EN TODAS LAS PANTALLAS
========================================================================================================================
     			                                                           											  */

@media (max-width: 450px) {

  #landing-form-container {
    background-image: url(
      'https://www.clinicaplanas.com/ka/apps/clinicaplanas_assets/landings/remodelacion_corporal_express/fondo-formulario-movil.png')
       !important;
    background-size: 430px 800px;
    background-repeat: no-repeat;
    background-position: center;

  }
 }

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 990px) {
  #sponsors img {
    width: calc( 33% - 3rem);
  }
}

@media screen and (max-width: 820px) {


}

@media screen and (max-width: 767px) {  
  .text-xs-center {
    text-align: center !important;
  }

  .xs-grid-no-gap {
    grid-gap: 0 !important;
  }
  #sponsors img {
    width: calc( 50% - 3rem);
  }


  }


/*
========================================================================================================================
SLIDER
========================================================================================================================
     			                                                           											  */

  .full-slider > ul {
    padding: 0;
    list-style: none;
    position: relative;
    margin: 0;
    white-space: nowrap;
    font-size: 0;
    overflow: hidden;
  }
    .full-slider > ul > li {
      display: inline-block;
    }
  .full-slider > .controls {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;
    padding: 2rem;
  }
    .full-slider > .controls .action-prev,
    .full-slider > .controls .action-next {
      margin: 0 -50%;
      color: white;
      font-size: 200%;
      background: none;
      border: none;
      transition-duration: 0.3s;
    }
    .full-slider > .controls .action-prev:hover,
    .full-slider > .controls .action-next:hover {
      color: var(--background1);
      text-shadow: 0 5px 10px -5px #ffffff77;
    }

  @media screen and (max-width:500px) {
    .full-slider > .controls {
      padding: 5px;
    }
    .full-slider > .controls .action-prev,
    .full-slider > .controls .action-next {
      font-size: 150%;
    }
    .d-mobile{
      display: block;
    }
    .d-desktop {
      display: none;
    }
  }
  @media screen and (min-width:500px) {
    .d-mobile {
      display: none;
    }
    .d-desktop {
      display: block;
    }
  }
