/*
    Theme Name: Susurros del Paraiso
    Theme URI: 
    Author: Oto Mercado
    Author URI: 
    Description: Theme Diseñado para Susurros del Paraíso
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: PNL, coaching, hipnoprogramación, flexbox, css grid, mobile first
    Text Domain: susurrosdelparaiso
*/

@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i');

@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Titillium+Web:200,200i,300,300i,400,400i,600,600i,700,700i,900');


:root {
    /* Fuentes */
    --fuente-principal: 'Open Sans',sans-serif;
    --fuente-headings: 'Titillium Web', sans-serif;
    --fuente-monsterrat: 'Montserrat', sans-serif;


    /* colores */
    --primario: #37bc9c;
    --secundario: #6840e7;
    --gris-claro: #ebebeb;
    --blanco: #fff;
    --negro: #000;
    --transparente: #00000000;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*, *:before, *:after {
    box-sizing: inherit;   
}

body {
    font-family: var(--fuente-principal);
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2;   
}

/* headings */
h1, h2, h3, h4 {
    font-family: var(--fuente-headings);
    margin: 0 0 3rem 0;
    line-height: 1.2;    
}

h6 {
  font-family: var(--fuente-monsterrat);
}

h1 {
    font-size: 6rem;
    font-weight: 300;
}

h2 {
    font-size: 4.8rem;
	font-weight: 500;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.4rem;
}

h6 {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
}

/* globales */
p {
    margin: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.contenedor {
    width: min(90%, 120rem);
    margin: 0 auto;
}

/* Utilidades */

.text-center {
    text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-left {
  text-align: left;
}


.text-primary {
    color: var(--primario);
}

.text-blanco {
    color: var(--blanco);
}

.seccion {
    padding: 5rem 0;
}

.btn-estandar {
  padding: 10px 30px;
  margin: 20px 0;
  background-color: var(--negro);
  border-color: var(--transparente);
  cursor: pointer;     
  font-weight: 500;
  text-decoration: none;
  border: 0 none var(--transparente);
  outline-width: 0;    
  vertical-align: middle;
  text-align: center;
  border-radius: 0;      
  align-self: flex-start;
  color: var(--blanco);
}

.btn-estandar:hover {
  background-color: var(--primario);
  color: var(--blanco);
}

.btn-blanco {
  padding: 18px 54px;
  margin-top: 34px;
  background-color: var(--blanco);
  border-color: var(--transparente);
  cursor: pointer;     
  font-weight: 400;
  text-decoration: none;
  border: 0 none var(--transparente);
  outline-width: 0;    
  vertical-align: middle;
  text-align: center;
  border-radius: 0;      
  align-self: flex-start;
  color: var(--negro);
  text-transform: uppercase;
  letter-spacing: 3px;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 1.5s fadeInUp;  
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.fadeInLeft-animation {
  animation: 1.5s fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }
  100% {
    transform: translateX(100%);
    opacity: 1;
  }
}

.fadeInRight-animation {
  animation: 1.5s fadeInRight;
}

/* Header */

header.header {
  min-width: 80px;
  background-color: var(--blanco);
  padding: 1rem 0;
}

.logo img {
  width: 200px;
}

.barra-navegacion {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.btn-reservar {
  background-color: var(--primario);
  padding: 5px 20px;
  border-radius: 10px;
  cursor: pointer;  
}

.btn-reservar:hover {
  background-color: var(--secundario);  
}

.btn-reservar a, .btn-reservar:hover a {
  color: var(--blanco);  
}

.btn-reservar:active {
  opacity: .5;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
	background-color: #fff;
}


/* Seccion Hero */

section#hero {
  min-height: 80vh;
  position: relative;
}

.rectangulo {
  position: absolute;
  right: 0;
  /* left: auto; */
  background-color: var(--primario);  
  width: calc(((100% - 1140px) / 2) + 525px);
  top: 0 !important;  
  height: 100%;
  transform: translateX(-100%); /* Inicialmente fuera del área visible hacia la izquierda */
  opacity: 0.5;
  transition: transform 1500ms ease-in, opacity 1500ms ease-in;
}

.columnas-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  padding: 4%;
}

.col-50 {
  width: 50%;
}

.col-45 {
  width: 45%;
}

.col-55 {
  width: 55%;
}

.col-45.hero-texto {
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 10;
}

.col-55.hero-img {
  min-height: 663px;
  background-image: url("https://demo.digitalizatunegocio.club/wp-content/uploads/2023/12/susurros-del-paraiso.webp");
  background-position: 50% 50%;
  transform: translateX(100%);/* Inicialmente fuera del área visible hacia la derecha */   
  opacity: 0.5;
  transition: transform 1500ms ease-in, opacity 1500ms ease-in;
}

.rectangulo-animado {
  transform: translateX(0%); /* Transformación final, lleva el rectángulo a su posición final */
  opacity: 1;
}

.col-55.hero-img.img-animada {
  transform: translateX(1%); /* Transformación final, lleva la imagen a su posición final */
  opacity: 1;
}

/* sección Acerca de*/
.acerca-img {
  width: 390px;
  height: 390px;  
  margin: 60px auto 0;
  border-radius: 50% !important;
} 

#acerca .contenedor {
  padding: 5% 0;
}

