﻿/* =========================================================
   NASA SISTEMAS INFORMÁTICOS
   Estilos generales del sitio
========================================================= */

:root {
    --nasa-bg: #070b12;
    --nasa-bg-2: #0d1420;
    --nasa-bg-3: #111b2a;
    --nasa-card: rgba(18, 29, 44, 0.82);
    --nasa-card-hover: rgba(24, 39, 59, 0.95);
    --nasa-primary: #32b7ff;
    --nasa-primary-light: #73d1ff;
    --nasa-primary-dark: #0088d4;
    --nasa-text: #f2f7fb;
    --nasa-text-soft: #aebccc;
    --nasa-border: rgba(255, 255, 255, 0.09);
    --nasa-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   GENERAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at 80% 10%, rgba(50, 183, 255, 0.09), transparent 30%), radial-gradient(circle at 10% 50%, rgba(0, 136, 212, 0.05), transparent 30%), var(--nasa-bg);
    color: var(--nasa-text);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

main {
    min-height: 70vh;
}

section {
    scroll-margin-top: 90px;
}


/* =========================================================
   NAVBAR
========================================================= */

#navbarNASA {
    min-height: 82px;
    background: rgba(7, 11, 18, 0.18);
    border-bottom: 1px solid transparent;
    transition: background-color 0.30s ease, box-shadow 0.30s ease, border-color 0.30s ease, min-height 0.30s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    #navbarNASA.navbar-scrolled {
        min-height: 72px;
        background: rgba(7, 11, 18, 0.95);
        border-bottom-color: var(--nasa-border);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }


/* =========================================================
   LOGO / MARCA
========================================================= */

.nasa-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: white !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.nasa-logo-text {
    display: block;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: 7px;
    color: white;
}

.nasa-logo-sub {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--nasa-primary-light);
    text-transform: uppercase;
}


/* =========================================================
   MENÚ
========================================================= */

#menuPrincipal .nav-link {
    position: relative;
    margin: 0 5px;
    padding: 10px 13px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    transition: color 0.20s ease;
}

    #menuPrincipal .nav-link:hover {
        color: white;
    }

    #menuPrincipal .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 3px;
        width: 0;
        height: 2px;
        background: var(--nasa-primary);
        transform: translateX(-50%);
        transition: width 0.25s ease;
        border-radius: 3px;
    }

    #menuPrincipal .nav-link:hover::after {
        width: 65%;
    }


/* =========================================================
   BOTÓN CONTACTO
========================================================= */

.btn-contacto {
    padding: 10px 20px;
    color: white !important;
    background: linear-gradient( 135deg, var(--nasa-primary-dark), var(--nasa-primary) );
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(50, 183, 255, 0.18);
    transition: transform 0.20s ease, box-shadow 0.20s ease;
}

    .btn-contacto:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 15px 38px rgba(50, 183, 255, 0.30);
    }


/* =========================================================
   BOTÓN NAVBAR MOBILE
========================================================= */

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 7px 9px;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(50, 183, 255, 0.15);
    }


/* =========================================================
   CLASES GENERALES PARA SECCIONES
========================================================= */

.nasa-section {
    position: relative;
    padding: 95px 0;
}

.nasa-section-dark {
    background: rgba(255, 255, 255, 0.015);
}

.nasa-section-alt {
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0) );
}


/* =========================================================
   TITULOS
========================================================= */

.nasa-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--nasa-primary-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nasa-title {
    margin: 0 0 20px;
    color: white;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -1px;
}

.nasa-title-small {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.nasa-subtitle {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--nasa-text-soft);
    font-size: 18px;
    line-height: 1.7;
}

.text-gradient {
    color: var(--nasa-primary);
    background: linear-gradient( 90deg, #ffffff, var(--nasa-primary-light) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================================
   TARJETAS
========================================================= */

.nasa-card {
    position: relative;
    height: 100%;
    padding: 28px;
    background: var(--nasa-card);
    border: 1px solid var(--nasa-border);
    border-radius: 20px;
    box-shadow: var(--nasa-shadow);
    overflow: hidden;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .nasa-card:hover {
        transform: translateY(-7px);
        background: var(--nasa-card-hover);
        border-color: rgba(50, 183, 255, 0.32);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38), 0 0 35px rgba(50, 183, 255, 0.05);
    }

    .nasa-card::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        top: -90px;
        right: -80px;
        background: radial-gradient( circle, rgba(50, 183, 255, 0.18), transparent 70% );
    }

.nasa-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--nasa-primary-light);
    background: rgba(50, 183, 255, 0.10);
    border: 1px solid rgba(50, 183, 255, 0.20);
    font-size: 27px;
}

