/* ------------------------------------------------------ */
/* ----------------- CONTAINER UTILS -------------------- */
/* ------------------------------------------------------ */
.container-padding {
  padding: 24px 16px;
}

@media (min-width:1024px) {
  .container-padding {
    padding: 24px 36px;
  }
}

@media (min-width:1224px) {
  .container-padding {
    padding: 48px;
  }
}

@media(min-width: 1920px){
  .container-padding {
    padding: 48px 0;
  }
}

/* ------------------------------------------------------ */
/* -------------------- CARDS UTILS --------------------- */
/* ------------------------------------------------------ */
.card-padding {
  padding: 24px 16px;
}
.cards-container-wrapper {
  position: relative;
  z-index: 9;
  /*top: 24px;*/
  display: flex;
  justify-content: center;
  margin: auto;
  width: 100%;
  max-width: 1440px;
}
.cards-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

@media(min-width: 1024px) {
  .card-padding {
    padding: 64px 60px;
  }
  .cards-container-wrapper {
    top: -48px;
  }
  .heros.cards-container-wrapper {
    top: 0;
  } 
  .cards-wrapper {
    max-width: 1440px;
    padding-top: 0;
    gap: 64px;
  }
}

/* ------------------------------------------------------ */
/* -------------------- TEXT UTILS ---------------------- */
/* ------------------------------------------------------ */

.text-white{
  color: white;
}

.text-hover:hover{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--color-text-dark);
}

/* ------------------------------------------------------- */
/* ------------------------------------------------------- */
/* --------------------- HEADER CAJA --------------------- */
/* ---------------------- UNDERLINED --------------------- */
/* ------------------------------------------------------- */
/* ------------------------------------------------------- */

/* Titulos + divider horizontal c/gradiente */
/* caja */
.header-underlined{
  width: max-content;
}
/* texto */
.header-underlined h2{
  font-family: var(--ff-base);
}
/* divider */
.header-underlined hr{
  border: none;
  height: 4px;
  background: var(--gradiente-hr);
}

/* team-member-name tiene width especial */

/* ------------------------------------------------------ */


/* NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR */
/* NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR */
/* NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR */
/* NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR  NAVBAR */

header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: var(--color-brand-60);

  display: flex;
  justify-content: center;
}

/* ------------------------------------------------------ */

/* navbar dsk */
.navbar-dsk {
  display: none;
}

/* ------------------------------------------------------ */

