@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* RESET CSS */

/* 1. Use a more-intuitive box-sizing model */

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

/* 2. Remove default margin */

* {
  margin: 0;
}

/* 3. Enable keyword animations */

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */

input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/

#root,
#__next {
  isolation: isolate;
}

/* END RESET CSS */

:root {
  font-family: Lato;
}

.main-content {
  display: flex;
  width: 1440px;
  padding: 30px 70px 20px 70px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: auto;
}

.amarillo-duoc {
  color: #FFB800;
}

/* HD RESOLUTION */

@media (min-width: 1280px) {
  .main-container {
    width: 1440px;
  }
}

/* FULL HD RESOLUTION */

@media (min-width: 1440px) {
  .main-container {
    width: auto;
  }
}

/* MOBILE */

@media (max-width: 1024px) {

  .main-container {
    width: 100%;
  }

  .main-content {
    width: 100%;
    padding: 0 10px;
  }
}.banner-container {
  height: auto;
  width: 100%;
  max-height: 800px;
  overflow: hidden;
  position: relative;
}

.logo {
  position: absolute;
  width: 245.429px !important;
  height: 55px !important;
  aspect-ratio: 245.43/55.00;
  margin: 21px 0 0 38px;
  overflow: unset;
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */

@media (max-width: 1024px) {
  .logo {
    width: 165px !important;
    height: 36.976px !important;
    aspect-ratio: 165.00/36.98;
    margin: 8px 0 0 18px;
  }

  .banner-container img {
    height: 288px;
  }
}.menu-container {
    background: #000;
    display: flex;
    height: 86px;
    padding: 16px 70px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.menu-item {
    display: flex;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* MOBILE */

@media (max-width: 1024px) {
    .menu-container {
        flex-direction: column;
        margin: 10px;
        padding: 10px 0;
        height: auto;
        gap: 0;
        border-radius: 10px;
    }

    .menu-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #FFF;
        font-family: Lato;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        text-decoration: none;
        padding: 0 20px;
        width: 100%;
        height: 37px;
        justify-content: space-between;
    }

    .menu-item {
        width: 100%;
        justify-content: start;
    }

    .menu-item img {
        width: 32px;
        height: 32px;
    }

    .menu-mobile.active img {
        transform: rotate(180deg);
    }
}.main-card-container {
    color: white;
    background-color: black;
    width: 100%;
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    margin: 20px 0;
}

.main-card-text {
    display: flex;
    width: 680px;
    height: auto;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.main-card-text h2 {
    color: #FFF;
    font-family: Lato;
    font-size: 28px;
    font-style: normal;
    line-height: normal;
    text-wrap: initial;
}

.texto-tav {
    color: #FFF;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    margin-right: 30px;
}

.leer-mas {
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
}

.main-card-container img {
    width: 620px;
    height: auto;
    flex-shrink: 0;
    border-radius: 0 20px 20px 0;
    object-fit: cover;
}

/* MOBILE */

@media (max-width: 1024px) {
    .main-card-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }

    .main-card-container img {
        border-radius: 20px 20px 0 0;
    }

    .main-card-text {
        order: 1;
        display: flex;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
        width: auto;
    }

    .main-card-text h2 {
        font-size: 26px;
    }

    .texto-tav {
        margin-right: 0;
        font-size: 15px;
    }
}.card-preguntas-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin: 20px 0;
}

.card-preguntas-container img {
    display: flex;
    padding: 13.333px;
    align-items: center;
    gap: 6.667px;
    border-radius: 66.667px;
    border: 1.333px solid var(--amarillo, #FFB800);
    width: 60px;
    height: 60px;
    aspect-ratio: 33.33/33.33;
    overflow: initial;
}

.question {
    display: flex;
    height: 611px;
    width: 420px;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    color: white;
    border-radius: 20px;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.question h2 {
    color: var(--Blanco, #FFF);
    font-family: Lato;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    text-transform: uppercase;
}

.question hr {
    height: 7px;
    align-self: stretch;
    background-color: #FFB800;
    border: none;
    margin-top: -17px;
}

.question-fechas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    align-self: stretch;
}

.question-fechas .question-fechas-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.question-fechas .question-fechas-content h4 {
    color: var(--negro, #1A1A1A);
    text-align: center;
    font-family: Lato;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    background: #FFB800;
    padding: 5px;
    border-radius: 9px;
}

.question ul {
    padding: 0 30px;
}

.question-1 {
    background: #000;
}

.question-2 {
    background: #484848;
}

.question-3 {
    background: #7E7E7E;
}

/* MOBILE */

@media (max-width: 1024px) {
    .card-preguntas-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 10px;
    }

    .card-preguntas-container img {
        width: 54px;
        height: 54px;
    }

    .card-preguntas-container::-webkit-scrollbar {
        display: none;
    }

    .question {
        flex: 0 0 auto;
        scroll-snap-align: start;
        display: flex;
        width: 300px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        flex-shrink: 0;
        font-size: 15px;
    }

    .question h2 {
        font-weight: 700;
    }

    .preguntas-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: -20px;
        margin-bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        transition: 0.3s;
    }

    .dot.active {
        background: #000;
    }
}.huincha-container {
    background: #000;
    display: flex;
    height: 34px;
    padding: 16px 70px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
}

.huincha-container a {
    color: #FFF;
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* MOBILE */

@media (max-width: 1024px) {
    .huincha-container {
        display: flex;
        height: 34px;
        padding: 16px 10px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 10px;
        align-self: stretch;
    }
}.disclaimer-container {
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--Amarillo, #FFB800);
}

.disclaimer-texto {
    color: #000;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* MOBILE */

@media (max-width: 1024px) {
    .texto-disclaimer {
        font-size: 14px;
    }
}#fechas {
    width: 100%;
    margin: 40px 20px 0px;
}

.timeline-title {
    margin-bottom: -40px;
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

.timeline-date {
    margin-bottom: 15px;
}

.detail-text-timeline {
    display: none !important;
}

.timeline-date,
.timeline-text {
    color: var(--negro, #1A1A1A);
    text-align: center;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
}

.timeline-text {
    font-weight: 700;
}

#timeline-horizontal {
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 20px;
    overflow-x: auto;
    white-space: normal;
    justify-content: center;
    overflow: visible;
}

#timeline-horizontal .timeline-bar {
    position: absolute;
    top: 145px;
    transform: translateY(-50%);
    height: 10px !important;
    background: #EEEEEE;
    z-index: 1;
    box-sizing: border-box;
}

#timeline-horizontal .timeline-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0 95px;
    z-index: 2;
    min-width: 0;
    position: relative;
}

#timeline-horizontal .timeline-icon {
    background: white;
    border: 7px solid #ffb800;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding: 11px;
}

#timeline-horizontal .timeline-icon svg {
    width: 24px;
    height: 24px;
}