.nasa-card h3 {
    margin-bottom: 12px;
    color: white;
    font-size: 20px;
    font-weight: 650;
}

.nasa-card p {
    margin-bottom: 0;
    color: var(--nasa-text-soft);
    font-size: 15px;
}


/* =========================================================
   BOTONES GENERALES
========================================================= */

.btn-nasa-primary {
    padding: 13px 25px;
    color: white;
    background: linear-gradient( 135deg, var(--nasa-primary-dark), var(--nasa-primary) );
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 650;
    box-shadow: 0 12px 32px rgba(50, 183, 255, 0.19);
    transition: transform 0.20s ease, box-shadow 0.20s ease;
}

    .btn-nasa-primary:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 16px 38px rgba(50, 183, 255, 0.30);
    }

.btn-nasa-outline {
    padding: 12px 25px;
    color: white;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.20s ease, border-color 0.20s ease, transform 0.20s ease;
}

    .btn-nasa-outline:hover {
        color: white;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(50, 183, 255, 0.45);
        transform: translateY(-2px);
    }


/* =========================================================
   IMÁGENES
========================================================= */

.nasa-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--nasa-border);
    box-shadow: var(--nasa-shadow);
}

.nasa-image-wrapper {
    position: relative;
}

    .nasa-image-wrapper::before {
        content: "";
        position: absolute;
        left: -25px;
        bottom: -25px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(50, 183, 255, 0.12);
        filter: blur(45px);
        z-index: -1;
    }


/* =========================================================
   CTA
========================================================= */

.nasa-cta {
    position: relative;
    padding: 55px;
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid rgba(50, 183, 255, 0.18);
    background: radial-gradient( circle at 90% 50%, rgba(50, 183, 255, 0.15), transparent 35% ), linear-gradient( 135deg, #101b2a, #0a111c );
    box-shadow: var(--nasa-shadow);
}

    .nasa-cta::after {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 280px;
        height: 280px;
        border: 1px solid rgba(50, 183, 255, 0.10);
        border-radius: 50%;
    }


/* =========================================================
   FOOTER
========================================================= */

.footer-nasa {
    padding: 70px 0 25px;
    background: #05080d;
    border-top: 1px solid var(--nasa-border);
}

.footer-brand {
    color: white;
    font-size: 31px;
    font-weight: 800;
    letter-spacing: 8px;
}

.footer-brand-sub {
    margin-top: 5px;
    color: var(--nasa-primary-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.footer-text {
    max-width: 440px;
    color: #8797a8;
    font-size: 14px;
}

.footer-nasa h5 {
    margin-bottom: 22px;
    color: white;
    font-size: 15px;
    font-weight: 650;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        color: #8e9eae;
        font-size: 14px;
        transition: color 0.20s ease;
    }

        .footer-links a:hover {
            color: var(--nasa-primary-light);
        }

.footer-contact p {
    margin-bottom: 13px;
    color: #8e9eae;
    font-size: 14px;
}

.footer-contact i {
    display: inline-block;
    width: 25px;
    color: var(--nasa-primary);
}

.footer-line {
    margin: 45px 0 23px;
    border-color: rgba(255, 255, 255, 0.09);
    opacity: 1;
}

.footer-copy {
    margin: 0;
    color: #667483;
    font-size: 12px;
}


/* =========================================================
   FORMULARIOS
========================================================= */

.form-control,
.form-select {
    min-height: 48px;
    color: white;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding-left: 15px;
    transition: border-color 0.20s ease, box-shadow 0.20s ease, background-color 0.20s ease;
}

    .form-control:focus,
    .form-select:focus {
        color: white;
        background: rgba(255, 255, 255, 0.055);
        border-color: var(--nasa-primary);
        box-shadow: 0 0 0 4px rgba(50, 183, 255, 0.10);
    }

    .form-control::placeholder {
        color: #718294;
    }

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-label {
    margin-bottom: 7px;
    color: #c7d1db;
    font-size: 14px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #05080d;
}

::-webkit-scrollbar-thumb {
    background: #25374a;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #315069;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    #navbarNASA {
        background: rgba(7, 11, 18, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    #menuPrincipal {
        margin-top: 15px;
        padding: 12px 0 20px;
    }

        #menuPrincipal .nav-link {
            margin: 2px 0;
            padding: 10px 4px;
        }

            #menuPrincipal .nav-link::after {
                display: none;
            }

        #menuPrincipal .btn-contacto {
            display: block;
            margin-top: 10px;
            text-align: center;
        }

    .nasa-section {
        padding: 75px 0;
    }
}