/* navbar mbl */
.navbar-mbl {
  width: 100%;
  height: 84px;
  padding: 20px 16px;
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: var(--color-brand-60);
}
.navbar-mbl div {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-mbl div a {
  font-family: var(--ff-secondary);
  font-weight: var(--fw-display-1);
  font-size: var(--fs-link);
}

/* ------------------------------------------------------ */

/* menu colapsable (mbl) */
.collapsible-menu {
  /* Posicionamiento */
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 99;

  display: flex;
  flex-direction: column;
  align-items: end;

  background-color: var(--color-brand-60);
  list-style: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-brand-60);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Transición para la animación */
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}
.collapsible-menu.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.collapsible-menu li {
  display: block;
  padding: 12px 24px;
  font-family: var(--ff-base);
  font-size: var(--fs-header-4);
  color: var(--color-text-dark-secondary);
  transition: background-color 0.2s ease;
}
.collapsible-menu li {
  position: relative;
  width: max-content;
}
.collapsible-menu li hr {
  height: 4px;
  border: none;
  background: linear-gradient(90deg, #3F3F3D -107.69%, #F2D655 100%);
}

@media (min-width:1024px) {
  .navbar-mbl {
    display: none;
  }

  .navbar-dsk {
    max-width: 1440px;
    /* margin: auto; */
    padding: 24px 36px;
    height: 84px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand{
    max-width: 166px;
  }

  .navbar-menu-container-dsk {
    display: flex;
    justify-content: space-between;
  }

  .navbar-menu-container-dsk ul {
    font-family: var(--ff-secondary);
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }

  .navbar-menu-dsk li a {
    font-weight: 500;
    font-size: 14px;
  }

  .navbar-menu-dsk li:last-child {
    font-weight: 600;
  }

  .nav-active {
    height: 15px;
    margin: auto;
  }

}

@media (min-width:1220px) {
  .navbar-dsk {
    padding: 24px 48px;
    max-width: 1440px;
  }
}
@media (min-width:1920px) {
  .navbar-dsk {
    padding: 24px 0;
  }
}

/* ------------------------------------------------------ */
/* HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS */
/* HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS */
/* HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS */
/* HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS */
/* HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS  HEROS */
/* ------------------------------------------------------ */

/* index */
.hero {
  height: 100dvh;
  position: relative;
  z-index: 1;

  padding: 0;

  display: flex;
  justify-content: center;
  align-content: center;
  overflow: hidden;
}
.hero-content {
  z-index: 99;
  width: 100%;
  max-width: 1440px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.hero .hero-header h2 {
  font-family: var(--ff-base);
  font-size: var(--fs-hero-mbl);
  font-weight: 500;
  color: var(--color-bg-dark);
  background-color: rgba(249, 237, 181, 0.7);
  width: fit-content;
  padding: 12px 4px 28px;
  line-height: 80%;
}
.hero .hero-description h1 {
  font-family: var(--ff-base);
  font-size: var(--fs-header-2);
  font-weight: var(--fw-display-2);
  color: var(--color-bg-dark);
  background-color: rgba(249, 237, 181, 0.7);
  padding: 8px 4px 12px;
   width: fit-content;
   line-height: 80%;
}
@media (min-width:1024px) {
  .hero {
    z-index: 0;
  }

  .hero .hero-header h2 {
    font-size: 64px;
    font-weight: 500;
  }

  .hero .hero-description h1 {
    font-size: 21px;
  }
}
@media(min-width:1224px) {
  .hero .hero-header h2 {
    font-size: 94px;
  }

  .hero .hero-description h1 {
    font-size: 30px;
  }
}

/* INDEX -> HERO -> CARRUSEL */
.glide {
  position: absolute;
  z-index: 0;
  left: 0;
  z-index: -1;
}
.glide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) -0.83%, rgba(255, 255, 255, 0.45) 67.78%, rgba(255, 255, 255, 0.5) 97.19%);
  opacity: .1;
  z-index: 1;
}
.glide__slide img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

/* @media(min-width: 1024px){
  .glide__slide img{
    height: 100%;
  }
}*/