#timeline-horizontal .timeline-content {
    text-align: center;
    margin-top: 10px;
    max-width: 260px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    height: 37px;
    box-sizing: border-box;
    position: relative;
}

#timeline-horizontal .timeline-text {
    height: 60px;
}

#timeline-horizontal .timeline-time {
    color: #666;
    font-size: 14px;
}

#timeline-horizontal .timeline-content span,
#timeline-horizontal .timeline-text {
    display: block;
    width: 235px;
}

.timeline-info {
    cursor: pointer;
    width: 24px;
    height: auto;
    position: relative;
}

.timeline-tooltip {
    display: none;
    background: #f1f1f1;
    color: black;
    padding: 10px;
    border-radius: 20px;
    white-space: normal;
    width: 350px;
    font-size: 14px;
    z-index: 9999;
    position: absolute;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    #fechas {
        margin: 50px 20px 0px 20px;
    }

    #timeline-horizontal {
        flex-direction: column;
        align-items: center;
        overflow-x: visible;
        padding: 40px 0;
    }

    .timeline-title {
        text-align: center;
        margin-top: -20px;
    }

    #timeline-horizontal .timeline-bar {
        width: 8px !important;
        top: 383.25px !important;
    }

    #timeline-horizontal .timeline-item {
        flex-direction: row;
        align-items: center;
        margin: 30px 0;
    }

    #timeline-horizontal .timeline-content span,
    #timeline-horizontal .timeline-text {
        width: 55px;
    }

    #timeline-horizontal .timeline-date,
    #timeline-horizontal .timeline-text {
        margin-right: 20px;
        font-size: 17px;
    }

    #timeline-horizontal .timeline-time {
        padding: 10px 0;
    }

    #timeline-horizontal .timeline-icon {
        margin-right: 20px;
    }

    .timeline-date,
    .timeline-text {
        text-align: left;
        height: auto !important;
        font-weight: 700;
    }

    #timeline-horizontal .timeline-content {
        text-align: left;
        margin-top: 0;
        max-width: 100%;
        height: auto;
        width: 197px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        font-size: 14px;
    }

    .timeline-content:first-child {
        width: 80px !important;
    }
}.tab-fechas-container {
    width: 100%;
    width: 1300px;
    height: 408px;
    padding: 16px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.10);
}