@media (max-width: 767.98px) {

    .nasa-logo-text {
        font-size: 25px;
        letter-spacing: 6px;
    }

    .nasa-logo-sub {
        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .nasa-section {
        padding: 62px 0;
    }

    .nasa-subtitle {
        font-size: 16px;
    }

    .nasa-card {
        padding: 24px;
    }

    .nasa-cta {
        padding: 35px 25px;
    }

    .footer-nasa {
        padding-top: 55px;
    }
}


@media (max-width: 575.98px) {

    #navbarNASA {
        min-height: 72px;
    }

    .nasa-logo-text {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .nasa-logo-sub {
        margin-top: 4px;
        font-size: 7px;
        letter-spacing: 1.3px;
    }

    .nasa-section {
        padding: 55px 0;
    }

    .nasa-card {
        border-radius: 16px;
    }
}
/* =========================================================
   HERO
========================================================= */

.hero-nasa {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 75% 35%, rgba(50, 183, 255, 0.13), transparent 28%), radial-gradient(circle at 15% 70%, rgba(0, 136, 212, 0.08), transparent 30%), linear-gradient(135deg, #070b12 0%, #0b1320 60%, #07111b 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .19;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-content {
    padding-top: 90px;
}

.hero-title {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(3rem, 5.5vw, 5.4rem);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 800;
    background: linear-gradient(100deg, #ffffff 20%, #9edfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-bottom: 18px;
    color: #d9e6f0;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 400;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--nasa-text-soft);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    color: #8fa2b5;
    font-size: 13px;
}

    .hero-features i {
        margin-right: 6px;
        color: var(--nasa-primary);
    }


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(50,183,255,.12);
    filter: blur(80px);
}

.hero-image-frame {
    position: relative;
    width: 82%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(0,0,0,.50);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.hero-image {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
    padding: 13px 16px;
    background: rgba(11,20,32,.88);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(15px);
}

    .floating-card strong,
    .floating-card span {
        display: block;
    }

    .floating-card strong {
        color: white;
        font-size: 14px;
    }

    .floating-card span {
        color: #8da0b4;
        font-size: 11px;
    }

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    border-radius: 10px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.11);
}

.floating-card-1 {
    top: 15%;
    left: 0;
}

.floating-card-2 {
    right: 0;
    top: 48%;
}

.floating-card-3 {
    left: 12%;
    bottom: 8%;
}


/* =========================================================
   PRESENTACIÓN
========================================================= */

.institutional-visual {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
    background: radial-gradient(circle at 70% 30%, rgba(50,183,255,.12), transparent 35%), #0b131e;
    border: 1px solid var(--nasa-border);
    border-radius: 26px;
    box-shadow: var(--nasa-shadow);
}

.institutional-logo {
    color: white;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 14px;
}