/* Heros - AREAS */
.hero-std{
  position: relative;
  top: 84px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  min-height: 300px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-std h2{
  font-size: 34px;
  line-height: 174%;
  font-weight: 300;
  margin-bottom: 12px;
}
.hero-nosotras {
  background-image: url("../img/pages/hero-areas-nosotras-mbl.png");
}
.hero-estudio {
  background-image: url("../img/pages/hero-areas-estudio.png");
}
.hero-practica {
  background-image: url("../img/pages/hero-areas-practica.png");
}
@media(min-width: 1024px) {
  .hero-std{
    /*top:48px;*/
    height: calc(100dvh - 84px);
    min-height: 638px;
  }
  .hero-std h2{
    font-size: 68px;
    line-height: 174%;
  }
  .hero-nosotras {
    background-image: url("../img/pages/hero-areas-nosotras.png");
  }
}
@media(min-width:1920px) {
  .hero {
    justify-content: center;
  }

  .hero-content {
    padding: 0;
    width: 1440px;
  }
}
@media(max-width: 1023px) {
  .hero .hero-header h2 {
    padding: 8px 4px 16px;
  }
}


/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* --------------- CARD WELCOME INDEX ------------------- */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

.wc-card {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  border-radius: 4px;
  background-color: var(--color-bg-white);
  box-shadow: 0 0 16px 4px #0C0C0D1A;
  overflow: hidden;
}
.wc-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.wc-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wc-header h3 {
  font-family: var(--ff-base);
  font-weight: var(--fw-display-2);
  font-size: 20px;
  line-height: 100%;
}
.wc-header hr {
  border: none;
  height: 4px;
  background: var(--gradiente-hr);
}
.wc-description {
  font-family: var(--ff-secondary);
  font-size: 15px;
  line-height: 200%;
}
@media(min-width: 768px) {
  .wc-card {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .wc-content-wrapper {
    grid-column: 1/2;
  }

  .wc-header {
    width: max-content;
  }

  .wc-header h3 {
    font-size: 24px;
  }

  .wc-description {
    font-size: 15px;
  }

  .wc-card-img {
    grid-column: 2/3;
  }

  .wc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width:1224px) {
  .wc-card {
    top:-50px;
  }

  .wc-header h3 {
    font-size: 27px;
  }

  .wc-description {
    font-size: 17px;
  }
}

/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------- SECTION Areas de Practica--------------- */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

/* Areas de Practica */
.areas-practica {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.areas-practica-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.areas-practica-header h3 {
  font-family: var(--ff-base);
  font-weight: var(--fw-display-2);
  font-size: 20px;
  line-height: 100%;
}
.areas-practica-header hr {
  border: none;
  height: 4px;
  background: var(--gradiente-hr);
}
.areas-practica-description {
  font-family: var(--ff-secondary);
  font-size: 15px;
  line-height: 200%;
}

@media(min-width: 768px) {
  .areas-practica {
    align-items: center;
    justify-content: center;
  }

  .areas-practica-header {
    width: max-content;
  }

  .areas-practica h3 {
    font-size: 24px;
  }

  .areas-practica-description {
    text-align: center;
    width: 40ch;
    line-height: 210%;
  }
}
@media (min-width:1224px) {
  .areas-practica-header h3 {
    font-size: 27px;
  }

  .areas-practica-description {
    font-size: 17px;
  }
}

/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* -------------- CARDS areas de práctica --------------- */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

/* cards areas de práctica */
.cards-practica-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0;
}
.card-practica {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}
.card-practica-header {
  padding: 0 2px;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-base);
}
.card-practica-header .brand-yellow {
  display: none;
}
.card-practica-header h5 {
  font-size: 15px;
  width: 50%;
  color: var(--color-text-dark-secondary);
  font-weight: var(--fw-display-2);
}
.card-practica-header .ver-mas {
  margin-left: auto;
  text-decoration: none;

  font-family: var(--ff-secondary);
  font-weight: 500;
  font-size: 12px;

}
.card-practica-header .ico-practica {
  width: 46px;
}
.card-practica-content {
  font-family: var(--ff-secondary);
  font-weight: var(--fw-display-1);
  font-size: 12px;
}
.card-practica-content div {
  display: none;
}
.card-practica-hr {
  border: none;
  height: 2px;
  background: var(--gradiente-hr);
}

@media(min-width:768px) {
  .cards-practica-container {
    max-width: 1440px;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 5px;
  }

  .cards-practica-container hr {
    display: none;
  }

  .card-practica {
    border: 1.5px solid transparent;
    padding: 20px;
  }

  .card-practica-header {
    position: relative;
    flex-direction: column;
  }

  .card-practica-header h5 {
    width: 100%;
    text-align: center;
  }

  .card-practica-header .ico-practica {
    margin-bottom: 10px;
    transition: all ease-in .2s;
  }

  .card-practica-header .brand-yellow {
    height: 60px;
    display: block;
    position: absolute;
    opacity: 0;
    transition: all ease-in .2s;
  }

  .card-practica-header .ver-mas {
    display: none;
  }

  .card-practica-content {
    width: 34ch;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
  }

  .card-practica-content div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-practica-content .ver-mas svg {
    opacity: 0;
    transform: translateX(-100%);
    transition: all ease-in-out .5s;
  }

  .card-practica-content .ver-mas {
    margin-top: 15px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: var(--color-text-dark-secondary);
  }


  .card-practica:hover {
    border-image: linear-gradient(180deg, #3F3F3D -107.69%, #FCF8E2 61.06%);
    border-image-slice: 1;
    /* transition: all ease-in-out .2s; */
    box-shadow: 0 1px 4px 0 #0C0C0D0D;
    box-shadow: 0 1px 4px 0 #0C0C0D1A;
    background: #FFFBE533;
  }

  .card-practica:hover .card-practica-header .ico-practica {
    opacity: 0;
    transition: all ease-in-out .2s;
  }

  .card-practica:hover .card-practica-header .brand-yellow {
    display: block;
    opacity: 1;
    transition: all ease-in-out .5s;
  }

  .card-practica:hover .card-practica-content .ver-mas svg {
    opacity: 1;
    transition: all ease-in-out .5s;
    transform: translateX(2px);
  }
}
@media (min-width:1224px) {
  .card-practica-header img {
    width: 60px;
  }

  .card-practica-header h5 {
    font-size: 18px;
  }

  .card-practica-content {
    font-size: 14px;
  }

  .card-practica-content .ver-mas {
    font-size: 13px;
  }
}

/* ------------------------------------------------------ */
/* ----------------------- BANNER ----------------------- */
/* ----------------------- BANNER ----------------------- */
/* ----------------------- BANNER ----------------------- */
/* ----------------------- BANNER ----------------------- */
/* ----------------------- BANNER ----------------------- */
/* ------------------------------------------------------ */

/* BANNER */
.banner-container {
  position: relative;

  width: 100%;
  height: 100%;
  max-height: 700px;
  aspect-ratio: 16 / 9;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url('../img/index/bg-team-section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.banner-content .banner-brand-trans {
  top: 24px;
  left: 16px;
  position: absolute;
  z-index: 2;
  width: 20%;
}
.banner-content p {
  font-family: var(--ff-base);
  font-size: 24px;
  font-weight: 400;
  line-height: 164%;
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
}

/* modificador página -> ESTUDIO */
/* BANNER: "combinamos conocimiento técnico...." */
.banner-estudio {
  background-image: url("../img/pages/estudio-conocemos-prefooter.png");
  max-height: 572px;
  margin-top: 48px;
}
@media (min-width:768px) {
  .banner-container {
    padding-top: 48px;
    align-items: flex-start;
  }

  .banner-content{
    max-width: 1440px;
  }

  .banner-content .banner-brand-trans {
    top: 36px;
    left: 36px;
    width: 250px;
  }

  .banner-content p {
    max-width: 75%;
    font-size: 52px;
    font-weight: 300;
    line-height: 174%;
  }
}

@media (min-width:1224px) {
  .banner-content{
    position: relative;
  }
  .banner-content p {
    max-width: 935px;
    /* padding-top: 64px; */
    font-size: 68px;
  }
  .banner-content .banner-brand-trans {
    top: 10px;
    left: 48px;
    width: 325px;
  }
}

/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* -------------- CARDS PROFESIONALES (abogadas)--------- */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

/* CARDS PROFESIONALES (abogadas) */
.cards-prof-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
/* cards-abogadas */
.card-prof {
  width: 340px;
  overflow: hidden;
  background-color: #fff;
}
/* --- CARD PROF HEADER --- */
.card-prof-header {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.card-prof-header img {
  width: 100%;
  display: block;
}
.card-prof-contact {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: color-mix(in srgb, var(--color-brand-60) 90%, transparent);
}
.card-prof-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-base);
  font-size: 18px;
  text-decoration: none;
  color: var(--color-text-dark-secondary);
}
.card-prof-contact-item img {
  width: 32px;
}
/* CARD PROF FOOTER */
.card-prof-footer {
  padding: 16px;
  font-family: var(--ff-secondary);
  text-align: center;
  color: var(--color-text-dark);
}
.card-prof-footer h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}
.card-prof-footer p {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
}

@media (min-width:1024px) {
  .cards-prof-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    margin-top: -250px;
    justify-content: space-between;
    gap: 0;
  }

  .card-prof {
    width: 24%;
    max-width: 310px;
    padding: 16px;

    border-radius: 4px;
  }

  .card-prof-header {
    transition: all ease-in-out .5s;
  }

  .card-prof-header img {
    position: relative;
    filter: grayscale(100%);
    transition: all ease-in-out .5s;
  }

  .card-prof:hover .card-prof-header {
    transform: scale(1.03);
    transition: all ease-in-out .5s;
  }

  .card-prof:hover img {
    filter: grayscale(0%);
    /* transform: scale(1.03); */
    transition: all ease-in-out .5s;
  }

  .card-prof:hover .card-prof-contact {
    opacity: 1;
  }

  .card-prof-contact {
    padding: 16px;
    opacity: 0;
    transition: all ease-in-out .5s;
  }

  .card-prof-contact-item {
    font-size: 15px;
  }

  .card-prof-footer h5 {
    font-size: 14px;
  }

}