.tabs-group-fecha {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.tab-fecha {
    display: flex;
    width: 412px;
    height: 50px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 40px;
    background: #F4F4F4;
    color: var(--Gris-oscuro, #666);
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
}

.tab-fecha.active-tab {
    color: var(--negro, #1A1A1A);
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border-radius: 40px;
    background: #FFB800;
}

.tab-content-fecha>div {
    display: none;
}

.tab-content-fecha div.active {
    display: flex;
    padding: 10px;
    gap: 10px;
    align-self: stretch;
    color: #666;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    flex-direction: column;
}

/* MOBILE */

@media (max-width: 1024px) {
    .tab-fechas-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        align-self: stretch;
        height: 716px;
    }

    .tabs-group-fecha {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        align-self: stretch;
    }

    .tab-fecha {
        width: 100%;
        justify-content: start;
        padding: 12px 45px;
    }

    .tab-content-fecha div.active {
        font-size: 16px;
    }
}.card-sedes-container {
    display: flex;
    width: 300px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.10);
}

.card-sedes-banner {
    height: 138.557px;
    flex-shrink: 0;
    align-self: stretch;
    aspect-ratio: 300.00 / 168.56;
    border-radius: 20px 20px 0 0;
    object-fit: cover;
}

.card-sedes-content {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.card-sedes-content h2 {
    color: var(--negro, #1A1A1A);
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-sedes-vermas {
    display: flex;
    padding: 14px 25px;
    align-items: center;
    gap: 28px;
    border-radius: 100px;
    border: 1px solid #FFB800;
    cursor: pointer;
}

/* MODAL */

.card-sedes-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 20px;
}

.card-sedes-popup {
    display: inline-flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    background: #FFF;
    position: relative;
}

.popup-close {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    position: absolute;
    right: 12px;
    top: 8px;
}

.container-contador {
    display: flex;
    padding: 10px 0 0 20px;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.title-popup {
    display: flex;
    width: 354px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.title-popup h2 {
    color: var(--Negro, #1A1A1A);
    font-family: Lato;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

.title-popup div {
    color: var(--Negro-100, #000);
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.contador {
    display: flex;
    width: 396px;
    padding: 14px;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    background: var(--Amarillo, #FFB800);
    justify-content: center;
    text-align: center;
}

.contador-titulo {
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contador-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.contador-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contador-num {
    color: #000;
    text-align: center;
    font-family: Lato;
    font-size: 40.965px;
    font-style: normal;
    font-weight: 600;
    line-height: 61.447px;
    text-transform: uppercase;
}

.contador-label {
    color: #000;

    font-family: Lato;
    font-size: 11.403px;
    font-style: normal;
    font-weight: 700;
    line-height: 26.606px;
    text-transform: capitalize;
}

.seccion-jornadas {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.container-jornadas {
    display: flex;
    width: 400px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.10);
}

.card-jornadas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.card-diurna,
.card-vespertina {
    display: flex;
    padding: 14px;
    align-self: stretch;
    border-radius: 20px;
    gap: 5px;
    flex-direction: column;
}

.card-diurna div,
.card-vespertina div {
    gap: 5px;
    display: flex;
}

.card-diurna {
    background: var(--Amarillo, #FFB800);
}

.card-vespertina {
    color: white;
    background: #647174;
}

.container-seccion-oferta {
    display: flex;
    height: 370px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.container-oferta,
.container-inscripcion {
    display: flex;
    width: 400px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.10);
}

.container-oferta h3,
.container-inscripcion h3 {
    color: var(--Negro-100, #000);
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    text-transform: uppercase;
}

.container-oferta a {
    display: flex;
    padding: 14px 25px;
    align-items: center;
    gap: 28px;
    border-radius: 100px;
    border: 1px solid #FFB800;
    color: var(--Negro, #1A1A1A);
    text-align: center;
    font-family: Lato;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

/* .container-oferta a img{
    filter: grayscale(1);
} */

.container-inscripcion a {
    display: flex;
    padding: 14px 25px;
    align-items: center;
    gap: 28px;
    border-radius: 100px;
    background: #ffb800;
    color: var(--Gris-oscuro, #666);
    text-align: center;
    font-family: Lato;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-disabled {
    pointer-events: none;
    background: var(--Gris-Claro, #EEE) !important;
    opacity: 0.4;
    cursor: not-allowed;
}

.container-servicios {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.10);
}

.container-servicios h3 {
    color: var(--Negro-100, #000);
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    text-transform: uppercase;
}

.container-servicios div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    align-self: stretch;
}

.container-servicios div a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* MOBILE */

@media (max-width: 1024px) {
    .card-sedes-container {
        flex-direction: row;
        width: 100%;
        justify-content: start;
    }

    .card-sedes-banner {
        width: 204px;
        height: auto;
        border-radius: 20px 0 0 20px;
        object-fit: cover;
    }

    .card-sedes-content {
        gap: 40px;
    }

    .card-sedes-vermas {
        padding: 10px 10px;
        gap: 15px;
        font-size: 13px;
    }

    /* MODAL */

    .title-popup,
    .contador,
    .container-jornadas,
    .seccion-jornadas,
    .container-seccion-oferta,
    .container-oferta,
    .container-inscripcion,
    .card-jornadas,
    .card-diurna,
    .card-vespertina {
        width: 100% !important;
    }

    .card-sedes-overlay {
        padding: 0;
        align-items: unset;
    }

    .card-sedes-popup {
        width: 100%;
        overflow-y: auto;
        justify-content: start;
    }

    .container-contador {
        align-items: start;
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .seccion-jornadas {
        flex-direction: column;
    }

    .container-servicios div {
        flex-direction: column;
    }
}.sedes-container {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    gap: 30px;
}

.sedes-container .sedes-title {
    color: var(--Negro, #1A1A1A);
    font-family: Lato;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

.subtitulo-sedes {
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.sedes-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.sedes-tabs button {
    display: flex;
    width: 630px;
    height: 50px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 40px;
    background: #F4F4F4;
    border: none;
    cursor: pointer
}

.sedes-tabs button.active {
    background: #FFB800;
}

.sedes-list {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* MOBILE */

@media (max-width: 1024px) {
    .sedes-container {
        width: 100%;
    }

    .sedes-container .sedes-title {
        font-size: 23px;
    }

    .sedes-tabs {
        flex-direction: column;    
        gap: 20px;    
    }

    .sedes-tabs button {
        width: 100%;
    }

    .sedes-list {
        display: flex !important;
        flex-direction: column;
    }
}.disclaimer-horarios-container {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.10);
    color: var(--Negro-100, #000);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.disclaimer-messages {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    font-size: 15px;
}

.disclaimer-messages .disclaimer-card {
    display: flex;
    padding: 14px;
    align-items: center;
    gap: 5px;
    flex: 1 0 0;
    border-radius: 20px;
}

.disclaimer-messages .disclaimer-card div {
    display: flex;
    gap: 5px;
}

.disclaimer-messages .disclaimer-card:nth-child(1) {
    background: var(--Amarillo, #FFB800);
}

.disclaimer-messages .disclaimer-card:nth-child(2) {
    color: white;
    background: #647174;
}

.disclaimer-messages div b {
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* MOBILE */

@media (max-width: 1024px) {
    .disclaimer-messages {
        flex-direction: column;
    }

    .disclaimer-card {
        flex-direction: column;
        align-items: start !important;
        font-size: 14px;
    }
}.faq-container {
    display: flex;
    width: 1440px;
    padding: 40px 70px 70px 70px;
    flex-direction: column;
    align-items: left;
    gap: 40px;
}

.faq-container h2 {
    color: var(--Negro, #1A1A1A);
    font-family: Lato;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

.faq-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faqs {
    grid-auto-rows: auto;
}

.faq-section-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.faq-section-container h3 {
    color: #000;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.faq {
    display: flex;
    width: 630px;
    height: 100px;
    padding: 22px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border-bottom: 6px solid #FFB800;
    background: #EBEBEB;
    justify-content: space-between;
}

.faq-answer {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    width: 630px;
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.arrow.open {
    rotate: 180deg;
}

/* MOBILE */

@media (max-width: 1024px) {
    .faq-container {
        width: 100%;
        padding: 0;
        gap: 0;
    }

    .faq-container h2 {
        font-size: 25px;
    }

    .faq-columns {
        flex-direction: column;
        width: 100%;
    }

    .faq-column  {
        margin: 20px 0;
    }

    .faq-section-container {
        align-items: normal;
    }

    .faq-section-container h3 {
        font-size: 21px;
    }

    .faq {
        width: 100%;;
    }

    .faq-answer {
        width: 100%;
    }
}.footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inicio-clases-message {
    display: flex;
    height: 50px;
    padding: 30px 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    align-self: stretch;
    background: var(--Negro, #1A1A1A);
    color: var(--Blanco, #FFF);
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.container-servicios-footer {
    display: flex;
    height: 140px;
    padding: 30px 70px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    align-self: stretch;
    background: var(--Amarillo, #FFB800);
}

.servicios-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.servicios-footer div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    align-self: stretch;
    justify-content: space-between;
}

.servicios-footer div a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.logos-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #000;
    height: 160px;
    padding: 16px 70px;
}

.acreditacion-logo {
    width: 340px;
    height: 44.949px;
    aspect-ratio: 340.00/44.95;
}

/* MOBILE */

@media (max-width: 1024px) {
    .inicio-clases-message {
        text-align: center;
        font-size: 15px;
    }

    .container-servicios-footer {
        flex-direction: column;
        height: auto;
        align-items: center !important;
    }

    .container-servicios-footer div {
        flex-direction: column;
        height: auto;
        align-items: center;
    }

    .logos-footer {
        flex-direction: column;
        padding: 20px;
    }
}