:root {

    /* Variables */

    --fi-primary: #B94700;
    --fi-secondary: #FE5000;
    --fi-light: #FFBE9F;

    --ipade-primary: #0A2240;
    --ipade-secondary: #002D74;
    --ipade-light: #ABC8E7;

    --white: #fff;
    --black: #000;
    --gray: #393939;
    --gray-light: #F2F2F2;

    --font-dm: "DM Sans", "Verdana", Arial, Helvetica, sans-serif;
    --font-signika: "Signika", "DM Sans", Arial, Helvetica, sans-serif;

    --p: clamp(0.8rem, 0.657rem + 0.381vw, 1rem);
}

/* General */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-signika);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    background-color: var(--white);
    overflow-x: hidden;

}
/* Desktop */
.hero-section {
    background-image: url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/280be51b-7424-46f1-9a6c-abba3184fc63.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero-section {
        display: block;          
        background: none;         
        padding: 0;
        margin: 0;
    }

    /* Imagen mobile separada */
    .hero-section::before {
        content: '';
        display: block;
        width: 100%;
        height: 300px; /* Ajusta según la imagen */
        background-image: url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/d97317fa-a2ac-4865-a59f-f8322cf462a8.png');
        background-size: cover;  /* para que cubra todo el ancho */
        background-position: center top;
    }

    .hero-content {
        color: #002D74;
        text-align: center;
        padding: 1rem;
        margin-top: 1rem;
        position: relative;
        background: none;
    }

    .hero-content h1 {
        text-align: left;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
      text-align: left;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-info-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero-info, .hero-buttons {
        width: 100%;
        padding: 1rem;
        background: none;
        color: #002D74;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}




  .hero-info-btns {
    display: flex;
    flex-wrap: wrap;
    border-radius: 0rem 1rem 0rem 0rem;
    overflow: hidden;
  }

  .hero-info {
    background: #FAF2E7;
    color: #000;
    padding: 1.5rem;
    flex: 1 1 100%;
    border-radius: 1rem 1rem 0 0;
  }

  .hero-buttons {
    padding: 1.5rem;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #042C4B;
  }

  .hero-buttons .btn {
    width: 100%;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
  }

  @media (min-width: 992px) {
    .hero-info {
      flex: 0 0 60%;
      border-radius: 1rem 0 0 0;
    }
    .hero-buttons {
      flex: 0 0 40%;
      border-radius: 0 1rem 0 0;
    }
    .hero-info-btns {
      flex-wrap: nowrap;
    }
  }


/* ======= FIX HEADER MOBILE ======= */
@media (max-width: 768px) {

  .header-main {
    aspect-ratio: auto !important;
    min-height: 500px !important; /* evita que se colapse */
    padding-top: 4rem;
    padding-bottom: 2rem;
    display: block;
    background-image: url("https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/65e5377d-a9d8-428b-98b6-2076a5d36a6a.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: none !important;
  }

  .header-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.2) 30%,
      rgba(0,0,0,0.7) 90%
    );
    padding: 1rem;
  }
/* Quitar márgenes y ancho fijo del contenedor del header */
.header-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
}
.header-main {
  margin-top: 0 !important;
}

  .header-overlay .col-12.col-lg-8 {
    margin-bottom: 1rem;
    text-align: left;
    z-index: 2;
    position: relative;
  }

  .header-overlay h1,
  .header-overlay p {
    color: #002D74 !important;
  }

  /* Contenedor flex: forzar columna */
  .header-overlay .d-flex {
    flex-direction: column !important;
    gap: 1rem;
  }

  /* Cajas */
  .info-left, .info-right {
    width: 100%;
    border-radius: 10px !important;
  }

  .info-right a {
    width: 100%;
  }
}


.btn-warning {
  background-color: #f58220;
  border: none;
  color: #fff;
}

.btn-warning:hover {
  background-color: #d86d1c;
}