/* ----------------------------------------------------------- */
/* ------------------------ SECCION -------------------------- */
/* ----------------------------------------------------------- */
/* CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  */
/* CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  */
/* CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  */
/* CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  */
/* CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  */
/* CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  CONTACTO  */
/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */

.contact-section{
  margin: 48px 0;
  margin-bottom: 96px;
}
.contact-section-header {
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 36px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 20.47%, #D3D2B6 99.03%);
  height: 180px;
}
.contact-section-header h2 {
  font-family: var(--ff-base);
  color: var(--color-text-dark-secondary);
  font-size: 40px;
  font-weight: 500;
  text-align: center;

}
.contact-section-content {
  width: 100%;
  border-radius: 4px;
  /* box-shadow: 0 4 4 -4 #0C0C0D0D;
  box-shadow: 0 16 16 -8 #0C0C0D1A; */
  box-shadow: 0px -2px 12px 0px #00000020;

  color: var(--color-text-dark-secondary);

}
.contact-section-content-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section-content-header h3 {
  font-family: var(--ff-base);
  font-weight: var(--fw-display-2);
  font-size: 20px;
  line-height: 100%;
  text-align: center;
}
.contact-section-content-header hr {
  height: 4px;
  background: var(--gradiente-hr);
}
.contact-info {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--ff-secondary);
  font-size: 12px;
  font-weight: 500;
}
.contact-info h5 {
  font-size: 12px;
  font-weight: 700;
}
.contact-info address {
  font-style: normal;
  font-size: 12px;
}
.contact-info h6 {
  font-style: italic;
  font-size: 12px;
}

