

:root {
  --primary: #bdd185;
  --secondary: #c3baa2;
  --light: #fdfcf3;
  --dark: #5e4c3f;

  --body-color: #2a221c;

  --font-body: "Inter", sans-serif;
  --font-heading: "Inter", sans-serif;

  --body-text-size: 15px;
  --heading-text-size: 36px;
}

body {
  font-family: var(--font-body);
  color: var(--body-color);
  font-size: var(--body-text-size);
  background-color: #fdfcf3;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-size: var(--heading-text-size);
  font-weight: 700;
}

.color-green {
  color: var(--primary);
}

/* BOTONES */

.btn-1 {
  background: #bdd185;
  color: #2a221c;
  border: none;
  border-radius: 22px 25px 22px 0;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
}

.btn-1:hover,
.btn-1:active,
.btn-1:focus {
  background: #c3baa2;
  color: #2a221c;
  border: none;
}


/* ================= BASE SYSTEM ================= */

a:hover, a:focus, a:active, .form-control:focus, .form-control:active, .form-control:hover,
button:hover, button:active, button:focus,
.btn:hover, .btn:active, .btn:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

section {
  padding: 40px 0;
}

/**********************
Ws botón redondo con tooltip ws-tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
  position: fixed;
  bottom: 13px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  cursor: pointer;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
  background: #1ca550;
  padding: 8px 4px;
  opacity: 1;
}

#chat-ws-redondo.ws.tooltip img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}

#chat-ws-redondo.ws.tooltip i {
  font-size: 44px;
  color: white;
}

.ws.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #1ca550;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1ca550 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/**********************
Footer
***********************/
#footer {
  background: #5e4c3f;
  color: #fff;
  padding: 40px 0 0 0;
}

#footer .container-fluid {
  padding-left: 4%;
  padding-right: 4%;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 202px;
}

.footer-col p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-title {
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.footer-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 18px;
  border-left: 1px solid #fff;
}

.footer-contacto {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacto li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contacto i {
  width: 20px;
  text-align: center;
}

.footer-redes {
  display: flex;
  gap: 12px;
}

.footer-redes a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #efeadd;
  color: #5e4c3f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-redes a:hover {
  transform: translateY(-4px);
}

.copyright {
  width: 100%;
  background: #2a221c;
  padding: 12px 0;
  margin-top: 20px;
}

.copyright p {
  font-size: 11px;
  color: #fff;
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-col {
    text-align: center;
  }
  .footer-title {
    padding-left: 0;
  }
  .footer-title:before {
    display: none;
  }
  .footer-contacto li {
    justify-content: center;
  }
  .footer-redes {
    justify-content: center;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 25px 0;
  transition: all 0.35s ease;
}

header.scrolled {
  background: #bdd185;
  padding: 10px 0;
}

.nav-container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}

.logo img {
  height: 90px;
  transition: all 0.35s ease;
}

header.scrolled .logo img {
  height: 45px;
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  color: #fdfcf3;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  background: #fdfcf3;
  height: 2px;
  margin: 5px 0;
  transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
  width: 32px;
}

.menu-toggle span:nth-child(2) {
  width: 24px;
}

.menu-toggle span:nth-child(3) {
  width: 16px;
}

.menu-close {
  display: none;
}

@media (max-width: 991px) {
  .logo img {
    height: 56px;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #bdd185;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    transition: 0.35s;
  }
  .nav-menu.active {
    right: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
  }
}
/* =============================== */
/* SLIDER HOME                    */
/* =============================== */
.slider {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.6s ease, transform 2.4s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide.active::after {
  opacity: 1;
}

.slide.out {
  opacity: 0;
  transform: scale(1.02);
  z-index: 1;
}

/* CONTENIDO */
.slide-content {
  position: absolute;
  bottom: 28%;
  left: 8%;
  color: white;
  max-width: 650px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease 0.3s;
  z-index: 3;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 {
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.1;
}

.slide-content h4 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.1;
}

.slide-content p {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* BOTÓN */
.slider-btn {
  background: var(--primary);
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.slider-btn:hover {
  background: #2a221c;
  color: white;
}

/* FLECHAS */
.slider-arrows {
  position: absolute;
  bottom: 80px;
  left: 8%;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.slider-arrows button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: rgba(239, 237, 221, 0.58);
  color: #2a221c;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrows button:hover {
  background: #bdd185;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .slide-content {
    left: 6%;
    bottom: 40%;
    max-width: 300px;
  }
  .slide-content h1 {
    font-size: 27px;
  }
  .slide-content h2 {
    font-size: 24px;
  }  
  .slide-content p {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */



/*-----------------------------------------------------------------------------------*/
/*  About
/*-----------------------------------------------------------------------------------*/
#about {
  width: 100%;
  height: auto;
  padding: 90px 0px;
}

#about .div-img-bg {
  padding-bottom: 30px;
    border: 4px solid #bdd185;
    border-radius: 25px;
    margin-bottom: 20px;
}

#about .about-img:after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 77px;    
    top: -45px;
    border: 4px solid #bdd185;
    border-radius: 25px;
    height: 100%;
    width: 100%;
}

#about .div-img-bg .about-img img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
  margin-top: -60px;
  margin-left: 40px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 25px;
}

#about .about-descr .h1 {  
  font-size: 34px;
    text-align: left;
    font-weight: 700;
    line-height: 1.2;
}


.parallax {
    background-image: url("../../imagenes/parallax.jpg");
    height: 100%;
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;    
  }

.parallax  .parallax-text {
     left: 0;
    padding: 5vw;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    height: 100%;   
    }
.parallax  .parallax-text h1 {
    color: white;
    font-size: calc(28px + 0.5vw);
    margin-bottom: 20px;
    }
.parallax  .parallax-text p {
    color: white;
    font-size: calc(16px + 0.5vw);
}    
.overlay {
  width: 100vw;
  height: 100vh;
  background: #2a221c;
  opacity: 0.4;
  position: absolute;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
}

/* ================= COUNSELING ================= */

.counseling-section {
  position: relative;
}

.section-title {
  font-size: var(--heading-text-size);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.counseling-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 40px 20px 40px 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.counseling-img {
  position: relative;
  overflow: hidden;
  border-radius: 40px 20px 0 0;
}

.counseling-img img {
  width: 100%;
  height: 284px;
  object-fit: cover;
  display: block;
}

.counseling-content {
  padding: 35px;
}

.counseling-box::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--primary);
  opacity: 0.2;
  border-radius: 50%;
  top: -40px;
  right: -40px;
  z-index: 2;
}

.counseling-box::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  opacity: 0.2;
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
}

.counseling-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}

.counseling-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width : 768px) { 
  #about .div-img-bg .about-img img {
    max-width: 80%;
  }

  #about .about-img:after {
    left: 0;
    top: -84px;
    width: 80%;
    height: 115%;
  }

  #about .div-img-bg {
    border: 0;
  }

  .parallax {
    min-height: 500px;
  }

}