/* --- Hero --- */
.se-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    margin-top: -110px;
    padding-top: 110px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.se-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(5,15,30,0.93) 38%, rgba(0,70,120,0.60) 100%);
}
.se-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 70px 60px;
}
.se-badge {
    display: inline-block;
    background: rgba(0,174,239,0.18);
    color: #00AEEF;
    border: 1px solid rgba(0,174,239,0.45);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.se-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin: 0 0 22px;
}
.se-hero-content h1 em { font-style: normal; color: #00AEEF; }
.se-hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 38px;
    max-width: 580px;
}
.se-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00AEEF;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,174,239,0.38);
    box-sizing: border-box;
}
.se-btn-primary:hover {
    background: #008cc0;
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(0,174,239,0.48);
}
.se-btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.se-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 60px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.se-hero-scroll span {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

/* --- Stats Strip --- */
.se-stats {
    background: #0A2540;
    padding: 0 !important;
}
.se-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.se-stat {
    padding: 38px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.09);
}
.se-stat:last-child { border-right: none; }
.se-stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #00AEEF;
    line-height: 1;
    margin-bottom: 8px;
}
.se-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* --- Services Section --- */
.se-services {
    padding: 100px 40px !important;
    background: #f1f5f9;
}
.se-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.se-label {
    display: inline-block;
    color: #00AEEF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}
.se-section-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.18;
    margin: 0 0 16px;
}
.se-section-header p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

.se-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
}
.se-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 30px 34px;
    box-shadow: 0 2px 16px rgba(10,37,64,0.06);
    border: 1px solid #e4ecf4;
    transition: all 0.35s cubic-bezier(.25,.8,.25,1);
    position: relative;
    overflow: hidden;
}
.se-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A2540, #00AEEF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.se-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 55px rgba(10,37,64,0.13);
    border-color: #b8d8ef;
}
.se-card:hover::after { transform: scaleX(1); }
.se-card-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(0,174,239,0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.se-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.se-card-icon i { font-size: 26px; color: #0A2540; }
.se-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0A2540;
    margin: 0 0 12px;
    line-height: 1.3;
}
.se-card p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.72;
    margin: 0;
}
.se-card-dark {
    background: linear-gradient(145deg, #07192e, #0d3460);
    border-color: transparent;
}
.se-card-dark:hover { border-color: rgba(0,174,239,0.3); }
.se-card-dark .se-card-icon { background: rgba(255,255,255,0.1); }
.se-card-dark .se-card-icon i { color: #ffffff; }
.se-card-dark h3 { color: #ffffff; }
.se-card-dark p { color: rgba(255,255,255,0.65); }
.se-card-dark .se-card-num { color: rgba(255,255,255,0.05); }

/* --- Benefits --- */
.se-benefits {
    padding: 100px 40px !important;
    background: #ffffff;
}
.se-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 64px auto 0;
}
.se-benefit { display: flex; gap: 20px; align-items: flex-start; }
.se-benefit-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0A2540, #1d4d80);
    display: flex;
    align-items: center;
    justify-content: center;
}
.se-benefit-icon i { font-size: 23px; color: #ffffff; }
.se-benefit-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0A2540;
    margin: 0 0 8px;
}
.se-benefit-text p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.68;
    margin: 0;
}

/* --- Gallery --- */
.se-gallery {
    padding: 0 40px 100px !important;
    background: #ffffff;
}
.se-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
.se-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.se-gallery-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.se-gallery-item:hover img { transform: scale(1.05); }
.se-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,37,64,0.45), transparent 55%);
    pointer-events: none;
}

/* --- CTA --- */
.se-cta {
    padding: 110px 40px !important;
    background: linear-gradient(135deg, #04111f 0%, #0A2540 55%, #0e3d72 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.se-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,174,239,0.13), transparent 68%);
    pointer-events: none;
}
.se-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,174,239,0.09), transparent 68%);
    pointer-events: none;
}
.se-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.se-cta-inner .se-label { margin-bottom: 16px; }
.se-cta-inner h2 {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin: 0 0 18px;
}
.se-cta-inner > p {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin: 0 0 42px;
}
.se-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.se-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(0,174,239,0.7);
    color: #00AEEF;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.se-btn-outline:hover {
    background: #00AEEF;
    color: #ffffff;
    border-color: #00AEEF;
    transform: translateY(-3px);
}

@media (max-width: 960px) {
    .se-hero {
        margin-top: -98px;
        padding-top: 98px;
    }
    .se-hero-content h1 { font-size: 44px; }
    .se-hero-content { padding: 50px 30px; }
    .se-hero-scroll { left: 30px; }
    .se-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .se-stat:nth-child(2) { border-right: none; }
    .se-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .se-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .se-section-header h2 { font-size: 36px; }
    .se-cta-inner h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .se-hero {
        min-height: 82vh;
    }

    .se-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 36px 22px;
    }

    .se-hero-content h1 {
        font-size: 36px;
        line-height: 1.12;
    }

    .se-hero-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .se-services,
    .se-benefits,
    .se-gallery,
    .se-cta {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .se-section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 576px) {
    body.pagina-servicios {
        overflow-x: hidden;
    }

    .se-hero {
        min-height: 76vh;
        margin-top: -98px;
        padding-top: 98px;
    }
    .se-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 28px 20px;
    }
    .se-hero-content h1 { font-size: 30px; }
    .se-hero-content p { font-size: 15px; }
    .se-hero-scroll { display: none; }
    .se-stat-number { font-size: 34px; }
    .se-stat { padding: 26px 16px; }
    .se-services { padding: 60px 20px !important; }
    .se-cards-grid { grid-template-columns: 1fr; gap: 18px; }
    .se-section-header h2 { font-size: 27px; }
    .se-benefits { padding: 60px 20px !important; }
    .se-benefits-grid { grid-template-columns: 1fr; gap: 28px; }
    .se-gallery { padding: 0 20px 60px !important; }
    .se-gallery-grid { grid-template-columns: 1fr; }
    .se-gallery-item img { height: 220px; }
    .se-cta { padding: 70px 20px !important; }
    .se-cta-inner h2 { font-size: 28px; }
    .se-btn-primary,
    .se-btn-outline {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}