@media(min-width: 768px){
  .contact-section{
    padding: 36px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 60.47%, #d3d2b693 99.03%);
  }

  .contact-info{
    height: 100%;
  }

  .contact-section-header {
    background: transparent;
    height: 100%;
  }
  .contact-section-content {
    background-color: white;
    max-width: 1440px;
    margin: auto;
    padding: 48px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

}

@media (min-width: 1024px){
  .contact-section {
    padding: 36px;
    margin-top: -25%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 60.47%, #D3D2B6 99.03%);
  }

  .contact-section-header {
    background: transparent;
    height: 480px;
  }

  .contact-section-header h2 {
    font-size: 72px;
  }

  .contact-section-content {
    max-width: 1344px;
    margin: auto;
    padding-top: 48px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }

  .contact-section-content .info-y-brand{
    display: flex;
    flex-direction: column;
  }

  .contact-section-content-header {
    width: max-content;
  }

  .contact-section-content-header h3 {
    font-size: 24px;
    text-align: start;
  }

  .contact-section-content-header hr {
    border: none;
  }

  .contact-info {
    display: inline block;
    padding-top: 24px;
  }
}

@media (min-width:1224px) {
  .contact-section {
    padding: 48px;
    margin-top: -25%;
  }

  .contact-section-header {
    background: transparent;
    height: 600px;
  }
}

@media (min-width:1920px) {
  .contact-section-header {
    background: transparent;
    height: 780px;
  }
  .contact-section-content{
    padding: 48px;
    max-width: 1440px;
  }
}

/* BRAND */
.brand-full-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px;
}
.brand-full-container img {
  width: 191px;
}

@media (min-width:1024px) {
  .brand-full-container {
    padding: 48px 24px 0 24px;

  }
}

/* --------------------------------------------------------- */
/* FORMULARIO  FORMULARIO  FORMULARIO  FORMULARIO FORMULARIO */
/* --------------------------------------------------------- */