.btn-outline-primary {
  border: 2px solid #f58220;
  color: #f58220;
}

.btn-outline-primary:hover {
  background-color: #f58220;
  color: #fff;
}

/* Colores institucionales */
.text-fi-orange {
  color: #f58220;
}

.btn-orange {
  background-color: #f58220;
  border: none;
  color: #fff;
  transition: 0.3s ease;
}

.btn-orange:hover {
  background-color: #d86d1c;
}

/* =======================================================
PROGRAM SECTION
======================================================= */

.program-section{
    background:#f5f5f5;
    padding-top:0px;
    padding-bottom:0px;
}

/* =========================
LEFT CONTENT
========================= */

.program-content h2{
    color:#C55300;
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:35px;
    font-family:'DM Sans', sans-serif;
    max-width:760px;
}

.program-content p{
    font-size:23px;
    line-height:1.55;
    color:#151515;
    font-weight:500;
    margin-bottom:26px;
    max-width:760px;
}

/* Imagen */

.program-image{
    width:100%;
    min-height:280px;
    border-radius:28px;
    overflow:hidden;
    margin-top:15px;

    background-image:url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/278bf054-9be9-4ce1-b135-fddb889f643e.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* =========================
FORM
========================= */

.info-form{
    background:#f7f7f7;
    border-radius:34px;
    padding:55px 50px;
    box-shadow:none;
}

.info-form h3{
    color:#FE5000;
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:14px;
    font-family:'DM Sans', sans-serif;
}

.info-form p{
    font-size:20px;
    color:#4a4a4a;
    margin-bottom: 30px;
}

/* Jotform */

.jotform-container{
    width:100%;
    min-height:520px;
}
/* =======================================================
FORM SECTION ALIGN FIX
======================================================= */

.form-row-custom{
    min-height: 100%;
}

/* Desktop */
@media(min-width:992px){

    .program-section .col-lg-5{
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
    }

    .program-section .col-lg-7{
        display:flex;
        align-items:flex-start;
    }

    .info-form{
        width:100%;
        margin-top:0;
    }

}


/* Mobile */
@media(max-width:991px){

    .info-form{
        margin-top:30px;
    }

}

/* =======================================================
TABLET
======================================================= */

@media(max-width:991px){

    .program-section{
        padding-top:70px;
        padding-bottom:70px;
    }

    .program-content h2{
        font-size:42px;
        max-width:100%;
    }

    .program-content p{
        font-size:20px;
        max-width:100%;
    }

    .program-image{
        min-height:240px;
        margin-bottom:20px;
    }

    .info-form{
        padding:40px 35px;
        border-radius:28px;
    }

    .info-form h3{
        font-size:34px;
    }

    .info-form p{
        font-size:18px;
    }

}

/* =======================================================
MOBILE
======================================================= */

@media(max-width:767px){

    .program-section{
        padding-top:55px;
        padding-bottom:55px;
    }

    .program-content h2{
        font-size:30px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .program-content p{
        font-size:17px;
        line-height:1.6;
        margin-bottom:20px;
    }

    .program-image{
        min-height:200px;
        border-radius:22px;
        margin-top:20px;
        background-position:center;
    }

    .info-form{
        padding:28px 22px;
        border-radius:24px;
    }

    .info-form h3{
        font-size:28px;
    }

    .info-form p{
        font-size:16px;
        margin-bottom:25px;
    }

    .jotform-container{
        min-height:450px;
    }

}

/* Ajuste responsivo */
@media (max-width: 991px) {
  .program-section img {
    margin-top: 1.5rem;
  }
  .info-form {
    padding: 2rem;
  }
}

.text-fi-orange {
  color: #e25d0f !important;
}

.modulos-box {
  border: 1.5px solid #0b2342;
  border-radius: 12px;
  background-color: #fff;
}

.modulos-header {
  background-color: #0b2342;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.modulos-section ol li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}




.content {
    flex: 1;
    /* Expands to push footer down */
}

body {
    display: flex;
    flex-direction: column;
}

.rounded {
    border-radius: 20px !important;
}

label {
    font-size: .8rem;
}


/* Backgrounds */

.bg-ipade-primary {
    background-color: var(--ipade-primary);
}

.bg-ipade-secondary {
    background-color: var(--ipade-secondary);
}

.bg-ipade-light {
    background-color: var(--ipade-light);
}

.bg-fi-primary {
    background-color: var(--fi-primary);
}

.bg-fi-secondary {
    background-color: var(--fi-secondary);
}

.bg-fi-light {
    background-color: var(--fi-light);
}

.bg-gray {
    background-color: var(--gray);
}

.bg-graylight {
    background-color: var(--gray-light);
}

/* Colors */

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

.color-ipade-secondary {
    color: var(--ipade-secondary);
}

.color-ipade-light {
    color: var(--ipade-light);
}

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

.color-fi-secondary {
    color: var(--fi-secondary);
}

.color-fi-light {
    color: var(--fi-light);
}

.color-white {
    color: var(--white);
}

.color-black {
    color: var(--black);
}

.color-gray {
    color: var(--gray);
}

.color-lightgray {
    color: var(--gray-light);
}

/* Buttons */

a {
    -webkit-transition: all .25s ease-in;
    -moz-transition: all .25s ease-in;
    -ms-transition: all .25s ease-in;
    -o-transition: all .25s ease-in;
    transition: all .25s ease-in;
}

.btn {
    font-size: clamp(0.8rem, 0.657rem + 0.381vw, 1rem);
    font-weight: bold;
    padding: 10px 24px;
    border: none;
    -webkit-transition: all .25s ease-in;
    -moz-transition: all .25s ease-in;
    -ms-transition: all .25s ease-in;
    -o-transition: all .25s ease-in;
    transition: all .25s ease-in;
}

.btn:hover {
        background-color: #9c3e08;
    color: var(--white);
}

.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: -1rem -.5rem 0 0;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    background-color: var(--mede-secondary);
    opacity: 1;
}

/* NAVBAR */

/* FIXED */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
}

.logo {
    height: 82px;
    transition: all 0.3s ease;
}

.logo.scrolled {
    height: 50px;
}

.btn-primary {
    background-color: #28d467;
    background-image: url(https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/fb5f0f68-99c4-486b-b806-eae8aed09629.png);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 10px 24px;
}

.btn-primary.scrolled {
    /* Estilo diferente para el primer botón al hacer scroll */
    background-color: #28d467;
    border-color: #28d467;
    background-position: center;
    height: 2.7rem;
    padding: 10px;
}

.btn-whats {
    background-color: #28d467;
    background-image: url(https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/fb5f0f68-99c4-486b-b806-eae8aed09629.png);
    background-position: center;

    background-repeat: no-repeat;
    padding: 10px;
    height: 2.4rem;
    aspect-ratio: 1/1;
}
.info-left {
    background-color: #F9EFE8;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .info-right {
    background-color: #0B2642;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    min-width: 320px;
  }
  .btn-orange {
    background-color: #B34700;
  }
  .text-orange {
    color: #B34700;
  }

/* Footer */

.footer {
    padding: clamp(2.3125rem, 1.7791rem + 0.8611vw, 2.8125rem) 0;
}

footer ul li {
    background-color: transparent;
}

footer ul li a:hover {
    color: var(--ipade-light) !important;
}

footer .p {
    font-size: var(--p);
}

footer .p a {
    text-decoration: none;
}

/* Header */

.header-main {
    position: relative;
    aspect-ratio: 1920/727;
    background-size: cover;
    background-position: center;
}

.pitch {
    background-color: hsla(0, 0%, 100%, .87);
}

/* Section - Menú */

.menu .nav-link {
    color: var(--white);
    font-size: .8rem;
}

.menu .nav-link:hover {
    color: var(--fi-light);

}

.quotes {
    font-size: clamp(0.8rem, 0.657rem + 0.381vw, 1rem);
}

.tabla {
    border-bottom: solid 1px #bababa;
}

.redondito {
    border-radius: 0 20px 20px 0;
}

.sobres {
    position: relative;
    z-index: 2;
}

.razones {
    background-color: var(--fi-primary);
    background-image: url(https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/bdfb2aed-ef86-44c7-a8ed-80fdc84caaf8.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.queso {
    background-color: #B94700;
}

/* Estilos para las flechas */

/* Acordeón */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Tabs */
.nav-tabs .nav-link::after {
    border-top: 0.3em solid #FFF;
}

.nav-tabs .nav-link.active::after {
    border-top-color: #000;
}

/* Dropdowns */
.dropdown-toggle::after {
    border-top-color: #FFF;
}
.show>.dropdown-toggle::after {
    border-top-color: #000;
    border-bottom-color: #000;
}
/* LISTAS */
.custom-list {
    list-style-type: none;
    /* Elimina los bullets por defecto */
    padding-left: 1rem;
    /* Ajusta el espacio si es necesario */
}
.custom-list li::before {
    content: "•";
    /* Usa un carácter de bullet */
    color: var(--fi-secondary);
    /* Cambia este valor al color que desees */
    font-weight: bold;
    /* Opcional: hace el bullet más grueso */
    display: inline-block;
    width: 1em;
    /* Espacio entre el bullet y el texto */
    margin-left: -1em;
    /* Alinea correctamente con el texto */
}
.experiencia img {
    position: relative;
    z-index: 0;
}
#sobres {
    margin-left: -50px;
}
.header-main {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 1.5rem;
    position: relative;
}
.header-content {
    max-width: 650px;
    color: white;
    text-align: left; 
}
.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
}
.header-content p {
    font-size: 1.25rem;
}
.container.h-100,
.row.h-100 {
    height: 100% !important;
}
.nav-tabs .nav-link.active {
    background-color: #FFBE9F !important;
    color: #000 !important;
    font-weight: bold;
}
.nav-link {
    transition: all 0.3s ease;
}
/* Asegurar que las pestañas ocupen todo el ancho */
.nav-tabs {
    border-bottom: none;
}


/* Estilo para el acordeón activo en móvil */
.accordion-button:not(.collapsed) {
    background-color: #FFBE9F !important;
    color: #000 !important;
}
/* Responsive */
@media only screen and (max-width:991px) {
    .logo {
        height: 40px;
    }
    .logo.scrolled {
        height: 40px;
    }
    .btn {
        padding: 10px 10px;
    }
    .redondito {
        position: relative;
        border-radius: 0 0 20px 20px;
        width: 100%;
        padding-top: 120px;
        top: -25px;
        z-index: 1;
    }

    .folleto {
        max-height: 250px;
    }

    #sobres {
        margin-left: 0 !important;
    }

    .header-main {
        margin-top: 0;
    }
    @media (max-width: 576px) {
        .hero-info p {
            display: block;
            width: 100%;
            margin-bottom: 10px;
        }

        .hero-info p strong {
            display: block;
            margin-bottom: 2px;
        }
    }

}