.institutional-sub {
    margin-top: 5px;
    color: var(--nasa-primary-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.institutional-line {
    width: 80px;
    height: 3px;
    margin: 30px 0;
    border-radius: 10px;
    background: var(--nasa-primary);
}

.institutional-tech {
    display: flex;
    gap: 28px;
    color: #62798e;
    font-size: 27px;
}

.presentation-points {
    margin-top: 32px;
}

.presentation-point {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

    .presentation-point > i {
        margin-top: 3px;
        color: var(--nasa-primary);
        font-size: 21px;
    }

    .presentation-point strong,
    .presentation-point span {
        display: block;
    }

    .presentation-point strong {
        margin-bottom: 3px;
        color: white;
    }

    .presentation-point span {
        color: #8799aa;
        font-size: 14px;
    }


/* =========================================================
   SECCIONES
========================================================= */

.section-heading {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   ENLACE TARJETAS
========================================================= */

.nasa-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: var(--nasa-primary-light);
    font-size: 13px;
    font-weight: 600;
}

    .nasa-card-link i {
        transition: transform .2s ease;
    }

    .nasa-card-link:hover {
        color: white;
    }

        .nasa-card-link:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   CONTACTO
========================================================= */

.contact-section {
    background: radial-gradient(circle at 80% 50%, rgba(50,183,255,.06), transparent 30%);
}

.contact-benefits {
    margin-top: 38px;
}

.contact-benefit {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.09);
    border: 1px solid rgba(50,183,255,.16);
    border-radius: 13px;
}

.contact-benefit strong,
.contact-benefit span {
    display: block;
}

.contact-benefit strong {
    color: white;
    margin-bottom: 4px;
}

.contact-benefit span {
    color: #8495a7;
    font-size: 13px;
    line-height: 1.5;
}

.contact-panel {
    padding: 38px;
    background: rgba(14,24,37,.88);
    border: 1px solid var(--nasa-border);
    border-radius: 22px;
    box-shadow: var(--nasa-shadow);
}

    .contact-panel > h3 {
        margin-bottom: 5px;
        color: white;
        font-size: 22px;
    }

    .contact-panel > p {
        margin-bottom: 27px;
        color: #8799aa;
        font-size: 14px;
    }

.contact-status {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px;
    margin-bottom: 22px;
    border-radius: 12px;
}

    .contact-status i {
        margin-top: 2px;
        font-size: 19px;
    }

    .contact-status strong,
    .contact-status span {
        display: block;
    }

    .contact-status span {
        margin-top: 2px;
        font-size: 13px;
    }

.contact-status-ok {
    color: #b9f6d2;
    background: rgba(40,180,100,.09);
    border: 1px solid rgba(40,180,100,.20);
}

.contact-status-error {
    color: #ffc8c8;
    background: rgba(220,70,70,.09);
    border: 1px solid rgba(220,70,70,.20);
}

.hp-field {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* =========================================================
   RESPONSIVE HERO
========================================================= */

@media (max-width: 991.98px) {

    .hero-content {
        padding-top: 130px;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
        margin-bottom: 60px;
    }

    .hero-image-frame {
        width: 75%;
        transform: none;
    }
}


@media (max-width: 767.98px) {

    .hero-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-image-frame {
        width: 90%;
    }

    .hero-image {
        min-height: 330px;
    }

    .floating-card {
        transform: scale(.88);
    }

    .floating-card-1 {
        left: -15px;
    }

    .floating-card-2 {
        right: -15px;
    }

    .institutional-visual {
        min-height: 320px;
        padding: 35px;
    }

    .contact-panel {
        padding: 26px;
    }
}


@media (max-width: 575.98px) {

    .hero-title {
        font-size: 2.55rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        gap: 10px 17px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-image-frame {
        width: 96%;
    }

    .floating-card {
        min-width: 145px;
        padding: 10px;
    }

    .floating-card-1 {
        top: 6%;
    }

    .floating-card-2 {
        top: 52%;
    }

    .floating-card-3 {
        bottom: 2%;
    }
}
/* =========================================================
   TARJETAS DE SOLUCIONES / SERVICIOS
========================================================= */

.solution-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: linear-gradient( 180deg, rgba(20, 33, 49, .95), rgba(10, 18, 29, .98) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(0,0,0,.28);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}


    .solution-card:hover {
        transform: translateY(-8px);
        border-color: rgba(50,183,255,.38);
        box-shadow: 0 30px 75px rgba(0,0,0,.38), 0 0 35px rgba(50,183,255,.06);
    }


/* =========================================================
   IMAGEN
========================================================= */

.solution-card-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #09121d;
}


    .solution-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease, filter .5s ease;
    }


.solution-card:hover .solution-card-image img {
    transform: scale(1.06);
    filter: brightness(1.08);
}


.solution-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(6,12,20,0) 30%, rgba(8,15,24,.92) 100% );
}


/* =========================================================
   PLACEHOLDER SI NO HAY IMAGEN
========================================================= */

.solution-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient( circle, rgba(50,183,255,.15), transparent 55% ), #09121d;
}


    .solution-card-placeholder > i {
        color: rgba(90,200,255,.65);
        font-size: 58px;
    }


/* =========================================================
   CUERPO
========================================================= */

.solution-card-body {
    position: relative;
    padding: 28px;
}


.solution-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-top: -50px;
    margin-bottom: 19px;
    position: relative;
    z-index: 3;
    color: var(--nasa-primary-light);
    background: linear-gradient( 135deg, #0e2538, #0b1927 );
    border: 1px solid rgba(50,183,255,.25);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
    font-size: 22px;
}


