/* ==========================================================================
   Everest Center - Estilos custom del landing
   Carga DESPUES de bootstrap, swiper, style.css y custom.css del template
   ========================================================================== */

/* ===== Tipografia base ===== */
body h1 {
    font-family: 'DM Serif Display', serif !important;
    font-size: 140px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    line-height: 1;
    color: #262626 !important;
}
body h2 {
    font-family: 'DM Serif Display', serif !important;
    font-size: 90px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    line-height: 1;
    color: #262626 !important;
}
.lead{
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
}
.red,
h2 i{ color: #2e6da5; }
.list-style-4 li:before{ color: #2e6da5 !important; }

/* ===== Container compacto 1320px ===== */
@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl{
        max-width: 1320px !important;
    }
}

/* ===== Header Everest (glass + scroll-spy) ===== */
.ev-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
}
.ev-nav{
    background: rgba(22,55,84,0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 250ms ease, border-color 250ms ease;
}
.ev-header.is-scrolled .ev-nav{
    background: rgba(6,31,50,0.92);
    border-bottom-color: rgba(255,255,255,0.05);
}
.ev-nav-inner{
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.ev-nav-logo{
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.ev-nav-logo img{
    height: 36px;
    width: auto;
    display: block;
}
.ev-nav-menu{
    list-style: none;
    margin: 0;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-left: auto;
}
.ev-nav-menu li{ list-style: none; margin: 0; }
.ev-nav-link{
    display: inline-block;
    padding: 9px 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 200ms ease, background 200ms ease;
}
.ev-nav-link:hover{
    color: #ffffff;
    text-decoration: none;
}
.ev-nav-link.is-active{
    color: #ffffff;
    background: #2e6da5;
    font-weight: 600;
}
.ev-nav-actions{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.ev-nav-cta{
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #061f32 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease;
}
.ev-nav-cta:hover{
    background: #2e6da5;
    color: #ffffff !important;
    text-decoration: none;
}
.ev-nav-burger{
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.ev-nav-burger span{
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

/* Spacer para que el banner no quede tapado por el header fixed */
.top-space{ padding-top: 0 !important; margin-top: 0 !important; }

@media (max-width: 991px){
    .ev-nav-burger{ display: inline-flex; }
    .ev-nav-menu, .ev-nav-cta{ display: none; }
    .ev-header.is-open .ev-nav-menu{
        display: flex;
        position: absolute;
        top: 100%;
        left: 14px;
        right: 14px;
        margin-top: 8px;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        background: rgba(6,31,50,0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .ev-header.is-open .ev-nav-menu .ev-nav-link{
        display: block;
        padding: 12px 14px;
        text-align: left;
    }
    .ev-header.is-open .ev-nav-cta{
        display: inline-flex;
        margin-top: 8px;
    }
}

/* ===== Indicador scroll-down del hero (fixed, desaparece al hacer scroll) ===== */
.ev-hero-scroll{
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1020;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 350ms ease, visibility 350ms ease;
    pointer-events: auto;
}
.ev-hero-scroll.is-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.ev-hero-scroll:hover{
    opacity: 0.85;
    color: #ffffff !important;
    text-decoration: none !important;
}
.ev-hero-scroll-text{
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}
.ev-hero-scroll-line{
    position: relative;
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.25);
    overflow: hidden;
    display: block;
}
.ev-hero-scroll-dot{
    position: absolute;
    top: -12px;
    left: -2px;
    width: 5px;
    height: 12px;
    background: #ffffff;
    border-radius: 3px;
    animation: evScrollDot 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes evScrollDot{
    0%   { top: -12px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 50px; opacity: 0; }
}
@media (max-width: 575px){
    .ev-hero-scroll{ bottom: 18px; gap: 10px; }
    .ev-hero-scroll-line{ height: 38px; }
}

/* ===== Slider hero (banner principal) ===== */
.main-slider h2{
    font-family: 'DM Serif Display', serif !important;
    font-size: 64px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
}
.swiper-pagination-bullet{
    width: 10px !important;
    height: 10px !important;
    background: rgba(255,255,255,0.4) !important;
    opacity: 1 !important;
    transition: background 200ms ease, width 200ms ease;
}
.swiper-pagination-bullet-active{
    background: #2e6da5 !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ===== Eyebrows en titulos de seccion ===== */
.ev-section-eyebrow{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2e6da5;
    display: block;
    margin-bottom: 12px;
}

/* ===== Slider de videos tipo Apple (compacto, una pantalla) ===== */
#video.section-mod{
    padding-top: 30px;
    padding-bottom: 30px;
}
.ev-videos-slider{
    position: relative;
    padding: 0;
}
.ev-videos-swiper{
    overflow: hidden;
    padding: 12px 0 12px;
}
.ev-video-slide{
    width: 230px;
    transition: opacity 400ms ease, filter 400ms ease, transform 400ms ease;
    opacity: 0.4;
    filter: blur(2px);
    transform: scale(0.92);
}
@media (max-width: 575px){
    .ev-video-slide{ width: 180px; }
}
.ev-video-slide.swiper-slide-active{
    opacity: 1;
    filter: none;
    transform: scale(1);
}
.ev-video-card{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
}
.ev-video-card video{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.ev-video-glass{
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    pointer-events: none;
}
.ev-video-eyebrow{
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}
.ev-video-title{
    font-family: 'DM Serif Display', serif !important;
    font-size: 20px !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.2px !important;
}
.ev-videos-controls{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

/* ===== Reveal on scroll (sutil) ===== */
.ev-reveal{
    opacity: 0;
    transition: opacity 700ms ease;
}
.ev-reveal.is-visible{ opacity: 1; }

/* Fade keyframe utilitario */
@keyframes evFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.ev-fade { animation: evFadeIn 600ms ease-out both; }

/* ===== Metodologia y Logros ===== */
.ev-mlblock-title{
    font-family: 'DM Serif Display', serif !important;
    font-size: 56px !important;
    color: #ffffff !important;
    margin: 0 0 48px 0 !important;
    line-height: 1 !important;
}
.ev-mlblock-sub{
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Timeline metodologia */
.ev-timeline{
    position: relative;
    padding-left: 30px;
}
.ev-timeline:before{
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 11px;
    width: 2px;
    background: rgba(255,255,255,0.12);
}
.ev-timeline-item{
    position: relative;
    padding: 14px 0 14px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.ev-timeline-item:before{
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #061f32;
    border: 2px solid rgba(255,255,255,0.3);
    transition: background 250ms ease, border-color 250ms ease;
    z-index: 2;
}
.ev-timeline-item:hover:before{
    background: #2e6da5;
    border-color: #2e6da5;
}
.ev-timeline-box{
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 250ms ease, background 250ms ease;
}
.ev-timeline-item:hover .ev-timeline-box{
    border-color: #2e6da5;
    background: rgba(255,255,255,0.06);
}
.ev-timeline-num{
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: #2e6da5;
    line-height: 1;
    min-width: 36px;
}
.ev-timeline-icon{
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    flex-shrink: 0;
}
.ev-timeline-text{
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.3;
    flex: 1;
}

/* Logros */
.ev-achievements{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.ev-achievement{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 28px 24px;
    transition: border-color 250ms ease, background 250ms ease;
}
.ev-achievement:hover{
    border-color: #2e6da5;
    background: rgba(255,255,255,0.06);
}
.ev-achievement-num{
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.ev-achievement-num .plus{ color: #2e6da5; }
.ev-achievement-text{
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ===== Everest Services (cards glass) ===== */
.es-card{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #111;
    border: 1px solid #e5e5e5;
    transition: border-color 250ms ease;
}
.es-card:hover{ border-color: #2e6da5; }
.es-card-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 800ms ease;
}
.es-card:hover .es-card-img{ transform: scale(1.04); }
.es-card-glass{
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 28px 28px;
    border-radius: 10px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.28);
    display: flex;
    flex-direction: column;
}
.es-card-eyebrow{
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    opacity: 0.92;
}
body .es-card .es-card-title{
    font-family: 'DM Serif Display', serif !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.5px !important;
}
body .es-card .es-card-title i.red{
    color: #5b96cf !important;
    font-style: italic;
}
.es-card-text{
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    margin: 0 0 18px 0;
}
.es-card-cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #262626 !important;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease;
    align-self: flex-start;
}
.es-card-cta:hover{
    background: #2e6da5;
    color: #ffffff !important;
}
@media (max-width: 767px){
    .es-card{ aspect-ratio: 3/4; }
    body .es-card .es-card-title{ font-size: 32px !important; }
}

/* ===== Red Everest testimonios estilo Google ===== */
.ev-red-slider{
    position: relative;
    padding: 60px 0 50px;
}
.ev-red-swiper{
    overflow: hidden;
    padding: 50px 0 40px;
}
.ev-red-slide{
    width: 420px;
    transition: opacity 400ms ease, filter 400ms ease;
    opacity: 0.4;
    filter: blur(2px);
}
.ev-red-slide.swiper-slide-active{
    opacity: 1;
    filter: none;
}
.ev-red-card{
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 60px 30px 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.ev-red-avatar{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f2f2;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ev-red-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Variante para cuando es logo (no foto): no recortar, fondo blanco, padding */
.ev-red-avatar.ev-red-avatar--logo{
    background: #ffffff;
}
.ev-red-avatar.ev-red-avatar--logo img{
    object-fit: contain;
    padding: 12px;
}
.ev-red-cat{
    display: inline-block;
    align-self: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #2e6da5;
    background: rgba(46,109,165,0.1);
    padding: 5px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.ev-red-stars{
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 14px;
    color: #f5b400;
}
.ev-red-stars svg{ width: 18px; height: 18px; }
.ev-red-quote-mark{
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    color: #2e6da5;
    line-height: 0.8;
    display: block;
    text-align: center;
    margin-bottom: 4px;
}
.ev-red-quote{
    font-family: 'DM Serif Display', serif !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    color: #262626 !important;
    margin: 0 0 22px 0 !important;
    text-align: center;
    font-style: normal;
    flex: 1;
}
.ev-red-author{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    padding-top: 16px;
    margin-top: auto;
}
.ev-red-author-name{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #262626;
    letter-spacing: 0.3px;
}
.ev-red-author-role{
    font-size: 11px;
    font-weight: 500;
    color: #767676;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
}
.ev-red-controls{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}
.ev-red-btn{
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #262626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.ev-red-btn:hover{
    background: #2e6da5;
    color: #ffffff;
    border-color: #2e6da5;
}
.ev-red-pagination{
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

/* ===== Marquee de clientes (Swiper continuo) ===== */
.ev-clients-marquee{
    overflow: hidden;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.ev-clients-swiper{ overflow: hidden; }
.ev-clients-swiper .swiper-wrapper{
    transition-timing-function: linear !important;
}
.ev-client-slide{
    width: auto !important;
    height: auto;
}
.ev-client-logo{
    width: 220px;
    height: 120px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    margin: 0 8px;
    transition: border-color 200ms ease;
}
.ev-client-logo:hover{ border-color: #2e6da5; }
.ev-client-logo img{
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 250ms ease, opacity 250ms ease;
}
.ev-client-logo:hover img{
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 575px){
    .ev-client-logo{
        width: 160px;
        height: 90px;
        padding: 12px;
        margin: 0 6px;
    }
}

/* ===== Formulario contacto pulido ===== */
#contacto{ padding-top: 100px; padding-bottom: 100px; }
#contacto h2{ color: #ffffff !important; }
.ev-contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ev-contact-grid .full{ grid-column: 1 / -1; }
.ev-field{ position: relative; }
.ev-field label{
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}
.ev-input,
.ev-select,
.ev-textarea{
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 200ms ease, background 200ms ease;
}
.ev-input::placeholder,
.ev-textarea::placeholder{ color: rgba(255,255,255,0.35); }
.ev-input:focus,
.ev-select:focus,
.ev-textarea:focus{
    outline: none;
    border-color: #2e6da5;
    background: rgba(255,255,255,0.06);
}
.ev-textarea{ resize: vertical; min-height: 140px; }
.ev-select{
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
}
.ev-select option{ color: #262626; }
.ev-submit{
    background: #2e6da5;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 200ms ease;
}
.ev-submit:hover{ background: #1f5184; }
.ev-contact-aside{
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 36px;
}
.ev-contact-aside-item{ margin-bottom: 24px; }
.ev-contact-aside-label{
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    font-weight: 600;
}
.ev-contact-aside-value{
    font-size: 17px;
    color: #ffffff;
    font-weight: 500;
}

/* ===== Parallax cierre con foto Everest ===== */
.ev-parallax{
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    color: #ffffff;
}
.ev-parallax-bg{
    position: absolute;
    top: -25%;
    left: 0;
    right: 0;
    height: 150%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 1;
    transform: translate3d(0, 0, 0);
}
.ev-parallax-overlay{
    position: absolute;
    inset: 0;
    background: rgba(6,31,50,0.62);
    z-index: 2;
}
body .ev-parallax .ev-parallax-quote i.red,
body .ev-parallax .ev-parallax-quote .red{
    color: #f5b400 !important;
    font-style: italic;
}
.ev-parallax-content{
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 20px;
}
.ev-parallax-eyebrow{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    margin-bottom: 32px;
}
body .ev-parallax .ev-parallax-quote{
    font-family: 'DM Serif Display', serif !important;
    font-size: 72px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 auto 24px auto !important;
    line-height: 1.05 !important;
    letter-spacing: -1px !important;
    max-width: 1100px;
}
.ev-parallax-author{
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ev-parallax-cta-wrap{ margin-bottom: 28px; }
.ev-parallax-cta{
    display: inline-flex;
    align-items: center;
    background: #2e6da5;
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 200ms ease;
}
.ev-parallax-cta:hover{
    background: #1f5184;
    color: #ffffff !important;
}
.ev-parallax-social a{
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    align-items: center;
    justify-content: center;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.ev-parallax-social a:hover{
    background: #ffffff;
    color: #061f32;
    border-color: #ffffff;
}
@media (max-width: 768px){
    .ev-parallax{ min-height: 520px; }
    body .ev-parallax .ev-parallax-quote{ font-size: 40px !important; }
}

/* ===== Footer profesional ===== */
.ev-footer{
    background: #061f32;
    color: rgba(255,255,255,0.75);
    padding: 80px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ev-footer-inner{
    max-width: 1320px;
    margin: 0 auto;
}
.ev-footer-grid{
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}
.ev-footer-logo{
    height: 42px;
    width: auto;
    display: block;
    margin-bottom: 18px;
}
.ev-footer-claim{
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 360px;
}
.ev-footer-title{
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ffffff !important;
    margin: 0 0 18px 0 !important;
}
.ev-footer-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ev-footer-list li{
    list-style: none;
    margin-bottom: 12px;
    font-size: 14px;
}
.ev-footer-list a{
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 200ms ease;
}
.ev-footer-list a:hover{ color: #2e6da5; }
.ev-footer-label{
    display: block;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
    font-weight: 600;
}
.ev-footer-socials{
    display: flex;
    gap: 8px;
    margin-top: 6px;
}
.ev-footer-socials a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.ev-footer-socials a:hover{
    background: #2e6da5;
    border-color: #2e6da5;
    color: #ffffff;
}
.ev-footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.ev-footer-credits a{
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 200ms ease;
}
.ev-footer-credits a:hover{ color: #2e6da5; }
@media (max-width: 991px){
    .ev-footer-grid{
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 575px){
    .ev-footer{ padding: 60px 18px 24px; }
    .ev-footer-grid{
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }
    .ev-footer-bottom{ justify-content: center; text-align: center; }
}

/* ===== CTA debajo de los videos ===== */
.ev-videos-cta{
    text-align: center;
    margin-top: 18px;
    padding: 18px 16px 0;
}
.ev-videos-cta-text{
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    line-height: 1.3;
    color: #262626;
    margin: 0 0 16px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.ev-videos-cta-text strong{
    color: #2e6da5;
    font-weight: 700;
}
.ev-videos-cta-btn{
    display: inline-flex;
    align-items: center;
    background: #2e6da5;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 200ms ease;
}
.ev-videos-cta-btn:hover{
    background: #1f5184;
    color: #ffffff !important;
    text-decoration: none;
}
@media (max-width: 575px){
    .ev-videos-cta-text{ font-size: 18px; }
}

/* ===== Compatibilidad con Lenis (smooth scroll) ===== */
html.lenis,
html.lenis body{ height: auto; }
.lenis.lenis-smooth{ scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent]{ overscroll-behavior: contain; }
.lenis.lenis-stopped{ overflow: hidden; }