#acerca .acerca-contenedor-box {
  display: flex;
  flex-direction: column;
}

#acerca .contenedor h6.text-center {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 60px auto 0;
}

#acerca span.text-center {
  font-weight: 500;
  line-height: 1.2;
  font-size: 4.8rem;
  margin: 40px 60px 0;
}

/* sección spa mental*/

.col-centro {
    display: flex;
    justify-content: center;  
    min-height: 763px;
    height: auto;
    margin: -508px auto 0;
  }
  
  .fondo-blanco {
    height: 578px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: var(--blanco);
  }
  
  .fondo-verde {
    background: var(--primario);
  }
  
  #spa-mental .contenedor .col-45 {
    padding: 30px;
  }
  
 
  
  #spa-mental .contenedor .col-45 .text-justify {
    margin: 59px 0 0;
  }
  
  .spa-mental-img {
    width: 550px;
    height: 343px;
    text-align: start;
    margin: 40px auto 0;
  }
  
  .col-centrada {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  #spa-mental .col-centrada {
    background-image: none;
    min-height: 884px;
  }
  
  .seccion-nosotros {
    height: 560px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .svg-link {
    fill: var(--primario);
  }
  
  .image-circle {
    background-color: var(--primario);
    border-radius: 50%;
  }
  
  /* servicios de coaching */
 
img.servicios-coaching-img {
    object-fit: cover;
    display: block;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 845px;
    height: 599px;
    margin: -475px 0 0 auto;
}
#servicios-coaching .servicios-coaching-box {
    padding: 30px;
    width: 539px;
    min-height: 485px;
    background-image: none;
    height: auto;
    margin: -284px auto 0 calc(((100% - 1140px) / 2) + 31px);
    background-color: var(--blanco);
    display: flex;
    z-index: 10;
    position: relative;
}
   
  #servicios-coaching .servicio-coaching-circulo {
    width: 161px;
    height: 161px;
    margin: -800px auto 639px calc(((100% - 1140px) / 2) + 31px);
    background-color: var(--blanco);
    border-radius: 50%;
  }
  
  .servicios-coaching-box-interno {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  
  /*sección formaciones*/
  
  #formaciones .formaciones-box {
    min-height: 1128px;
    justify-content: center;
    display: flex;
    flex-direction: column; 
    margin: 0 auto;
  }
  
  
 

  #formaciones .formaciones-circulo-vacio {
    width: 246px;
    height: 246px;
    margin: 100px auto 0 40px;
  }
  #formaciones .formaciones-circulo-lleno {
    width: 168px;
    height: 168px;
    margin: -100px auto 0 40px;
    position: relative;
  }

  #formaciones .formaciones-img-grande {
    border-radius: 50%;
    width: 55%;
    height: auto;
    background-image: url("https://demo.digitalizatunegocio.club/wp-content/uploads/2023/12/formacion-susurros-del-paraiso.webp");
    background-position: 50% 50%;
    margin: -300px auto 0 16px;
    object-fit: cover;
    display: block;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
  }
  svg#svg-a0bf {
    fill: var(--primario);
}

#formaciones .formaciones-box-row {
    width: 600px;
    min-height: 400px;
    background-image: none;
    height: auto;
    margin: -250px 100px 0 auto;
    display:  flex;
  } 

  #formaciones .formaciones-img-small {
    border-radius: 50%;
    width: 384px;
    height: 384px;
    background-image: url("https://demo.digitalizatunegocio.club/wp-content/uploads/2023/12/coaching-susurros.webp");
    margin: -200px 250px 0 auto;
    border: 12px solid var(--blanco);   
    object-fit: cover;
    display: block;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
  }
 
   
  #formaciones .formaciones-contenedor {
    padding: 150px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: var(--primario);
  } 
   
 