.solution-card h3 {
    margin-bottom: 12px;
    color: white;
    font-size: 20px;
    font-weight: 650;
}


.solution-card p {
    min-height: 73px;
    margin-bottom: 0;
    color: #8ea0b2;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   LINK
========================================================= */

.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: var(--nasa-primary-light);
    font-size: 13px;
    font-weight: 650;
    transition: color .2s ease;
}


    .solution-card-link i {
        transition: transform .2s ease;
    }


    .solution-card-link:hover {
        color: white;
    }


        .solution-card-link:hover i {
            transform: translateX(5px);
        }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .solution-card-image {
        height: 210px;
    }

    .solution-card p {
        min-height: auto;
    }
}
/* =========================================================
   PÁGINA SOLUCIONES
   Agregar al final de Content\nasasi.css
========================================================= */

.internal-hero {
    position: relative;
    overflow: hidden;
    padding: 175px 0 95px;
    background: radial-gradient(circle at 75% 30%, rgba(50, 183, 255, .12), transparent 32%), linear-gradient(135deg, #070b12, #0b1623);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.internal-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 55px 55px;
}

.internal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.internal-hero-title {
    margin-bottom: 20px;
    color: white;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.internal-hero-text {
    max-width: 760px;
    margin: 0;
    color: var(--nasa-text-soft);
    font-size: 19px;
    line-height: 1.7;
}

.solution-page-card {
    height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 30, 45, .96), rgba(9, 17, 27, .98));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 23px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .30);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

    .solution-page-card:hover {
        transform: translateY(-8px);
        border-color: rgba(50, 183, 255, .35);
        box-shadow: 0 30px 70px rgba(0, 0, 0, .40);
    }

.solution-page-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #08111c;
}

    .solution-page-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.solution-page-card:hover .solution-page-image img {
    transform: scale(1.06);
}

.solution-page-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 22, 0) 35%, rgba(7, 13, 22, .84) 100%);
}

.solution-page-body {
    position: relative;
    padding: 30px;
}

.solution-page-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-top: -55px;
    margin-bottom: 21px;
    color: var(--nasa-primary-light);
    font-size: 23px;
    background: linear-gradient(135deg, #0f2940, #0a1927);
    border: 1px solid rgba(50, 183, 255, .28);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .40);
}

.solution-page-card h2 {
    margin: 0 0 13px;
    color: white;
    font-size: 21px;
    font-weight: 680;
}

.solution-page-card p {
    min-height: 92px;
    margin: 0;
    color: #8ea0b2;
    font-size: 14px;
    line-height: 1.7;
}

.solution-page-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--nasa-primary-light);
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}

    .solution-page-link i {
        transition: transform .2s ease;
    }

    .solution-page-link:hover {
        color: white;
    }

        .solution-page-link:hover i {
            transform: translateX(5px);
        }

.alert-nasa {
    padding: 20px 22px;
    color: #ffd0d0;
    background: rgba(220, 70, 70, .08);
    border: 1px solid rgba(220, 70, 70, .18);
    border-radius: 14px;
}

@media (max-width: 991.98px) {
    .internal-hero {
        padding: 145px 0 75px;
    }
}

@media (max-width: 767.98px) {
    .internal-hero {
        padding: 125px 0 65px;
    }

    .internal-hero-text {
        font-size: 16px;
    }

    .solution-page-image {
        height: 210px;
    }

    .solution-page-card p {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .internal-hero-title {
        letter-spacing: -1px;
    }

    .solution-page-body {
        padding: 25px;
    }
}
/* =========================================================
   DETALLE DE SOLUCIÓN
   Agregar al final de Content\nasasi.css
========================================================= */

.solution-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 155px 0 95px;
    background: radial-gradient( circle at 75% 35%, rgba(50,183,255,.14), transparent 28% ), linear-gradient( 135deg, #070b12, #0a1522 );
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.solution-detail-grid {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: linear-gradient( rgba(255,255,255,.035) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.035) 1px, transparent 1px );
    background-size: 55px 55px;
}

.solution-back-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 35px;
    color: #8194a7;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease;
}

    .solution-back-link:hover {
        color: var(--nasa-primary-light);
    }

.solution-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.09);
    border: 1px solid rgba(50,183,255,.20);
    border-radius: 16px;
    font-size: 27px;
}