.formulario {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.formulario div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.formulario label {
  font-family: var(--ff-base);
  font-size: 18px;

}
.formulario input {
  font-family: var(--ff-secondary);
  padding-bottom: 12px;
  border: none;
  border-bottom: 1px solid var(--color-bg-light);
}
.formulario textarea {
  font-family: var(--ff-secondary);
  height: 40px;
  border: none;
  border-bottom: 1px solid var(--color-bg-light);
}
.formulario ::placeholder {
  font-family: var(--ff-secondary);
  font-size: 15px;
}

input:focus,
button:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

/* ------------------------------------------------------ */
/* --------------- ESTILOS VALIDADOR -------------------- */
/* ------------------------------------------------------ */

/* VALIDATOR */
.form-text-error {
  position: absolute;
  bottom: -1.5rem;
  color: #ff0000;
  font-family: var(--ff-secondary);
  font-size: 10px;
  display: block;
  font-weight: 400;
}

/* Opcional: Pone el borde del input en rojo si hay error */
.input-error {
  border-bottom: 1px solid #ff0000 !important;
}

/* Web kits */
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media(min-width: 768px){
  .formulario{
    width: 100%;
  }
}

@media (min-width:1024px) {
  .formulario {
    padding-top: 48px;
    width: 65%;
    gap: 0;

    justify-content: space-between;
  }

  .formulario .form-nombre-apellido {
    flex-direction: row;
  }

  .formulario div {
    width: 100%;
  }
}


/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* --- FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER --- */
/* --- FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER --- */
/* --- FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER --- */
/* --- FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER --- */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

footer {
  background-color: var(--color-brand-60);
}
.footer-content {
  padding-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-content .footer-address,
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;

  color: var(--color-text-dark);
}
.footer-brand-full-horizontal {
  width: 232px;
}
.footer-slogan h4 {
  font-family: var(--ff-base);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-dark);
}
.footer-slogan p {
  font-family: var(--ff-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark-secondary);
}
.footer address,
.footer a,
.footer h6 {
  font-style: normal;
  font-family: var(--ff-secondary);
  font-weight: 500;
  font-size: 12px;
}
.footer-content .footer-signature {
  color: var(--color-text-dark-secondary);
}
@media (min-width:1024px) {
  .footer-content {
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1.5fr .5fr;
  }

  .footer-brand-full-horizontal {
    grid-row: 1/2;
    grid-column: 1/2;
  }

  .footer-slogan {
    grid-row: 1/2;
    grid-column: 2/4;
    text-align: end;
  }

  .footer-slogan h4 {
    font-size: 32px;
  }

  .footer-slogan p {
    font-size: 16px;
    letter-spacing: .1px;
  }

  .footer-address {
    grid-row: 2/3;
    grid-column: 1/2;
  }

  .footer-nav {
    grid-row: 2/3;
    grid-column: 2/3;

    align-items: center;
    text-align: center;
  }

  .footer-contact {
    grid-row: 2/3;
    grid-column: 3/4;
    text-align: end;
  }

  .footer-signature {
    grid-row: 3/4;
    grid-column: 1/4;
    display: flex;
    justify-content: center;
  }
}


/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES  PAGES   */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */


/* ------------------------------------------------------ */
/* --------------- areas-de-practica.html --------------- */
/* ------------------------------------------------------ */

