/* Indelx*/
/* GENERAL */
body{
    margin:0;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
    background:#fff;
}

/* HEADER */
.top-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 15px;
    position:relative;
    z-index:1000;
}

/* LOGO */
.logo-box{
    position:absolute;
    z-index:1001;
}

.logo-box img{
    height:120px;
}

/* NAVBAR */
.navbar{
    background:white;
    padding:25px 0;
    width:100%;
}

/* CONTENEDOR */
.navbar .container-fluid{
    padding-left:350px;
    padding-right:30px;
}

/* MENU */
.navbar-nav{
    gap:12px;
}

/* LINKS */
.nav-link{
     color:#071d49 !important;
    font-size:12px;
    font-weight:800;
    letter-spacing:.3px;
    position:relative;
    padding-bottom:10px !important;
    white-space:nowrap;
    display:inline-block; /* 🔥 IMPORTANTE */
}

/* ACTIVO */
.nav-link.active{
    color:#c58a18 !important;
}

/* LINEA */
.nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:#c58a18;
    border-radius:20px;
}

/* HOVER */
.nav-link:hover{
    color:#c58a18 !important;
}

/* BOTON */
.btn-aula{
    background:#071d49;
    color:white !important;
    padding:11px 22px;
    border-radius:5px;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:12px;
    font-weight:bold;
    margin-left:10px;
    white-space:nowrap;
    transition:.3s;
}

.btn-aula:hover{
    background:#c58a18;
}

/* TOGGLER */
.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

/* OFFCANVAS */
.offcanvas{
    width:280px !important;
}

.offcanvas-header{
    border-bottom:1px solid #eee;
    padding:20px;
}

.offcanvas-title{
    font-weight:bold;
    color:#071d49;
}

.offcanvas-body{
    padding:20px;
}

.offcanvas .navbar-nav{
    gap:5px;
}

.offcanvas .nav-link{
    font-size:14px;
    padding:12px 0 !important;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .navbar .container-fluid{
        padding-left:250px;
    }

    .logo-box img{
        height:100px;
    }

    .nav-link{
        font-size:11px;
    }

    .btn-aula{
        padding:10px 16px;
        font-size:11px;
    }
}

/* =========================
   MOVIL
========================= */

@media(max-width:991px){

    .top-header{
        padding:10px 15px;
    }

    .logo-box{
        position:relative;
    }

    .logo-box img{
        height:75px;
    }

    .navbar{
        padding:0;
    }

    .navbar .container-fluid{
        padding-left:0;
        padding-right:0;
        justify-content:flex-end;
    }

    .navbar-toggler{
        margin-right:5px;
    }
}
/* =========================
   HERO SECTION
========================= */

/* =========================
   HERO SECTION
========================= */

.hero-section{
    width:100%;
    overflow:hidden;
    padding:40px 0;
    background:#fff;
}