.solution-detail-title {
    max-width: 780px;
    margin: 0 0 18px;
    color: white;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
}

.solution-detail-subtitle {
    margin: 0 0 18px;
    color: #d9e6f0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.45;
}

.solution-detail-intro {
    max-width: 680px;
    margin: 0 0 30px;
    color: var(--nasa-text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.solution-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.solution-detail-image-wrapper {
    position: relative;
    max-width: 650px;
    margin-left: auto;
}

.solution-detail-glow {
    position: absolute;
    inset: 12%;
    background: rgba(50,183,255,.16);
    border-radius: 50%;
    filter: blur(75px);
}

.solution-detail-image {
    position: relative;
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 26px;
    box-shadow: 0 35px 90px rgba(0,0,0,.48);
}


/* =========================================================
   TEXTO DE DETALLE
========================================================= */

.solution-detail-text {
    max-width: 780px;
}

    .solution-detail-text p {
        margin-bottom: 22px;
        color: #9bacbc;
        font-size: 16px;
        line-height: 1.9;
    }


/* =========================================================
   DESTACADO
========================================================= */

.solution-highlight-box {
    padding: 34px;
    background: radial-gradient( circle at 80% 10%, rgba(50,183,255,.10), transparent 38% ), rgba(16,27,41,.82);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    box-shadow: var(--nasa-shadow);
}

.solution-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.10);
    border: 1px solid rgba(50,183,255,.20);
    border-radius: 14px;
    font-size: 23px;
}

.solution-highlight-box h3 {
    margin-bottom: 13px;
    color: white;
    font-size: 21px;
}

.solution-highlight-box p {
    margin: 0;
    color: #8fa0b1;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CARACTERÍSTICAS
========================================================= */

.solution-feature-card {
    height: 100%;
    padding: 27px;
    background: rgba(17,29,44,.76);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

    .solution-feature-card:hover {
        transform: translateY(-5px);
        background: rgba(21,36,54,.92);
        border-color: rgba(50,183,255,.28);
    }

.solution-feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    margin-bottom: 18px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.10);
    border-radius: 11px;
    font-size: 20px;
}

.solution-feature-card h3 {
    margin-bottom: 9px;
    color: white;
    font-size: 17px;
    font-weight: 650;
}

.solution-feature-card p {
    margin: 0;
    color: #8799aa;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   NO ENCONTRADA
========================================================= */

.solution-not-found {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
}

.solution-not-found-icon {
    margin-bottom: 20px;
    color: var(--nasa-primary);
    font-size: 55px;
}

.solution-not-found h1 {
    margin-bottom: 12px;
    color: white;
    font-size: 36px;
    font-weight: 750;
}

.solution-not-found p {
    margin-bottom: 28px;
    color: var(--nasa-text-soft);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .solution-detail-hero {
        padding: 135px 0 80px;
    }

    .solution-detail-image-wrapper {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {

    .solution-detail-title {
        letter-spacing: -1.5px;
    }

    .solution-detail-image {
        min-height: 330px;
    }

    .solution-detail-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {

    .solution-detail-hero {
        padding: 120px 0 65px;
    }

    .solution-detail-title {
        font-size: 2.65rem;
    }

    .solution-detail-image {
        min-height: 280px;
    }
}
/* =========================================================
   SERVICIOS - LISTADO Y DETALLE
   Agregar al final de Content\nasasi.css
========================================================= */


/* =========================================================
   LISTADO DE SERVICIOS
========================================================= */

.service-page-card {
    position: relative;
    height: 100%;
    min-height: 315px;
    padding: 32px;
    overflow: hidden;
    background: radial-gradient( circle at 100% 0, rgba(50,183,255,.09), transparent 35% ), linear-gradient( 180deg, rgba(18,30,45,.96), rgba(9,17,27,.98) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(0,0,0,.28);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

    .service-page-card:hover {
        transform: translateY(-7px);
        border-color: rgba(50,183,255,.34);
        box-shadow: 0 30px 70px rgba(0,0,0,.38);
    }

.service-page-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.09);
    border: 1px solid rgba(50,183,255,.20);
    border-radius: 16px;
    font-size: 26px;
}

.service-page-card h2 {
    margin-bottom: 14px;
    color: white;
    font-size: 22px;
    font-weight: 680;
}

.service-page-card p {
    min-height: 85px;
    margin: 0;
    color: #8fa0b1;
    font-size: 14px;
    line-height: 1.75;
}

.service-page-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--nasa-primary-light);
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}

    .service-page-link i {
        transition: transform .2s ease;
    }

    .service-page-link:hover {
        color: white;
    }

        .service-page-link:hover i {
            transform: translateX(5px);
        }


/* =========================================================
   PROCESO
========================================================= */

.service-process-card {
    height: 100%;
    padding: 28px;
    background: rgba(15,27,41,.78);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
}

.service-process-number {
    margin-bottom: 20px;
    color: var(--nasa-primary);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 2px;
}

.service-process-card h3 {
    margin-bottom: 11px;
    color: white;
    font-size: 19px;
}

.service-process-card p {
    margin: 0;
    color: #899aaa;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   DETALLE DE SERVICIO - HERO
========================================================= */

.service-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 155px 0 95px;
    background: radial-gradient( circle at 78% 34%, rgba(50,183,255,.14), transparent 29% ), linear-gradient( 135deg, #070b12, #0a1522 );
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.service-detail-grid {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: linear-gradient( rgba(255,255,255,.035) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.035) 1px, transparent 1px );
    background-size: 55px 55px;
    pointer-events: none;
}

.service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 35px;
    color: #8194a7;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease;
}

    .service-back-link:hover {
        color: var(--nasa-primary-light);
    }

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.09);
    border: 1px solid rgba(50,183,255,.20);
    border-radius: 16px;
    font-size: 27px;
}