/*lo que hacemos*/

section#tecnicas {
  padding: 5% 0 10%;
}

#tecnicas h2.text-center {
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 20px;
}

#tecnicas p.text-center {
  margin: 30px auto 0;
  line-height: 1.6;
}

#tecnicas .grid-item-box h3.text-center {
  font-weight: 400;
}

#tecnicas .grid-item-box p.text-center {
  font-style: italic;
  color: #28282B;
}


.grid-container {
  display: flex;
  margin: 40px auto 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-item { 
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;  
  width: 32%;
}

.grid-item:nth-child(even) {
  background-color: var(--primario);
}

.grid-item-img img {
  background-position: 50% 50%;
  margin: 0 auto;
  border-radius: 50%;
}

/*testimonios*/
section#testimonio {
  background: linear-gradient(rgb(0 0 0 / .75),rgb(0 0 0 / .75)),url(https://demo.digitalizatunegocio.club/wp-content/uploads/2023/12/interior-susurros-del-paraiso.webp);
  background-size: cover;
  background-position: center center;
  padding: 12rem 0;
}

section#testimonio h2.text-center {
  color: var(--blanco);  
}

section#testimonio .testimonio-box-texto span {
	color: var(--blanco);
}

section#testimonio .contenedor-testimonio {
  width: 800px;
  margin: auto;
}
section#testimonio .carrusel-item {
  display: none;
}

section#testimonio .testimonio-activo {
  display: block;  
}


section#testimonio .carrusel-item {
  width: 100%;
  margin: auto;
}

/*
section#testimonio blockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: url(../../../../../../themes/gymfitness/img/quote.svg);
  background-repeat: no-repeat;
  width: 10rem;
  height: 9rem
}*/

blockquote {
  font-style: italic;
  padding-left: 20px;
  border-width: 4px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--blanco);
  width: 80%;
  
}

.testimonio-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 2%;
}
.testimonio-box-texto h3 {
  margin: 0;
  color: var(--primario);
}

.testimonios-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
}


/* contacto */
#contacto {
  background-color: var(--primario);
  display: flex;
  flex-direction: column;
  padding: 5% 0;
}

.contenedor-svg {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

#contacto span.fondo-svg {
  background: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

#contacto .svg-link {
  width: 116px;
  height: 116px;
  background-image: none;
  margin: 0 auto;
  padding: 33px;
}

#contacto .btn-estandar {
  align-self: center;
}

#contacto .btn-estandar:hover {
  background-color: #000;
}



#contacto a.contacto-telefono {
  font-size: 3rem;
  font-weight: 700;
  margin: 17px 18px 0;
  color: var(--blanco);

}






/* Estilos de la sección Quiénes Somos */
.about-us {
  background-color: #f4f4f4;
  padding: 80px 0;
}

/* Estilos de la sección Nuestros Servicios */
.our-services {
  padding: 80px 0;
}

.service {
  margin-bottom: 40px;
}

/* Estilos de la sección Testimonios */
.testimonials {
  background-color: #41844d;
  color: #fff;
  padding: 80px 0;
}

.testimonial {
  text-align: center;
  padding: 20px;
}

.testimonial__text {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.testimonial__author {
  font-size: 1.2em;
  font-style: italic;
}

/* Estilos del Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

/*media queries*/

@media (max-width: 1150px) {
    img.servicios-coaching-img {
        width: 528px;
        height: 414px;
        margin: -475px 0px 0px auto;
    }
    #servicios-coaching .servicios-coaching-box {
        margin-left: calc(((100% - 720px) / 2) + 31px);
        margin-top: -90px;
    }
    #servicios-coaching .servicio-coaching-circulo {
        width: 116px;
        height: 116px;
       
        margin-left: calc(((100% - 720px) / 2) + 31px);
    }
    #formaciones .formaciones-img-grande {
      width: 65%;
      height: auto;
    }
  }

