

:root {
  --primary: #bae24b;
  --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: var(--primary);
  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: white;
  padding: 10px 0;
}

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

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

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

.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;
}

#mainHeader.scrolled .nav-menu a {
  color: var(--primary);
}


.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: var(--primary);
    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: 94vh;
  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: 46px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 15px;
}

.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: var(--primary);
}

/* 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: 40px 0px;
}

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

#about .about-img:after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 77px;    
    top: -45px;
    border: 4px solid var(--primary);
    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;
    color: var(--dark);
}

#about .about-descr .about-text {
  line-height: 2;
    font-size: 16px;
}

.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;
  color: var(--dark);
}

.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;
  }

}

.laboral-process {
    background: #f8f7f4;
}

.section-description {
    line-height: 1.8;
    color: #666;
}

.work-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(180,219,72,.72);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 28px;
    color: #fff;
}

.work-card h4 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 600;
}

.work-card p {
    margin: 0;
    color: #666;
}

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

.featured-card .icon-box {
    margin: 0 auto 25px;
}

.closing-phrase {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.closing-phrase p {
    font-size: 24px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

.closing-phrase strong {
    color: #b4975a;
    font-weight: 700;
}

@media(max-width:768px){

    .section-title {
        font-size: 32px;
    }

    .work-card {
        padding: 30px;
    }

    .closing-phrase p {
        font-size: 20px;
    }

}

.internas {
  padding-top: 180px!important;
}

.mvv-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.mvv-intro {
    padding-right: 40px;
}

.mini-title {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    color: #b4975a;
    font-weight: 700;
    margin-bottom: 18px;
}

.mvv-intro h2 {
    line-height: 1.25;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 25px;
}

.line-detail {
    width: 90px;
    height: 3px;
    background: #d7c6a0;
    margin-bottom: 25px;
}

.mvv-intro p {
    line-height: 1.9;
    color: #666;
    margin: 0;
}

.info-panel {
    position: relative;
    padding: 45px;
    border-radius: 24px;
    overflow: hidden;
    transition: all .3s ease;
}

.info-panel:hover {
    transform: translateY(-6px);
}

.mission-panel {
    background: #f8f5ef;
}

.vision-panel {
    background: #f3f0ea;
}

.panel-number {
    font-size: 70px;
    font-weight: 800;
    color: rgba(186,226,75,.42);
    line-height: 1;
    margin-bottom: 25px;
}

.info-panel h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.info-panel p {
    color: #666;
    margin: 0;
}

.values-wrapper {
    margin-top: 80px;
    padding: 70px 50px;
    border-radius: 30px;
    background: #faf8f3;
}

.values-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.value-item {
    background: #fff;
    padding: 16px 26px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
    transition: all .3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    display: block;
    flex-shrink: 0;
}

@media(max-width:991px){

    .mvv-intro {
        padding-right: 0;
    }

    .mvv-intro h2 {
        font-size: 36px;
    }

    .values-wrapper {
        padding: 50px 30px;
    }

}

@media(max-width:768px){

    .mvv-intro h2 {
        font-size: 30px;
    }

    .values-title {
        font-size: 28px;
    }

    .info-panel {
        padding: 35px;
    }

    .panel-number {
        font-size: 50px;
    }

    .value-item {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 18px;
    }

}

.personal-counseling {
    background: #f8f7f4;
    overflow: hidden;
}

.section-mini-title {
    display: inline-block;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    color: #b4975a;
    margin-bottom: 18px;
}

.section-text {
    line-height: 1.9;
    color: #666;
}

.personal-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 520px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.card-image {
    position: absolute;
    inset: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.personal-card:hover .card-image img {
    transform: scale(1.08);
}

.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(94,76,63,.78) 10%,
        rgba(94,76,63,.25) 55%,
        rgba(94,76,63,.05) 100%
    );
}

.card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 45px;
    color: #fff;
}

.card-content span {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .7);
    background: rgba(180,219,72,.72);
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    padding: 16px 17px;
}

.card-content h4 {
    font-size: 32px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.card-content p {
    margin: 0;
    color: rgba(255,255,255,.9);
}

.quote-section {
    margin-top: 90px;
    text-align: center;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.quote-line {
    width: 100px;
    height: 3px;
    background: #b4975a;
    margin: 0 auto 40px;
}

.quote-section blockquote {
    font-size: 25px;
    line-height: 1.2;
    color: #2d2d2d;
    font-weight: 300;
    margin-bottom: 30px;
    font-style: italic;
}

.quote-section h5 {
    font-size: 20px;
    color: #b4975a;
    margin-bottom: 30px;
    font-weight: 700;
}

.quote-section p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

@media(max-width:991px){

    .section-title {
        font-size: 38px;
    }

    .personal-card {
        height: 480px;
    }

    .card-content {
        padding: 35px;
    }

    .card-content h4 {
        font-size: 28px;
    }

    .quote-section blockquote {
        font-size: 28px;
    }

}

@media(max-width:768px){

    .section-title {
        font-size: 30px;
    }

    .section-text {
        font-size: 16px;
    }

    .personal-card {
        height: 430px;
    }

    .card-content {
        padding: 28px;
    }

    .card-content h4 {
        font-size: 24px;
    }

    .card-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .quote-section {
        margin-top: 70px;
    }

    .quote-section blockquote {
        font-size: 22px;
    }

}

.contact-section {
    background: #f8f7f4;
    position: relative;
}

.contact-wrapper {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

.contact-info {
    background: linear-gradient(180deg, #999487 0%, #bae24b 100%);
    padding: 70px 50px;
    height: 100%;
    color: #fff;
    position: relative;
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -120px;
    right: -120px;
}

.contact-mini-title {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info p {
    color: rgba(255,255,255,.85);
    margin-bottom: 45px;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.contact-icon i {
    font-size: 22px;
    color: #fff;
}

.contact-text small {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: rgba(255,255,255,.65);
}

.contact-text span {
    line-height: 1.6;
    color: #fff;
}

.contact-form-box {
    background: #fff;
    padding: 70px 60px;
    height: 100%;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-control {
    width: 100%;
    height: 62px;
    border: 1px solid #ece7de;
    border-radius: 18px;
    background: #faf8f3;
    padding: 0 24px;
    font-size: 15px;
    color: #444;
    transition: all .3s ease;
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 170px;
    padding-top: 22px;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: #b4975a;
    background: #fff;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.btn-contact {
    border: 0;
    height: 62px;
    padding: 0 40px;
    border-radius: 22px 25px 22px 0;
    background: var(--primary);
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .3s ease;
}

.btn-contact:hover {
    background: #9f8450;
    transform: translateY(-2px);
}

.required-fields {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

.messages {
    margin-top: 20px;
}

@media(max-width:991px){

    .contact-info,
    .contact-form-box {
        padding: 50px 35px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .form-header h3 {
        font-size: 30px;
    }

}

@media(max-width:768px){

    .contact-wrapper {
        border-radius: 25px;
    }

    .contact-info,
    .contact-form-box {
        padding: 40px 25px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .form-header h3 {
        font-size: 26px;
    }

    .contact-form .form-control {
        height: 56px;
        border-radius: 15px;
    }

    .btn-contact {
        width: 100%;
    }

}