.service-detail-title {
    max-width: 800px;
    margin: 0 0 18px;
    color: white;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
}

.service-detail-subtitle {
    max-width: 760px;
    margin: 0 0 18px;
    color: #d9e6f0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.45;
}

.service-detail-intro {
    max-width: 720px;
    margin: 0 0 30px;
    color: var(--nasa-text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   VISUAL DEL SERVICIO
========================================================= */

.service-detail-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
}

.service-detail-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(50,183,255,.14);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.service-detail-visual-card {
    position: relative;
    width: 100%;
    max-width: 390px;
    padding: 50px 38px;
    background: linear-gradient( 145deg, rgba(19,34,51,.96), rgba(7,15,25,.98) );
    border: 1px solid rgba(50,183,255,.18);
    border-radius: 28px;
    box-shadow: 0 35px 90px rgba(0,0,0,.48);
}

.service-detail-visual-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 35px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.10);
    border: 1px solid rgba(50,183,255,.22);
    border-radius: 20px;
    font-size: 34px;
}

.service-detail-visual-label {
    margin-bottom: 10px;
    color: var(--nasa-primary);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 2px;
}

.service-detail-visual-title {
    color: white;
    font-size: 28px;
    font-weight: 730;
    line-height: 1.2;
}

.service-detail-visual-line {
    width: 65px;
    height: 2px;
    margin: 25px 0;
    background: var(--nasa-primary);
}

.service-detail-visual-small {
    color: #8193a5;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   TEXTO / DESTACADO
========================================================= */

.service-detail-text {
    max-width: 780px;
}

    .service-detail-text p {
        margin-bottom: 22px;
        color: #9bacbc;
        font-size: 16px;
        line-height: 1.9;
    }

.service-highlight-box {
    padding: 34px;
    background: radial-gradient( circle at 80% 10%, rgba(50,183,255,.10), transparent 38% ), rgba(16,27,41,.82);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    box-shadow: var(--nasa-shadow);
}

.service-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.10);
    border: 1px solid rgba(50,183,255,.20);
    border-radius: 14px;
    font-size: 23px;
}

.service-highlight-box h3 {
    margin-bottom: 13px;
    color: white;
    font-size: 21px;
}

.service-highlight-box p {
    margin: 0;
    color: #8fa0b1;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CARACTERÍSTICAS
========================================================= */

.service-feature-card {
    height: 100%;
    padding: 27px;
    background: rgba(17,29,44,.76);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

    .service-feature-card:hover {
        transform: translateY(-5px);
        background: rgba(21,36,54,.92);
        border-color: rgba(50,183,255,.28);
    }

.service-feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    margin-bottom: 18px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.10);
    border-radius: 11px;
    font-size: 20px;
}

.service-feature-card h3 {
    margin-bottom: 9px;
    color: white;
    font-size: 17px;
    font-weight: 650;
}