@media (max-width: 921px) {
  .col-45.hero-texto {
    width: 100%;
  }

  .col-55.hero-img {
    width: 100%;
  }
  #acerca span.text-center {
    font-weight: 500;
    line-height: 1.2;
    font-size: 4.8rem;
    margin: 40px 0;
  }
  #servicios-coaching .servicios-coaching-box {
	margin-top: -99px;
    margin-left: calc(((100% - 720px) / 2) + 31px);
  }
  #servicios-coaching .servicios-coaching-img {
    width: 528px;
    height: 414px;
    margin-top: -548px;
    margin-right: calc(((100% - 720px) / 2));
  }
  #servicios-coaching .servicio-coaching-circulo {
	width: 116px;
    height: 116px;   
    margin-left: calc(((100% - 720px) / 2) + 31px);	
  }
   #formaciones .formaciones-box {
	min-height: 1624px;
  }
  #formaciones .formaciones-contenedor {
	padding: 30px;
  }
  #formaciones .formaciones-img-small {
	width: 357px;
    height: 357px;
    margin: -334px 0 159px auto;
  }
  #formaciones .formaciones-box-row {
    width: 585px;
    min-height: 456px;
    margin: 60px auto 0;
    margin-right: 0;
  }
  blockquote {
    width: 80%;  
  } 
  .grid-item-text {
	min-height: 200px;
  }    
	section#testimonio .contenedor-testimonio {
    width: 80%;
    margin: auto;
	}
	.col-45 {
    width: 70%;
	}
	#formaciones .formaciones-circulo-vacio {
    width: 246px;
    height: 246px;
    margin: -200px auto 0 40px;
	}
	#formaciones .formaciones-box-row {
    width: 421px;
    min-height: 356px;
    margin: -100px auto 0;  
	margin-right: 0;
	}
	section#formaciones {
    margin-top: 900px;
	}
	#formaciones .formaciones-box {
    min-height: 924px;
	}
	
	.grid-item {
    width: 100%;
  }
  .grid-item-img img {
    height: 400px;
  }
  
  
}


@media (max-width: 768px) {
  .barra-navegacion {
    flex-direction: row;
    justify-content: space-between;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr); /* 1 columnas */
    grid-template-rows: repeat(6, 1fr);    /* 6 filas */     
  }
	#servicios-coaching .servicios-coaching-img {
    width: 450px;
    height: 314px;   
	}
	#servicios-coaching .servicios-coaching-box {
    width: 421px;
    min-height: 385px;    
	}
	.grid-item-img img, .acerca-img {
    height: auto;
	}

  
}

 @media (max-width: 600px) {
	 h1 {
    font-size: 3.6rem;   
	}

	h2 {
    font-size: 3.2rem;
	}

	h3 {
    font-size: 2.7rem;
	}

	h4 {
    font-size: 2.2rem;
	}

	h6 {
  	font-size: 1.8rem;
  	margin: 0 0 1rem 0;
	}
	 .logo img {
    width: 150px;
	}
	 .col-45.hero-texto {
		 padding: 15px;
	 }
	 img.servicios-coaching-img {
      width: 316px;
      height: 224px;
      margin: -475px 0px 0px auto;
    }
    #formaciones .formaciones-img-grande {
      width: 90%;
      height: auto;
      margin-top: -200px;
    }
    #servicios-coaching .servicios-coaching-box {
      padding: 20px;
      width: 291px;
      min-height: 525px;
      margin-top: -30px;
      margin-left: calc(((100% - 340px) / 2));   
    }
    #servicios-coaching .servicio-coaching-circulo {
      width: 101px;
      height: 101px;
      margin-top: -796px;
      margin-left: calc(((100% - 340px) / 2));
    }
    #formaciones .formaciones-box-row {
      width: 100%;
      min-height: 400px;
      height: auto;
      margin: 50px auto 0;       
    }
    #formaciones .formaciones-contenedor {
      padding: 30px;
    }
    #formaciones .formaciones-img-small {
      width: 253px;
      height: 253px;
      margin-top: -344px;
      margin-bottom: 278px;
    }
    #formaciones .formaciones-circulo-vacio {
      width: 181px;
      height: 181px;
      margin-top: 200px;
      margin-left: 20px;
    }
    #formaciones .formaciones-circulo-lleno {
      width: 129px;
      height: 129px;
      margin-top: -50px;
    }
	 .col-45 {
    width: 90%;
	}
	 #servicios-coaching .servicios-coaching-img {
	 width: 316px;
     height: 224px;
     margin-top: -378px;
     margin-right: calc(((100% - 340px) / 2));
	 }
	 #formaciones .formaciones-box {
    min-height: 1324px;
	}
	#acerca span.text-center {
    font-size: 2.4rem;    
	margin-bottom: 0;
	}
}