/* =======================================================
EXPERIENCE SECTION
======================================================= */

.experience-section{
    background:#f5f5f5;
    padding-top:80px;
    padding-bottom:80px;
}

/* Título */

.experience-section h2{
    color:#C55300;
    font-size:30px;
    line-height:1.2;
    font-weight:900;
    font-family:'DM Sans', sans-serif;
    margin-bottom:45px;
    max-width:620px;
}

/* Lista */

.experience-list{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.experience-list-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
}

.experience-list p{
    font-size:20px;
    line-height:1.45;
    color:#111111;
    font-weight:500;
    margin:0;
}

/* Icono */

.experience-icon{
    color:#C55300;
    font-size:20px;
    line-height:1;
    margin-top:4px;
    flex-shrink:0;
}

/* Imagen Desktop */

.experience-image{
    width:100%;
    min-height:460px;
    border-radius:28px;

    background-image:url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/8c6118a4-da0f-45c3-9572-8338997d3614.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
/* ==========================================
MOBILE EXPERIENCE SECTION
========================================== */

@media(max-width:767px){

    .experience-section{
        padding-top:50px;
        padding-bottom:50px;
    }

    .experience-section h2{
        font-size:18px;
        line-height:1.3;
        margin-bottom:24px;
    }

    .experience-list{
        gap:18px;
    }

    .experience-list-item{
        gap:14px;
    }

    .experience-list p{
        font-size:16px;
        line-height:1.45;
    }

    .experience-icon{
        font-size:16px;
        margin-top:4px;
    }

    /* Imagen mobile */

    .experience-image{
        min-height:260px;
        margin-top:28px;
        border-radius:22px;

        background-image:url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/67e02ce0-1eb9-4319-a05b-27c7aadf14ad.png') !important;

        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;
    }

}
/* ==========================================
TABLET
========================================== */

@media(max-width:991px){

    .experience-section{
        padding-top:65px;
        padding-bottom:65px;
    }

    .experience-section h2{
        font-size:42px;
        margin-bottom:40px;
    }

    .experience-list{
        gap:22px;
    }

    .experience-list p{
        font-size:22px;
    }

    .experience-icon{
        font-size:22px;
    }

    .experience-image{
        min-height:420px;
        margin-top:40px;
    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:575px){

    .sessions-section{
        padding-top:30px;
        padding-bottom:55px;
    }

    .sessions-title{
        font-size:28px;
        line-height:1.2;
    }

    .sessions-subtitle{
        font-size:16px;
    }

    .session-content{
        padding:18px;
    }

    .session-content h3{
        font-size:20px;
    }

    .session-content p{
        font-size:15px;
        line-height:1.45;
    }

    /* =====================================
    OCULTAR IMÁGENES DESKTOP
    ===================================== */

    .session-image{
        display:none !important;
    }

    /* =====================================
    IMAGEN FINAL MOBILE
    ===================================== */

    .sessions-mobile-image{
        display:block;
        width:100%;
        height:78px;
        margin-top:16px;

        background-image:url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/559a01f4-91ef-4356-97c3-9db96cd2ad63.png');

        background-size:contain;
        background-position:center;
        background-repeat:no-repeat;
    }

}
/* =======================================================
SESSIONS SECTION
======================================================= */

.sessions-section{
    background:#f5f5f5;
    padding-top:40px;
    padding-bottom:80px;
}

/* Título principal */

.sessions-title{
    font-size:25px;
    font-weight:800;
    color:#C55300;
    margin-bottom:10px;
    line-height:1.15;
}

/* Subtítulo */

.sessions-subtitle{
    font-size:17px;
    color:#C55300;
    margin:0;
    font-weight:500;
}

/* Cards */

.session-card{
    background:#F8EFEA;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    min-height:120px;
    display:flex;
}

.session-card::before{
    content:"";
    width:18px;
    background:#C55300;
    display:block;
    flex-shrink:0;
}

.session-content{
    padding:22px 24px;
}

/* Número de sesión */

.session-content h3{
    font-size:20px;
    font-weight:800;
    margin-bottom:8px;
    color:#111;
}

/* Texto */

.session-content p{
    font-size:17px;
    line-height:1.4;
    color:#222;
    margin:0;
    font-weight:500;
}

/* Images */

.session-image{
    width:100%;
    border-radius:18px;
    margin-top:14px;
    display:block;
    object-fit:cover;
}

/* ==========================================
TABLET
========================================== */

@media(max-width:991px){

    .sessions-title{
        font-size:34px;
    }

    .sessions-subtitle{
        font-size:18px;
    }

    .session-content h3{
        font-size:22px;
    }

    .session-content p{
        font-size:17px;
    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:575px){

    .sessions-section{
        padding-top:30px;
        padding-bottom:55px;
    }

    .sessions-title{
        font-size:28px;
        line-height:1.2;
    }

    .sessions-subtitle{
        font-size:16px;
    }

    .session-content{
        padding:18px;
    }

    .session-content h3{
        font-size:20px;
    }

    .session-content p{
        font-size:15px;
        line-height:1.45;
    }

}

/* =======================================================
FINAL CTA SECTION
======================================================= */

.final-cta-section{
    background:#f5f5f5;
    padding-top:70px;
    padding-bottom:55px;
}

.final-cta-title{
    max-width:950px;
    margin:0 auto 45px;
    color:#C55300;
    font-size:20px;
    line-height:1.25;
    font-weight:800;
    font-family:'DM Sans', sans-serif;
}

/* BOTÓN */

.final-cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#C55300;
    color:#ffffff;
    text-decoration:none;

    font-size:20px;
    font-weight:700;

    padding:18px 52px;
    border-radius:999px;

    transition:all .3s ease;
    margin-bottom:50px;
}

.final-cta-button:hover{
    background:#a84700;
    color:#ffffff;
    transform:translateY(-2px);
}

/* Flecha */

.final-cta-button span{
    font-size:22px;
    line-height:1;
}

/* Texto inferior */

.final-cta-note{
    max-width:1000px;
    margin:0 auto;

    font-size:15px;
    line-height:1.6;

    color:#333333;
    font-style:italic;
    font-weight:500;
}
/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .final-cta-title{
        font-size:36px;
        margin-bottom:45px;
    }

    .final-cta-button{
        font-size:22px;
        padding:22px 50px;
        margin-bottom:50px;
    }

    .final-cta-note{
        font-size:16px;
    }

}

@media(max-width:575px){

    .final-cta-section{
        padding-top:70px;
        padding-bottom:60px;
    }

    .final-cta-title{
        font-size:28px;
    }

    .final-cta-button{
        width:100%;
        font-size:20px;
        padding:20px 30px;
    }

    .final-cta-note{
        font-size:15px;
    }

}

/* =======================================================
BROCHURE SECTION
======================================================= */

.brochure-section{
    background-color:#0A2240;
    padding-top:90px;
    padding-bottom:90px;
}

.brochure-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* =======================================================
COLUMNA IZQUIERDA
======================================================= */

.brochure-content{
    display:flex;
    align-items:center;
    gap:28px;
}

/* Imagen */

.brochure-image-wrapper{
    max-width:240px;
    width:100%;
    flex-shrink:0;
}

.brochure-image{
    width:100%;
    max-width:100%;
    border-radius:18px;
    box-shadow:0 6px 20px rgba(0,0,0,0.20);
    display:block;
}

/* Texto */

.brochure-text{
    max-width:320px;
}

.brochure-text h2{
    color:#fff;
    font-size:22px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:14px;
}

.brochure-text p{
    font-size:16px;
    line-height:1.5;
    color:#fff;
    margin-bottom:14px;
}

/* Lista */

.brochure-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.brochure-list li{
    color:#fff;
    font-size:15px;
    line-height:1.4;
}

.brochure-list li::before{
    content:"●";
    color:#E94F1D;
    margin-right:8px;
}

/* =======================================================
FORMULARIO
======================================================= */

.brochure-form{
    width:100%;
    max-width:720px;
    margin:0 auto;
    padding:18px;
    border-radius:24px;
}

.brochure-jotform{
    width:100%;
    max-width:800px;
    margin:0 auto;
}

/* =======================================================
RESPONSIVE
======================================================= */

@media(max-width:991px){

    .brochure-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .brochure-content{
        flex-direction:column;
        text-align:center;
    }

    .brochure-text{
        max-width:100%;
    }

    .brochure-text h2{
        font-size:28px;
    }

    .brochure-list{
        justify-content:center;
        align-items:center;
    }

    .brochure-image-wrapper{
        max-width:260px;
    }

    .brochure-form{
        margin-top:10px;
    }

}

@media(max-width:767px){

    .brochure-section{
        padding-top:60px;
        padding-bottom:60px;
    }

    .brochure-text h2{
        font-size:24px;
    }

    .brochure-text p{
        font-size:15px;
    }

    .brochure-list li{
        font-size:14px;
    }

}

/* ===== ARMONÍA TIPOGRÁFICA ===== */


/* Párrafo principal sección informes */
.program-section .col-lg-5 > p {
    font-size: 17px;
    line-height: 1.55;
}

/* H2 de la columna izquierda en informes */
.program-section .col-lg-5 > h2 {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 800;
}

/* Subtítulo del hero */
.hero-content .lead {
    font-size: 1.5rem;
    line-height: 1.5;
}

/* ==========================================
FIX FINAL MOBILE EXPERIENCE IMAGE
========================================== */

@media(max-width:767px){

    .experience-image{
        background-image:url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/67e02ce0-1eb9-4319-a05b-27c7aadf14ad.png') !important;

        background-size:cover !important;
        background-position:center center !important;
        background-repeat:no-repeat !important;

        min-height:260px !important;
        border-radius:22px !important;
        margin-top:28px !important;
    }

}

/* ============================================
   FIX TIPOGRAFÍA MÓVIL — EXPERIENCE SECTION
   ============================================ */

/* Tablet (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .experience-section h2 {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .experience-list p {
    font-size: 18px;
  }
  .experience-icon {
    font-size: 18px;
  }
}

/* Móvil (hasta 767px) — ya tienes un bloque pero el h2 sigue grande */
@media (max-width: 767px) {
  .experience-section h2 {
    font-size: 20px !important;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .experience-list p {
    font-size: 15px;
  }
  .experience-icon {
    font-size: 15px;
  }
}

/* ============================================
   FIX TIPOGRAFÍA MÓVIL — FINAL CTA SECTION
   ============================================ */

/* Tablet (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .final-cta-title {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .final-cta-button {
    font-size: 17px;
    padding: 16px 36px;
    margin-bottom: 36px;
  }
  .final-cta-note {
    font-size: 14px;
  }
}

/* Móvil (hasta 575px) */
@media (max-width: 575px) {
  .final-cta-title {
    font-size: 17px !important;
    line-height: 1.35;
    margin-bottom: 28px;
  }
  .final-cta-button {
    font-size: 16px !important;
    padding: 16px 24px !important;
  }
  .final-cta-note {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ============================================
   FIX IMAGEN TIRA MÓVIL — SESIONES
   ============================================ */

@media (max-width: 575px) {

  /* Mantener imágenes de desktop ocultas en móvil */
  .session-image {
    display: none !important;
  }

  /* Mostrar la tira decorativa y hacerla más grande */
  .sessions-mobile-image {
    display: block !important;
    width: 100%;
    height: 160px;              /* Antes era 78px, ahora mucho más visible */
    margin-top: 24px;
    background-image: url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/559a01f4-91ef-4356-97c3-9db96cd2ad63.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px;
  }



}

/* ============================================
   para visualizar 1 sola foto
   ============================================ */

@media (max-width: 575px) {

  .session-image {
    display: none !important;
  }

  .sessions-mobile-image {
    display: block !important;
    width: 100vw;
    height: 180px;
    margin-top: 24px;
    margin-left: calc(-50vw + 50%);
    background-image: url('https://image.edu.ipade.mx/lib/fe2b11747364057e741d77/m/1/559a01f4-91ef-4356-97c3-9db96cd2ad63.png') !important;
    background-size: contain;       /* muestra la imagen completa */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;      /* rellena los lados si sobra espacio */
    border-radius: 0;
  }

}