.service-feature-card p {
    margin: 0;
    color: #8799aa;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .service-detail-hero {
        padding: 135px 0 80px;
    }

    .service-detail-visual {
        min-height: 360px;
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {

    .service-page-card p {
        min-height: auto;
    }

    .service-detail-title {
        letter-spacing: -1.5px;
    }

    .service-detail-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {

    .service-detail-hero {
        padding: 120px 0 65px;
    }

    .service-detail-title {
        font-size: 2.65rem;
    }

    .service-detail-visual {
        min-height: auto;
    }

    .service-detail-visual-card {
        padding: 38px 28px;
    }
}
/* =========================================================
   NOSOTROS
   Agregar al final de Content\nasasi.css
========================================================= */


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 155px 0 95px;
    background: radial-gradient( circle at 75% 30%, rgba(50,183,255,.14), transparent 30% ), linear-gradient( 135deg, #070b12, #0a1522 );
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: linear-gradient( rgba(255,255,255,.035) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.035) 1px, transparent 1px );
    background-size: 55px 55px;
    pointer-events: none;
}

.about-hero-title {
    max-width: 780px;
    margin: 0 0 24px;
    color: white;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.about-hero-text {
    max-width: 690px;
    margin: 0 0 30px;
    color: var(--nasa-text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero-image-wrapper {
    position: relative;
    max-width: 620px;
    margin-left: auto;
}

.about-hero-glow {
    position: absolute;
    inset: 14%;
    background: rgba(50,183,255,.16);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.about-hero-image {
    position: relative;
    display: block;
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 26px;
    box-shadow: 0 35px 90px rgba(0,0,0,.48);
}


/* =========================================================
   PRESENTACIÓN
========================================================= */

.about-subtitle {
    margin: -8px 0 22px;
    color: var(--nasa-primary-light);
    font-size: 16px;
    font-weight: 600;
}

.about-main-text {
    max-width: 800px;
}

    .about-main-text p {
        margin-bottom: 22px;
        color: #9bacbc;
        font-size: 16px;
        line-height: 1.9;
    }

.about-focus-box {
    padding: 34px;
    background: radial-gradient( circle at 80% 10%, rgba(50,183,255,.10), transparent 38% ), rgba(16,27,41,.82);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    box-shadow: var(--nasa-shadow);
}

.about-focus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.10);
    border: 1px solid rgba(50,183,255,.20);
    border-radius: 14px;
    font-size: 23px;
}

.about-focus-box h3 {
    margin-bottom: 13px;
    color: white;
    font-size: 21px;
}

.about-focus-box p {
    margin: 0;
    color: #8fa0b1;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   VALORES
========================================================= */

.about-value-card {
    height: 100%;
    padding: 28px;
    background: rgba(17,29,44,.76);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

    .about-value-card:hover {
        transform: translateY(-5px);
        background: rgba(21,36,54,.92);
        border-color: rgba(50,183,255,.28);
    }

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.10);
    border: 1px solid rgba(50,183,255,.18);
    border-radius: 13px;
    font-size: 22px;
}

.about-value-card h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 18px;
    font-weight: 650;
}

.about-value-card p {
    margin: 0;
    color: #8799aa;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PRINCIPIOS
========================================================= */

.about-principle-card {
    height: 100%;
    padding: 32px;
    background: linear-gradient( 180deg, rgba(18,30,45,.94), rgba(9,17,27,.98) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 21px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    transition: transform .3s ease, border-color .3s ease;
}

    .about-principle-card:hover {
        transform: translateY(-6px);
        border-color: rgba(50,183,255,.30);
    }

.about-principle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 25px;
    color: var(--nasa-primary-light);
    background: rgba(50,183,255,.09);
    border: 1px solid rgba(50,183,255,.20);
    border-radius: 16px;
    font-size: 25px;
}

.about-principle-card h3 {
    margin-bottom: 12px;
    color: white;
    font-size: 20px;
}

.about-principle-card p {
    margin: 0;
    color: #8fa0b1;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .about-hero {
        padding: 135px 0 80px;
    }

    .about-hero-image-wrapper {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {

    .about-hero-title {
        letter-spacing: -1.5px;
    }

    .about-hero-image {
        min-height: 330px;
    }

    .about-hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {

    .about-hero {
        padding: 120px 0 65px;
    }

    .about-hero-title {
        font-size: 2.65rem;
    }

    .about-hero-image {
        min-height: 280px;
    }
}