/* --- CARD --- */
.card-areas-practica {
  background-color: white;
  border-radius: 4px;
  padding: 24px 16px;
  width: 100%;
  box-shadow: 0 0 16px 4px #0C0C0D1A;
}
/* --- encabezado de la card --- */
.card-areas-practica-header {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-areas-practica-header div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-areas-practica-header h2 {
  font-family: var(--ff-base);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.card-areas-practica-header hr {
  border: none;
  height: 4px;
  background: var(--gradiente-hr);
  margin: 10px 0 0 0;
}
.card-areas-practica-header img {
  width: 47px;
  /* Tamaño del ícono */
  height: auto;
}
/* --- cuerpo de la card --- */
.card-areas-practica-body p {
  font-family: var(--ff-secondary);
  font-size: 12px;
  font-weight: 500;
  line-height: 164%;
  margin: 0 0 20px 0;
}
.cards-areas-practica-body p:last-child {
  margin-bottom: 0;
}
/* --- pie de la card --- */
.card-areas-practica-footer {
  margin-top: 30px;
  font-family: var(--ff-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 164%;
}
.card-areas-practica-footer .label {
  color: var(--color-bg-light);
  margin-bottom: 5px;
}

/* BTN CTA */
.cta-practicas {
  display: flex;
  width: 100%;
  justify-content: center;
}
.cta-practicas .btn-cta-wrapper {
  width: 100%;
  max-width: 768px;
}

@media(min-width:1024px) {
  .card-areas-practica {
    max-width: 1090px;
    padding: 64px;
  }

  .card-areas-practica-header h2 {
    font-size: 24px;
    line-height: 100%;
  }

  .card-areas-practica-header img {
    width: 60px;
    height: auto;
  }

  .card-areas-practica-body p {
    font-size: 14px;
  }

  .cards-areas-practica-body p:last-child {
    margin-bottom: 0;
  }

  .card-areas-practica-footer {
    font-size: 14px;
  }

  .card-areas-practica-footer .label {
    margin-bottom: 5px;
  }

  .cta-practicas {
    justify-self: center;
  }

  .cta-practicas .btn-cta-wrapper {
    width: 100%;
    max-width: 160px;
  }

}

/* ------------------------------------------------------ */
/* -------------------- nosotras.html ------------------- */
/* ------------------------------------------------------ */

/* Contenedor principal de la tarjeta */
.team-member {
  padding: 24px 16px;
  max-width: 768px;

  display: flex;
  flex-direction: column;
  gap: 32px;

  background-color: #fff;
  border-radius: 4px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------ */

/* CARD */
/* Header - Card */
.team-member-header {
  display: grid;
  grid-template-columns: 47px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "avatar name"
    "info info";
  gap: 16px;
}
.team-member-header>img {
  display: none;
}
.team-member-header .team-member-avatar {
  grid-area: avatar;
  width: 47px;
  height: 47px;
  border-radius: 4px;
  overflow: hidden;
  object-fit: cover;
}
.team-member-name {
  grid-area: name;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  width: 100%!important;
  height: 100%;
}
.team-member-name h2 {
  font-size: 18px;
  line-height: 100%;
  color: var(--color-text-dark);
  font-weight: 400;
}
/* Especialidad + Contacto */
.team-member-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
}
.team-member-info p {
  color: var(--color-text-dark);
  font-family: var(--ff-secondary);
  font-size: 12px;
  line-height: 164%;
  font-weight: 400;
}
.team-member-info .contact-info {
  font-weight: bold;
}
/* Content - Card */
.team-member-content p {
  font-family: var(--ff-secondary);
  line-height: 164%;
  color: var(--color-text-dark);
  font-size: 12px;
  margin-bottom: 16px;
}
.team-member-content p:last-child {
  margin-bottom: 0;
}

@media (min-width:1024px) {

  /* Contenedor principal de la tarjeta */
  .team-member {
    max-width: 1090px;
    padding: 64px;
  }

  /* Cabecera de la tarjeta */
  .team-member-header {
    grid-template-columns: 160px 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "avatar name name brand"
      "avatar info info brand";
    gap: 32px;
  }

  .team-member-header>img {
    grid-area: brand;
    justify-self: end;
    height: 160px;
    display: inline;
  }

  .team-member-header .team-member-avatar {
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 4px -4px #0C0C0D0D;
    box-shadow: 0 16px 16px -8px #0C0C0D1A;
  }

  .team-member-header .team-member-avatar img {
    width: 100%;
  }

  .team-member-name {
    grid-area: name;
    width: max-content!important;
    gap: 16px;
  }

  .team-member-name h2 {
    font-size: 24px;
  }

  .team-member-info p {
    font-size: 14px;
  }

  /* Contenido principal (biografía) */
  .team-member-content p {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .team-member-content p:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}

/* ------------------------------------------------------ */
/* -------------------- estudio.html -------------------- */
/* ------------------------------------------------------ */

/* Card bienvenida */
.wc-estudio {
  display: flex;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--color-bg-white);
  box-shadow: 0 0 16px 4px #0C0C0D1A;
  overflow: hidden;
}
.wc-estudio p {
  font-family: Montserrat;
  font-weight: 300;
  font-size: 15px;
  line-height: 200%;
  text-align: center;
}

/* ------------------------------------------------------ */

/* Cards About  */
.card-estudio {
  max-width: 768px;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  gap: 24px;
}
.card-estudio p {
  font-family: var(--ff-secondary);
  font-weight: 400;
  font-size: 15px;
  line-height: 200%;
  letter-spacing: 0%;
}
.card-estudio-img-wrapper {
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 4px -4px #0C0C0D0D;
  box-shadow: 0 16px 16px -8px #0C0C0D1A;
}
.card-estudio-img-wrapper img {
  width: 100%;
}

@media(min-width:1024px) {
  .wc-estudio p{
    max-width: 1090px;
    font-size: 21px;
  }

  .card-estudio {
    padding: 64px;
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .card-estudio:nth-child(2) {
    flex-direction: row-reverse;
  }

  .card-estudio-img-wrapper img {
    max-width: 450px;
  }

  .card-estudio p {
    max-width: 500px;
    font-size: 14px;
    line-height: 210%;
  }
}

@media(min-width:1220px) {
  .wc-estudio{
    width: 100%;
    max-width: 1440px;
  }
  .wc-estudio p {
    font-size: 28px;
  }

  .card-estudio {
    padding: 0;
    max-width: 1090px;
    width: 100%;
  }

  .card-estudio p {
    font-size: 17px;
    color: var(--color-text-dark);
  }
  .card-estudio-img-wrapper img{
    max-width: 498px;
  }
}

/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

/* HELPER SCROLL */
[id] {
  scroll-margin-top: 120px;
  /* la altura del header */
}

/* ----------------------------------------------- */
/* Whatsapp Widget Whatsapp Widget Whatsapp Widget */
/* Whatsapp Widget Whatsapp Widget Whatsapp Widget */
/* Whatsapp Widget Whatsapp Widget Whatsapp Widget */
/* ----------------------------------------------- */


.whatsapp-widget {
  position: fixed;
  bottom: 12px;
  right: 0px;
  z-index: 999;
  width: 60px;
}
.whatsapp-widget img{
    width: 100%;
  }

@media(min-width:1024px) {
  .whatsapp-widget {
    width: 68px;
    right: 24px;
    bottom: 24px;
  }
  
}

/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/*  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  */
/*  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  */
/*  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  */
/*  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  BOTONES  */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

.btn-cta-container {
  min-width: 160px;
  position: relative;
  display: inline-block;
  font-family: inherit;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-texto-boton);
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  background: rgba(249, 237, 181, 0.1);
  border: none;
  transition: all 0.3s ease;
}

/* Capa del borde con gradiente */
.btn-cta-container::before,
.btn-cta-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.5s ease;
  /* <- transicion suave */
}

/* Capa con el gradiente */
.btn-cta-container::before {
  background: var(--gradiente-botones);
  opacity: 1;
}

/* Capa con el color sólido */
.btn-cta-container::after {
  background: var(--color-brand-30);
  opacity: 0;
}

/* Al hacer hover, intercambiamos la opacidad */
.btn-cta-container:hover::before {
  opacity: 0;
}

.btn-cta-container:hover::after {
  opacity: 1;
}

/* ------------------- */

.btn-cta {
  padding: 10px 24px;
  width: 100%;
  height: 100%;
  font-family: var(--ff-base);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-bg-dark);
  letter-spacing: 6%;
  border-radius: 2px;
  border: none;
  cursor: pointer;

  /* Gradiente inicial */
  background: linear-gradient(180deg, #3f3f3db1 -107.69%, #F9EDB5 35.06%);
  background-size: 200% 200%;
  background-position: 50% 0%;
  /* arriba */
  transition: background-position .5s ease-in-out, transform 0.2s ease-in-out;
}
.btn-cta:hover {
  /* desplazamos el gradiente hacia abajo suavemente */
  background-position: 50% 100%;
}
/* ------------------------------------------------------ */

.cta-form{
  width: 100%;
}

.cta-estudio {
  width: 100%;
  max-width: 768px;
}

.cta-estudio .btn-cta-container{
  width: 100%;
}

.cta-estudio-mini {
  display: none;
}
/* ------------------------------------------------------ */

@media(min-width:768px){
  .btn-cta-container{
    width: 168px;
  }
}

@media(min-width:1024px) {
  .btn-cta-container {
    width: max-content;
  }

  .send-btn-form{
    width: 228px;
  }

  .cta-estudio {
    display: none;
  }

  .cta-estudio-mini {
    margin-top: 24px;
    padding: 0;
    max-width: 160px;
    display: flex;
    justify-content: flex-start;
  }

  .cta-estudio-mini a {
    font-size: 12px;
  }
}


/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ----------------------- TOAST ------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

/* TOAST */
.swal2-toast {
  font-family: var(--ff-secondary);
  background: var(--color-brand-60) !important;
}
.swal2-toast h2:where(.swal2-title) {
  font-weight: 500;
  font-size: 15px;
  margin-right: 0;
  margin-left: 10px;
}