.hero-section .container-fluid{
    max-width:1400px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

/* =========================
   TEXTO
========================= */

.hero-left{
    display:flex;
    align-items:center;
    height:100%;
    padding:20px 20px 20px 0;
}

.hero-left > div{
    width:100%;
}

/* =========================
   TITULO
========================= */

.hero-left h1{
    font-size:clamp(34px, 3vw, 52px);
    font-weight:900;
    color:#071d49;
    line-height:1.05;
    margin-bottom:14px;
}

/* =========================
   SUBTITULO
========================= */

.hero-left h2{
    font-size:clamp(24px, 2vw, 34px);
    font-weight:900;
    color:#c58a18;
    line-height:1.15;
    margin-bottom:22px;
}

/* =========================
   TEXTO
========================= */

.hero-left p{
    font-size:15px;
    color:#444;
    line-height:1.7;
    margin-bottom:30px;
    max-width:520px;
}

/* =========================
   FEATURES
========================= */

.hero-features{
    display:flex;
    align-items:stretch;
    justify-content:flex-start;

    gap:12px;
    flex-wrap:nowrap; /* IMPORTANTE */
    margin-top:20px;
}

/* ITEM */
.feature-item{
    width:120px;
    min-width:120px;
    max-width:120px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:14px 10px;
    border-radius:12px;

    background:#f5f7fb;

    color:#071d49;
    font-weight:700;
    font-size:12px;
    line-height:1.4;
}

/* ICONOS */
.feature-item i{
    color:#071d49;
    font-size:28px;
    margin-bottom:8px;
}

/* =========================
   BOTON
========================= */

.btn-gold{
    background:#071d49;
    color:#fff;

    padding:14px 22px;
    border-radius:8px;

    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    margin-top:35px;

    font-weight:700;
    font-size:14px;

    transition:.3s;
}

.btn-gold:hover{
    background:#c58a18;
    color:#fff;
}

/* FLECHA */
.arrow-btn{
    font-size:18px;
    font-weight:bold;
}

/* =========================
   IMAGENES
========================= */

.image-wrapper{
    display:flex;
    gap:14px;
    align-items:stretch;
    height:100%;
}

/* IZQUIERDA */
.img-left{
    flex:1.3;
    display:flex;
}

.img-left img{
    width:100%;
    height:100%;
    min-height:640px;

    object-fit:cover;

    border-radius:18px;
    display:block;
}

/* DERECHA */
.img-right{
    flex:0.9;

    display:flex;
    flex-direction:column;
    gap:14px;
}

.img-right img{
    width:100%;
    height:calc(50% - 7px);

    object-fit:cover;

    border-radius:18px;
    display:block;
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){

    .hero-left{
        padding:20px;
    }

    .hero-features{
        flex-wrap:wrap;
    }

    .feature-item{
        width:calc(50% - 10px);
        max-width:none;
    }

    .img-left img{
        min-height:520px;
    }

    .img-right img{
        min-height:250px;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .hero-section{
        padding:30px 0;
    }

    .hero-section .row{
        gap:30px;
    }

    .hero-left{
        padding:10px 10px 0;
        text-align:center;
    }

    .hero-left p{
        max-width:100%;
    }

    .hero-features{
        justify-content:center;
        flex-wrap:wrap;
    }

    .feature-item{
        width:140px;
        max-width:140px;
    }

    .btn-gold{
        width:100%;
        max-width:420px;
    }

    .image-wrapper{
        flex-direction:column;
    }

    .img-left img{
        min-height:auto;
        height:420px;
    }

    .img-right{
        flex-direction:row;
    }

    .img-right img{
        width:50%;
        height:240px;
        min-height:auto;
    }
}

/* =========================
   MOVIL
========================= */

@media(max-width:576px){

    .hero-section{
        padding:20px 0 30px;
    }

    .hero-section .container-fluid{
        padding-left:14px;
        padding-right:14px;
    }

    .hero-left{
        padding:0;
    }

    .hero-left h1{
        line-height:1.1;
        margin-bottom:10px;
    }

    .hero-left h2{
        margin-bottom:18px;
    }

    .hero-left p{
        font-size:14px;
        line-height:1.6;
        margin-bottom:25px;
    }

    .hero-features{
        gap:10px;
        justify-content:center;
        flex-wrap:wrap;
    }

    .feature-item{
        width:calc(50% - 8px);
        min-width:unset;
        max-width:none;

        font-size:12px;
        padding:14px 8px;
    }

    .feature-item i{
        font-size:26px;
    }

    .btn-gold{
        width:100%;
        font-size:13px;
        padding:14px 16px;
        text-align:center;
    }

    .image-wrapper{
        gap:12px;
    }

    .img-left img{
        height:280px;
        border-radius:14px;
    }

    .img-right{
        flex-direction:column;
    }

    .img-right img{
        width:100%;
        height:180px;
        border-radius:14px;
    }
}
/* Diseño de card */
.areas-section {
    background: #071d49;
    padding: 40px 30px;
}

/* TITULO */
.areas-title {
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* CARD HORIZONTAL */
.area-card-horizontal {
    display: flex;
    align-items: stretch;
    background: #0d2b63;
    border-radius: 12px;
    overflow: hidden;

    border: 1px solid #ffffff; /* 👈 AQUÍ AHORA ES BLANCO */

    height: 210px;
    transition: 0.3s ease;
}

/* HOVER */
.area-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

/* LADO IZQUIERDO (IMAGEN) */
.area-img {
    width: 40%;
    height: 100%;
}

.area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* llena sin deformar */
}

/* LADO DERECHO (TEXTO) */
.area-text {
    width: 60%;
    padding: 30px 28px; /* más aire */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ICONO BLANCO */
.icon-big {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 8px;
}

/* TITULO */
.area-text h4 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 6px;
}

/* TEXTO */
.area-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .area-card-horizontal {
        flex-direction: column;
        height: auto;
    }

    .area-img {
        width: 100%;
        height: 180px;
    }

    .area-text {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   BENEFICIOS ISC
========================= */

.isc-beneficios{
    padding: 25px 15px;
    background: #fff;
    font-family: Arial, sans-serif;
}

/* TÍTULO */
.isc-title{
    font-size: 22px;
    font-weight: bold;
    color: #071d49;
    margin-bottom: 20px;
    text-align: center;
}

/* =========================
   FILA
========================= */

.isc-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    flex-wrap: nowrap; /* 🔥 una sola fila en compu */
    overflow: hidden;
}

/* =========================
   ITEM
========================= */

.isc-item{
    display: flex;
    align-items: center;
    gap: 12px;

    flex: 1;
    min-width: 0;

    transition: 0.3s;
    cursor: pointer;
}

.isc-item:hover{
    transform: translateY(-5px);
}

/* ICONO */
.isc-icon{
    width: 55px;
    height: 55px;
    background: #071d49;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: 0.3s;
}

.isc-item:hover .isc-icon{
    transform: scale(1.1);
}

/* TEXTO */
.isc-text{
    min-width: 0;
}

.isc-text h5{
    font-size: 14px;
    font-weight: 600;
    color: #071d49;
    margin-bottom: 6px;
    line-height: 1.3;
}

.isc-text p{
    margin: 0;
    font-size: 12px;
    color: #071d49;
    line-height: 1.4;
}

/* =========================
   SEPARADOR
========================= */

.isc-sep{
    width: 1px;
    height: 40px;
    background: #ddd;
    flex-shrink: 0;
}

/* =========================
   CTA
========================= */

.isc-cta{
    background: #c58a18;
    padding: 18px 20px;
    border-radius: 8px;
    color: white;
    text-align: center;

    flex: 1;
    min-width: 0;

    transition: 0.3s;
}

.isc-cta:hover{
    transform: translateY(-5px);
}

.isc-cta-icon{
    font-size: 26px;
}

.isc-cta-title{
    font-weight: bold;
    font-size: 13px;
    margin: 5px 0;
    line-height: 1.4;
}

/* BOTÓN */
.isc-btn{
    display: inline-block;
    background: #071d49;
    color: white;
    padding: 10px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 11px;
    transition: 0.3s;
}

.isc-btn:hover{
    background: #0b2a66;
    transform: scale(1.05);
}

/* =========================
   TABLET
========================= */

@media(max-width: 992px){

    .isc-row{
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .isc-item{
        width: calc(50% - 10px);
        flex: unset;
    }

    .isc-sep{
        display: none;
    }

    .isc-cta{
        width: 100%;
    }
}

/* =========================
   TELÉFONO
========================= */

@media(max-width: 576px){

    .isc-beneficios{
        padding: 35px 18px;
    }

    .isc-title{
        font-size: 24px;
        line-height: 1.3;
    }

    .isc-row{
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .isc-item{
        width: 100%;
        padding-bottom: 10px;
    }

    .isc-icon{
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .isc-text h5{
        font-size: 15px;
    }

    .isc-text p{
        font-size: 13px;
    }

    .isc-cta{
        width: 100%;
        padding: 22px 18px;
    }

    .isc-cta-title{
        font-size: 15px;
    }

    .isc-btn{
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 13px;
    }
}

/* =========================
   TOP BAR ISC
========================= */

.isc-topbar{
    background:#071d49;
    color:#fff;
    padding:10px 20px;
    font-family:Arial, sans-serif;
    width:100%;
    overflow:hidden;
}

/* CONTENEDOR */
.isc-topbar-container{
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    flex-wrap:wrap;
}
/* Footer*/
/* =========================
   LOGO
========================= */

.isc-topbar-logo{
    flex-shrink:0;
}

.isc-topbar-logo img{
    height:130px;
    width:auto;
    object-fit:contain;
    display:block;
}

/* =========================
   BLOQUE INFO
========================= */

.isc-topbar-info{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    flex:1;
    min-width:0;

    flex-wrap:wrap;
}

/* =========================
   ITEMS
========================= */

.isc-topbar-item{
    display:flex;
    align-items:center;
    gap:6px;

    font-size:13px;
    text-align:center;

    white-space:normal;
    word-break:break-word;
}

/* =========================
   SEPARADOR
========================= */

.isc-topbar-sep{
    width:1px;
    height:25px;
    background:rgba(255,255,255,0.4);
    flex-shrink:0;
}

/* =========================
   REDES
========================= */

.isc-topbar-social{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    justify-content:center;
}

.isc-topbar-social a{
    width:32px;
    height:32px;
    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    transition:.3s;
}

.isc-topbar-social i{
    color:#071d49;
    font-size:14px;
}

.isc-topbar-social a:hover{
    transform:none;
}

/* =========================
   SLOGAN
========================= */

.isc-topbar-slogan{
    color:#fff;
    font-size:12px;
    font-weight:bold;
    line-height:1.4;

    text-align:center;

    white-space:normal;
}

.isc-highlight{
    color:#c58a18;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .isc-topbar{
        padding:12px;
    }

    .isc-topbar-container{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        gap:15px;
    }

    .isc-topbar-logo img{
        height:95px;
        margin:auto;
    }

    .isc-topbar-info{
        justify-content:center;
        gap:10px;
    }

    .isc-topbar-item{
        font-size:11px;
    }

    .isc-topbar-slogan{
        font-size:10px;
    }

    .isc-topbar-social a{
        width:28px;
        height:28px;
    }

    .isc-topbar-social i{
        font-size:12px;
    }
}

/* =========================
   MOVIL
========================= */

@media(max-width:576px){

    .isc-topbar{
        padding:10px;
    }

    .isc-topbar-container{
        gap:12px;
    }

    .isc-topbar-logo img{
        height:75px;
    }

    .isc-topbar-info{
        flex-direction:column;
        gap:8px;
    }

    .isc-topbar-item{
        font-size:11px;
        justify-content:center;
    }

    .isc-topbar-item span{
        font-size:11px;
    }

    .isc-topbar-sep{
        display:none;
    }

    .isc-topbar-social{
        gap:6px;
    }

    .isc-topbar-social a{
        width:24px;
        height:24px;
    }

    .isc-topbar-social i{
        font-size:10px;
    }

    .isc-topbar-slogan{
        font-size:9px;
        line-height:1.3;
        padding:0 5px;
    }
}

/* Nosotros*/
/* SECCION NOSOTROS */
.iscic-nosotros{
     margin-bottom:60px;
}

/* HERO */
.iscic-nosotros-title{
    font-size:45px;
    font-weight:900;
    color:#071d49;
}

.iscic-nosotros-line{
    width:80px;
    height:4px;
    background:#c58a18;
    margin:10px 0 20px;
}

.iscic-nosotros-text{
    font-size:16px;
    color:#444;
    line-height:1.7;
    text-align: justify;
}

/* IMAGEN */
.iscic-nosotros-img{
      width:85%;           /* 🔥 más estética */
    height:350px;
    object-fit:cover;
    display:block;
    margin:0 auto;       /* 🔥 centra */
    border-radius:10px;
}

/* CARDS */
.iscic-card{
    border-radius:15px;
    padding:25px;
    height:100%;
}

.iscic-card-dark{
    background:#071d49;
    color:white;
}

.iscic-card-light{
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* CONTENIDO FLEX */
.iscic-row{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

/* ICONO CIRCULAR */
.iscic-icon-circle{
    width:70px;
    height:70px;
    border:2px solid #c58a18;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.iscic-card-dark .iscic-icon-circle{
    color:#c58a18;
}

.iscic-card-light .iscic-icon-circle{
    color:#071d49;
}

/* CONTENIDO */
.iscic-content{
    flex:1;
    text-align:justify;
}

/* TITULO CON LINEA */
.iscic-subtitle{
    font-weight:bold;
    margin-bottom:10px;
    position:relative;
}

.iscic-card-dark .iscic-subtitle{
    color:white;
}

.iscic-card-light .iscic-subtitle{
    color:#071d49;
}

.iscic-subtitle::after{
    content:"";
    display:block;
    width:50px;
    height:3px;
    background:#c58a18;
    margin-top:5px;
}

/* LISTA */
.iscic-list{
    list-style:none;
    padding:0;
}

.iscic-list li{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
    font-size:13px;
}

.iscic-list i{
    color:#c58a18;
}

/* =========================
   RESPONSIVE NOSOTROS
========================= */

@media (max-width: 768px){

    /* HERO */
    .iscic-nosotros-title{
        font-size: 28px;
        text-align: center;
    }

    .iscic-nosotros-line{
        margin: 10px auto 20px;
    }

    .iscic-nosotros-text{
        text-align: justify;
        font-size: 13px;
    }

    /* IMAGEN */
    .iscic-nosotros-img{
        height: 250px;
        object-fit: cover;
        margin-top: 15px;
    }

    /* CARDS */
    .iscic-card{
        padding: 18px;
    }

    /* ICONO */
    .iscic-icon-circle{
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    /* FILA */
    .iscic-row{
        gap: 10px;
    }

    /* TITULOS */
    .iscic-subtitle{
        font-size: 14px;
    }

    /* TEXTO */
    .iscic-content p{
        font-size: 13px;
    }

    /* LISTAS */
    .iscic-list li{
        font-size: 12px;
    }

}
.isc-anim{
    opacity:0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.isc-anim.show{
    opacity:1;
    transform: translateY(0);
}

/*Cursos  */
/* =========================
   SECCION PREMIUM FINAL
========================= */

.pro-section{
    padding:90px 20px;
    background: linear-gradient(180deg,#f4f6fb,#ffffff);
    position:relative;
    overflow:hidden;
    font-family: Arial, sans-serif;
    
}

/* DETALLE DECORATIVO */
.pro-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#c58a18;
    top:-100px;
    left:-100px;
    border-radius:50%;
    opacity:.1;
}

/* HEADER */
.pro-header{
    text-align:center;
    margin-bottom:60px;
}

.pro-sub{
    color:#c58a18;
    font-weight:bold;
    letter-spacing:1px;
    font-size:14px;
}

.pro-title{
    font-size:40px;
    font-weight:900;
    color:#071d49;
}

.pro-desc{
    font-size:14px;
    color:#666;
}

/* GRID */
.pro-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

/* CARD */
.pro-card{
    background:white;
    border-radius:20px;
    overflow:visible;
    box-shadow:0 25px 50px rgba(0,0,0,0.08);
    transition:.4s;
    position:relative;
}

.pro-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 70px rgba(0,0,0,0.15);
}

/* IMAGEN */
.pro-img{
    height:220px;
    background-size: cover;       /* 🔥 clave */
    background-position: center;  /* 🔥 centra */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* OVERLAY */
.pro-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(7,29,73,0.75), transparent);
}

/* BADGE */
.pro-badge{
    position:absolute;
    bottom:15px;
    left:20px;
    background:#071d49;
    color:white;
    padding:8px 15px;
    border-radius:30px;
    font-size:12px;
    font-weight:bold;
    z-index:2;
}

/* ICONO SUPERIOR */
.pro-icon{
    position:absolute;
    top:-35px; /* lo subimos un poco más */
    left:50%;
    transform:translateX(-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    background:#071d49;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;

    /* 🔥 mejora visual */
    border:5px solid #fff; /* efecto flotante */
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

/* DORADO */
.pro-card.gold .pro-icon{
    background:#c58a18;
}

/* CONTENIDO */
.pro-content{
    padding:35px 25px 20px;
    text-align:center;
}

/* TITULO */
.pro-card-title{
    font-size:20px;
    font-weight:800;
    color:#071d49;
    margin-bottom:15px;
}

/* LISTA */
.pro-list{
    text-align:left;
    font-size:15px;
    color:#444;
    padding-left:0;
    list-style:none;

}

.pro-list li{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:10px;

}

/* ICONO LISTA */
.pro-list i{
    color:#c58a18;
    font-size:14px;
}

/* FOOTER */
.pro-footer{
    background:#071d49;
    color:white;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:12px;
}

.pro-card.gold .pro-footer{
    background:#c58a18;
}

/* BOTON FLECHA */
.pro-arrow{
    width:35px;
    height:35px;
    border-radius:50%;
    background:white;
    color:#071d49;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

/* BENEFICIOS */
.pro-benefits{
    margin-top:70px;
    background:#071d49;
    border-radius:15px;
    padding:30px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    gap:25px;
    color:white;
}

.pro-benefit{
    text-align:center;
    font-size:13px;
}

.pro-benefit i{
    font-size:30px;
    margin-bottom:10px;
    color:#c58a18;
}

/* RESPONSIVE */
@media(max-width:768px){
    .pro-title{
        font-size:28px;
    }
}
 /*Diplomado*/
 /*Diplomados  */

.dip-card{
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.dip-card:hover{
    transform: translateY(-8px);
}

/* IMAGEN */
.dip-img{
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.dip-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.dip-card:hover .dip-img img{
    transform: scale(1.1);
}

/* CONTENIDO */
.dip-body{
    padding: 18px;
    text-align: center;
}

/* ICONO */
.dip-icon{
    width: 55px;
    height: 55px;
    background: #071d49;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 10px auto;
    font-size: 22px;
    border: 4px solid white;
    position: relative;
}

.dip-card:hover .dip-icon{
    background: #c58a18;
}

/* TEXTO */
.dip-body h5{
    color: #071d49;
    font-size: 16px;
    font-weight:  700;
    margin-bottom: 8px;
    
}

.dip-body p{
    font-size: 13px;
    color: #555;
}

/* RESPONSIVE AJUSTE */
@media(max-width:768px){
    .dip-img{
        height: 160px;
    }

    .dip-body h5{
        font-size: 15px;
    }
}

.isc-img-container{
    position: relative;
    width: 100%;
    height: 220px;   /* 🔥 más pequeño */
    max-height: 220px;
    overflow: hidden;
    margin-bottom: 35px; 
}

/* IMAGEN */
.isc-img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* se adapta sin deformarse */
}

/* CAPA */
.isc-overlay-shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;   /* un poco más compacto */
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(7,29,73,0.95) 0%,
        rgba(7,29,73,0.85) 60%,
        rgba(7,29,73,0.6) 100%
    );

    border-radius: 0 120px 120px 0;

    display: flex;
    align-items: center;
    padding-left: 35px;
}

/* LINEA DORADA */
.isc-overlay-shape::after{
    content: "";
    position: absolute;
    right: -3px;
    top: 15%;
    height: 70%;
    width: 3px;
    background: #c58a18;
}

/* TITULO */
.isc-overlay-shape h2{
    color: white;
    font-size: 28px;   /* 🔥 más chico */
    font-weight: 800;
}

/* RESPONSIVE */
@media(max-width:768px){

    .isc-img-container{
        height: 160px; /* aún más compacto en móvil */
    }

    .isc-overlay-shape{
        width: 100%;
        border-radius: 0;
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }

    .isc-overlay-shape::after{
        display: none;
    }

    .isc-overlay-shape h2{
        font-size: 22px;
    }
}
.maestrias-section{
    padding: 10px 0;
}


/* =========================
   MODAL RESPONSIVE
========================= */

.modal-custom{
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

/* HEADER */
.modal-header{
    background: #071d49;
    color: white;
    padding: 18px 25px;
    border: none;
}

.modal-title{
    font-size: 1.5rem;
    font-weight: 700;
}

/* BOTÓN CERRAR */
.btn-close{
    filter: brightness(0) invert(1);
}

/* =========================
   MODAL GENERAL
========================= */

.modal-custom{
    border-radius: 22px;
    border: none;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

/* HEADER */
.modal-header{
    background: #071d49;
    color: white;
    padding: 20px 28px;
    border: none;
}

.modal-title{
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

/* BOTÓN CERRAR */
.btn-close{
    filter: brightness(0) invert(1);
    opacity: .9;
}

.btn-close:hover{
    opacity: 1;
}

/* BODY */
.modal-body{
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.modal-body p{
    margin-bottom: 18px;
}

.modal-body ul{
    padding-left: 20px;
}

.modal-body li{
    margin-bottom: 10px;
}

/* =========================
   SUBTÍTULOS
========================= */

.modal-subtitle{
    color: #071d49;
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 14px;
}

/* =========================
   LISTAS
========================= */

.modal-list{
    padding-left: 22px;
    margin-bottom: 25px;
}

.modal-list li{
    margin-bottom: 10px;
    color: #444;
}

/* =========================
   CAJAS DE MÓDULOS
========================= */

.modulo-box{
    background: #f5f7fb;
    border-left: 5px solid #c58a18;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 14px;
    transition: .3s ease;
}

.modulo-box:hover{
    transform: translateX(5px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .modal-dialog{
        max-width: 92%;
        margin: 20px auto;
    }

    .modal-title{
        font-size: 1.35rem;
    }

    .modal-subtitle{
        font-size: 20px;
    }

    .modal-body{
        padding: 26px;
        font-size: 15px;
    }
}

/* =========================
   CELULAR
========================= */

@media (max-width: 768px){

    .modal-dialog{
        max-width: calc(100% - 32px);
        margin: 16px auto;
    }

    .modal-custom{
        border-radius: 20px;
    }

    .modal-header{
        padding: 18px 20px;
    }

    .modal-title{
        font-size: 1.1rem;
        line-height: 1.4;
        padding-right: 10px;
    }

    .modal-subtitle{
        font-size: 18px;
    }

    .modal-body{
        padding: 22px 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .modal-body li{
        margin-bottom: 8px;
    }

    .modulo-box{
        padding: 14px;
        font-size: 14px;
    }
}

/* =========================
   TELÉFONOS PEQUEÑOS
========================= */

@media (max-width: 480px){

    .modal-dialog{
        max-width: calc(100% - 24px);
        margin: 12px auto;
    }

    .modal-header{
        padding: 16px 18px;
    }

    .modal-title{
        font-size: 1rem;
    }

    .modal-body{
        padding: 20px 16px;
    }

    .modal-subtitle{
        font-size: 17px;
    }
}
/* SUBTÍTULOS */
.modal-subtitle{
    color: #071d49;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 20px;
}

/* LISTA */
.modal-list{
    padding-left: 20px;
    margin-bottom: 25px;
}

.modal-list li{
    margin-bottom: 8px;
    color: #444;
}

/* CAJAS DE MÓDULOS */
.modulo-box{
    background: #f5f7fb;
    border-left: 5px solid #c58a18;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: .3s ease;
}

.modulo-box:hover{
    transform: translateX(5px);
}

/* RESPONSIVE */
@media(max-width:768px){

    .modal-subtitle{
        font-size: 18px;
    }

    .modulo-box{
        padding: 12px;
        font-size: 14px;
    }
}

/* =========================
   FORMULARIO MODAL
========================= */

.info-form-box{
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e6e6e6;
}

/* TITULOS */
.form-title{
    color: #071d49;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-text{
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

/* LABELS */
.custom-label{
    font-size: 14px;
    font-weight: 600;
    color: #071d49;
    margin-bottom: 8px;
    display: block;
}

/* INPUTS */
.custom-input{
    height: 58px;
    border-radius: 14px;
    border: 1.5px solid #ddd;
    padding: 14px 18px;
    font-size: 15px;
    transition: all .3s ease;
    box-shadow: none;
}

.custom-input:focus{
    border-color: #071d49;
    box-shadow: 0 0 0 0.18rem rgba(7,29,73,.12);
}

/* BOTONES */
.form-buttons{
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-custom-primary{
    background: #071d49;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 600;
    transition: .3s;
}

.btn-custom-primary:hover{
    background: #c58a18;
    color: white;
}

.btn-custom-secondary{
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 600;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .form-title{
        font-size: 22px;
    }

    .custom-input{
        height: 54px;
    }
}

/* =========================
   CELULAR
========================= */

@media(max-width:768px){

    .info-form-box{
        margin-top: 30px;
        padding-top: 25px;
    }

    .form-title{
        font-size: 20px;
    }

    .form-text{
        font-size: 14px;
    }

    .custom-input{
        height: 52px;
        font-size: 14px;
        border-radius: 12px;
    }

    .form-buttons{
        flex-direction: column;
    }

    .btn-custom-primary,
    .btn-custom-secondary{
        width: 100%;
        padding: 14px;
    }
}

/* TELÉFONOS PEQUEÑOS */
@media(max-width:480px){

    .form-title{
        font-size: 18px;
    }

    .custom-input{
        height: 50px;
        padding: 12px 16px;
    }
}
/*Maestrias*/
/* CONTENEDOR */
.isc-img-container{
    position: relative;
    width: 100%;
    height: 220px;   /* 🔥 más pequeño */
    max-height: 220px;
    overflow: hidden;
}

/* IMAGEN */
.isc-img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* se adapta sin deformarse */
}

/* CAPA */
.isc-overlay-shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;   /* un poco más compacto */
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(7,29,73,0.95) 0%,
        rgba(7,29,73,0.85) 60%,
        rgba(7,29,73,0.6) 100%
    );

    border-radius: 0 120px 120px 0;

    display: flex;
    align-items: center;
    padding-left: 35px;
}

/* LINEA DORADA */
.isc-overlay-shape::after{
    content: "";
    position: absolute;
    right: -3px;
    top: 15%;
    height: 70%;
    width: 3px;
    background: #c58a18;
}

/* TITULO */
.isc-overlay-shape h2{
    color: white;
    font-size: 28px;   /* 🔥 más chico */
    font-weight: 800;
}

/* RESPONSIVE */
@media(max-width:768px){

    .isc-img-container{
        height: 160px; /* aún más compacto en móvil */
    }

    .isc-overlay-shape{
        width: 100%;
        border-radius: 0;
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }

    .isc-overlay-shape::after{
        display: none;
    }

    .isc-overlay-shape h2{
        font-size: 22px;
    }
}
/* =========================================
   SECCION
========================================= */

/* =========================================
   INFORMACION IZQUIERDA
========================================= */
.maestria-info-box{
    padding-right: 25px;
}

.mini-tag{
    background: rgba(197,138,24,0.15);
    color: #c58a18;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.maestria-info-box h3{
    font-size: 42px;
    font-weight: 900;
    color: #071d49;
    line-height: 1.15;
    margin-bottom: 22px;
}

.maestria-info-box p{
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

/* =========================================
   ITEMS INFO
========================================= */
.info-items{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item{
    background: white;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: .3s;
    border: 1px solid rgba(0,0,0,0.04);
}

.info-item:hover{
    transform: translateX(8px);
}

.info-item i{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #071d49;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0;
}

.info-item h6{
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #071d49;
}

.info-item span{
    font-size: 13px;
    color: #777;
}

/* =========================================
   GRID CARDS
========================================= */
.maestrias-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

/* =========================================
   CARD
========================================= */
.maestria-card{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGEN */
.maestria-card img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

/* OVERLAY */
.maestria-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(7,29,73,0.92),
    rgba(7,29,73,0.45),
    rgba(7,29,73,0.10));
    z-index: 1;
}

/* EFECTO */
.maestria-card:hover{
    transform: translateY(-10px);
}

.maestria-card:hover img{
    transform: scale(1.08);
}

/* CONTENIDO */
.card-content{
    position: relative;
    z-index: 3;
    width: 100%;
}

/* ICONO */
.icon-box{
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
    transition: .3s;
}

.maestria-card:hover .icon-box{
    background: #c58a18;
    transform: rotate(-6deg);
}

/* TITULO */
.maestria-card h5{
    color: white;
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* TEXTO */
.maestria-card p{
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width: 992px){

    .maestria-info-box{
        padding-right: 0;
        margin-bottom: 40px;
    }

    .maestria-info-box h3{
        font-size: 34px;
    }
}

@media(max-width: 768px){

    .maestrias-grid{
        grid-template-columns: 1fr;
    }

    .maestria-info-box h3{
        font-size: 28px;
    }

    .maestria-card{
        min-height: 300px;
    }
}
/* BANNER */
.maestria-premium-banner{
    position: relative;
    height: 320px;
}

.maestria-premium-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maestria-premium-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7,29,73,.92),
        rgba(7,29,73,.55)
    );
    display: flex;
    align-items: end;
    padding: 40px;
}

/* BOTON CERRAR */
.maestria-premium-close{
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 100;
}/* =========================================
MODAL MAESTRÍAS PERSONALIZADO
========================================= */

.maestria-premium-modal{
    border-radius: 24px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

/* =========================================
HEADER COLOR SOLIDO
========================================= */

.maestria-header-solid{
    background: #071d49;
    color: white;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.maestria-premium-title{
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.maestria-subtitle{
    color: rgba(255,255,255,.85);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* BODY */
.maestria-premium-body{
    padding: 35px;
    background: #fff;
}

/* CARD INFO */
.maestria-info-card{
    background: #f8f9fc;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 22px;
    border: 1px solid #eef1f6;
}

.maestria-info-title{
    color: #071d49;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

.maestria-info-card p{
    color: #555;
    line-height: 1.9;
}

/* LISTA */
.maestria-custom-list{
    padding-left: 18px;
}

.maestria-custom-list li{
    margin-bottom: 10px;
    color: #444;
}

/* =========================================
PLAN DE ESTUDIOS
========================================= */

.maestria-plan-section{
    margin-top: 45px;
}

.maestria-plan-title{
    color: #071d49;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* CUATRIMESTRES */
.maestria-cuatrimestre-card{
    background: #f8f9fc;
    border-left: 5px solid #c58a18;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: .3s ease;
}

.maestria-cuatrimestre-card:hover{
    transform: translateY(-5px);
}

.maestria-cuatrimestre-title{
    color: #071d49;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.maestria-cuatrimestre-card ul{
    padding-left: 20px;
}

.maestria-cuatrimestre-card li{
    margin-bottom: 10px;
    color: #555;
}

/* =========================================
FORMULARIO
========================================= */

.maestria-form-box{
    background: #f8f9fc;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #eef1f6;
    position: sticky;
    top: 15px;
}

.maestria-form-title{
    color: #071d49;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.maestria-form-text{
    color: #666;
    margin-bottom: 25px;
}

.maestria-custom-input{
    height: 56px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 14px 18px;
    font-size: 15px;
    transition: .3s;
}

.maestria-custom-input:focus{
    border-color: #071d49;
    box-shadow: 0 0 0 0.15rem rgba(7,29,73,.15);
}

/* BOTÓN */
.maestria-btn-primary{
    width: 100%;
    border: none;
    border-radius: 14px;
    background: #071d49;
    color: white;
    padding: 15px;
    font-weight: 700;
    transition: .3s;
}

.maestria-btn-primary:hover{
    background: #c58a18;
    color: white;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .maestria-premium-body{
        padding: 25px;
    }

    .maestria-premium-title{
        font-size: 1.7rem;
    }

    .maestria-form-box{
        position: static;
    }
}

/* =========================================
CELULAR
========================================= */

@media(max-width:768px){

    .maestria-header-solid{
        padding: 25px 20px;
    }

    .maestria-premium-title{
        font-size: 1.4rem;
        line-height: 1.4;
        padding-right: 10px;
    }

    .maestria-subtitle{
        font-size: 14px;
    }

    .maestria-premium-body{
        padding: 20px;
    }

    .maestria-info-card{
        padding: 20px;
    }

    .maestria-info-title{
        font-size: 20px;
    }

    .maestria-plan-title{
        font-size: 24px;
    }

    .maestria-cuatrimestre-card{
        padding: 18px;
    }

    .maestria-form-box{
        padding: 22px;
    }

    .maestria-form-title{
        font-size: 20px;
    }

    .maestria-custom-input{
        height: 52px;
        font-size: 14px;
    }
}

/* =========================================
TELÉFONOS PEQUEÑOS
========================================= */

@media(max-width:480px){

    .maestria-premium-title{
        font-size: 1.2rem;
    }

    .maestria-premium-body{
        padding: 16px;
    }

    .maestria-form-box{
        padding: 18px;
    }
}
/*Contacto*/
/* =========================
   CONTACTO EMPRESARIAL ISCIC
========================= */

.isc-contacto-box{
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 5px solid #c58a18;
}

/* TITULO */
.isc-contacto-title{
    color: #071d49;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* TEXTO */
.isc-contacto-text{
    color: #555;
    font-size: 15px;
    margin-bottom: 30px;
}

/* GRID */
.isc-contacto-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* CARD */
.isc-contacto-card{
    background: #f8f9fb;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    border-left: 5px solid #c58a18;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.isc-contacto-card:hover{
    transform: translateY(-5px);
    background: #ffffff;
}

/* ICONOS */
.isc-contacto-icon{
    width: 55px;
    height: 55px;
    background: #071d49;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.isc-contacto-card:hover .isc-contacto-icon{
    background: #c58a18;
}

/* INFO */
.isc-contacto-info h5{
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #071d49;
}

.isc-contacto-info p{
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width:768px){

    .isc-contacto-grid{
        grid-template-columns: 1fr;
    }

    .isc-contacto-title{
        font-size: 24px;
    }

}

/*Empresa*/
.isc-empresas-v{
    background: #f8f9fb;
}

/* TITULO */
.isc-empresas-v-title{
    color: #071d49;
    font-size: 28px;
    font-weight: 800;
}

/* SUBTITULO */
.isc-empresas-v-subtitle{
    color: #555;
    font-size: 14px;
}

/* IMAGEN */
.isc-empresas-v-imgbox{
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.isc-empresas-v-imgbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.isc-empresas-v-imgbox img:hover{
    transform: scale(1.05);
}

/* TEXTO CARD */
.isc-empresas-v-infocard{
    background: white;
    padding: 20px;
    border-left: 5px solid #c58a18;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-size: 14px;
    color: #333;
}

/* BENEFICIOS GRID */
.isc-empresas-v-benefits{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ITEM */
.isc-empresas-v-benefit{
    background: white;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    font-size: 13px;
    font-weight: 600;
    color: #071d49;
}

.isc-empresas-v-benefit i{
    font-size: 20px;
    color: #c58a18;
}

.isc-empresas-v-benefit:hover{
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media(max-width: 768px){
    .isc-empresas-v-benefits{
        grid-template-columns: 1fr;
    }

    .isc-empresas-v-title{
        font-size: 22px;
    }
}
