/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0A1F44;
    color:#fff;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

/* ===== HEADER ===== */

.hero-header{
    background:#030e2a;
    text-align:center;
    padding:20px 0;
    position:relative;
    z-index:3000; /* 🔴 esto evita que se vea el menú detrás */
}

.logo{
    width:100%;
    max-width:700px;
    height:auto;
    display:block;
    margin:0 auto;
}

/* ===== NAV DESKTOP ===== */
.nav-links{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:20px;
}

.nav-links a{
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.nav-links a:hover{
    color:#00B4FF;
}

/* ===== BOTÓN HAMBURGUESA ===== */
.menu-toggle{
    display:none;
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    background:linear-gradient(135deg,#00B4FF,#007BFF);
    border-radius:50%;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:5px;
    box-shadow:0 4px 12px rgba(0,0,0,.35); /* sombra suave, sin aro gris */
    border:none; /* 🔥 elimina borde gris */
    z-index:3001;
}



.menu-toggle span{
    width:24px;
    height:3px;
    background:#fff;
    border-radius:3px;
}

/* ===== SLIDER ===== */
.slider{
    position:relative;
    width:100%;
    height:auto;
    aspect-ratio:16 / 9;
    overflow:hidden;
    margin-top:20px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:28px;
    max-width:1280px;
    margin-left:auto;
    margin-right:auto;
    box-shadow:
        0 30px 70px rgba(0,0,0,.38),
        0 0 0 1px rgba(255,255,255,0.04) inset;
}

.futuristic-slider{
    background:#0A1F44;
}

.slider-backdrop{
    position:absolute;
    inset:0;
    background:transparent;
    z-index:1;
}

.slider-backdrop::before{
    content:none;
}

.slider-backdrop::after{
    content:none;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transform:scale(1.03);
    transition:opacity .9s ease, transform 1.2s ease, visibility .9s ease;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-color:#08172f;
}

.slide.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}

.slide-overlay{
    position:absolute;
    inset:0;
    background:none;
}

.slide-grid{
    position:relative;
    z-index:2;
    height:100%;
    display:grid;
    grid-template-columns:minmax(0, 1.3fr) minmax(280px, .7fr);
    align-items:center;
    gap:32px;
    padding:70px 72px 88px;
}

.apple-grid{
    grid-template-columns:minmax(0, 1fr) minmax(260px, 360px);
    gap:40px;
}

.hero-panel{
    max-width:760px;
    padding:26px 26px 24px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:24px;
    background:#071330;
    backdrop-filter:none;
    box-shadow:0 20px 50px rgba(0,0,0,.24);
}

.apple-panel{
    max-width:560px;
    padding:22px 22px 22px 0;
    background:#0d2756;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 44px rgba(0,0,0,.18);
    border-radius:32px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
    padding:7px 12px;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:999px;
    background:rgba(255,255,255,0.06);
    color:#a7dbff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    box-shadow:0 10px 24px rgba(0,0,0,.14);
}

.hero-panel{
    position:relative;
}

.hero-panel h1,
.hero-panel h2{
    font-size:36px;
    line-height:1.12;
    margin-bottom:12px;
}

.hero-panel p{
    margin:0;
    max-width:460px;
    font-size:15px;
    line-height:1.4;
    color:rgba(255,255,255,.84);
}

.apple-panel h1,
.apple-panel h2{
    font-size:44px;
    line-height:1.05;
    letter-spacing:-0.03em;
    max-width:560px;
    text-shadow:none;
}

.apple-panel p{
    max-width:420px;
    font-size:16px;
    line-height:1.4;
    color:rgba(255,255,255,.88);
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:20px;
}

.btn-secondary{
    background:rgba(255,255,255,0.08);
    color:#fff;
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 12px 30px rgba(0,0,0,.14);
}

.btn-secondary:hover{
    background:rgba(0,180,255,0.14);
    color:#fff;
}

.info-panel{
    display:flex;
    flex-direction:column;
    gap:16px;
    justify-self:end;
    width:min(100%, 320px);
}

.info-chip,
.metric-card,
.info-copy{
    border:1px solid rgba(255,255,255,0.12);
    border-radius:20px;
    background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
    backdrop-filter:blur(10px);
    box-shadow:0 14px 36px rgba(0,0,0,.2);
}

.info-chip{
    padding:14px 18px;
    font-weight:600;
    color:#d9f6ff;
}

.metric-card{
    padding:20px;
}

.metric-card span{
    display:block;
    margin-bottom:8px;
    color:#9edcff;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.metric-card strong,
.info-copy strong{
    display:block;
    font-size:19px;
    line-height:1.3;
}

.info-copy{
    padding:22px;
}

.apple-orbit,
.apple-metrics,
.apple-light-column{
    position:relative;
    width:100%;
    min-height:340px;
    display:flex;
    align-items:center;
    justify-content:center;
    justify-self:end;
}

.apple-orbit{
    border-radius:36px;
    background:
        linear-gradient(160deg, rgba(11,33,73,0.98), rgba(6,16,37,0.96)),
        radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 56%);
    box-shadow:
        0 24px 50px rgba(0,0,0,.22),
        0 1px 0 rgba(255,255,255,0.08) inset;
}

.orbital-ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.18);
    box-shadow:0 0 0 1px rgba(255,255,255,0.04) inset;
}

.ring-one{
    width:300px;
    height:300px;
}

.ring-two{
    width:220px;
    height:220px;
    border-color:rgba(255,255,255,0.12);
}

.orbital-core{
    width:120px;
    height:120px;
    border-radius:50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255,255,255,0.88), rgba(207,222,241,0.70) 30%, rgba(39,70,115,0.54) 62%, rgba(0,0,0,0) 76%);
    filter:blur(0.2px);
    box-shadow:
        0 20px 48px rgba(3,9,20,.28),
        0 0 0 12px rgba(255,255,255,0.03);
}

.floating-chip{
    position:absolute;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(10,27,59,0.96);
    border:1px solid rgba(255,255,255,0.08);
    color:#eaf8ff;
    font-weight:600;
    letter-spacing:.01em;
    box-shadow:0 16px 32px rgba(0,0,0,.16);
}

.chip-one{
    top:30px;
    right:30px;
}

.chip-two{
    bottom:62px;
    left:18px;
}

.chip-three{
    bottom:26px;
    right:54px;
}

.apple-metrics,
.apple-light-column{
    flex-direction:column;
    gap:18px;
    align-items:stretch;
    justify-content:center;
}

.apple-metric-card,
.light-card{
    padding:24px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(17,41,88,0.96), rgba(10,28,62,0.92));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 40px rgba(0,0,0,.18),
        0 1px 0 rgba(255,255,255,0.06) inset;
}

.apple-metric-card span,
.light-card span{
    display:block;
    margin-bottom:10px;
    color:#9edcff;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.apple-metric-card strong,
.light-card strong{
    display:block;
    font-size:24px;
    line-height:1.2;
    color:#f3fbff;
}

.info-copy p{
    margin:12px 0 0;
    color:rgba(255,255,255,.82);
}

.slider-controls{
    position:absolute;
    left:72px;
    right:72px;
    bottom:28px;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.slider-pagination{
    display:flex;
    gap:10px;
}

.slider-dot,
.slider-arrow{
    border:none;
    cursor:pointer;
}

.slider-dot{
    width:13px;
    height:13px;
    border-radius:50%;
    background:rgba(255,255,255,0.28);
    box-shadow:0 0 0 1px rgba(255,255,255,0.12);
    transition:transform .25s ease, background .25s ease;
}

.slider-dot.active{
    background:#f1f5fb;
    transform:scale(1.15);
}

.slider-arrow{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(3,14,42,0.94);
    color:#fff;
    font-size:32px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.10);
    transition:transform .2s ease, background .2s ease;
}

.slider-arrow:hover{
    background:rgba(255,255,255,0.18);
    transform:translateY(-2px);
}

@keyframes slide{
    0%{transform:translateX(0)}
    30%{transform:translateX(0)}
    35%{transform:translateX(-100%)}
    65%{transform:translateX(-100%)}
    70%{transform:translateX(-200%)}
    100%{transform:translateX(-200%)}
}

/* ===== SECTION ===== */
.section{
    padding:80px 10%;
    text-align:center;
}

.section h2{
    font-size:32px;
    margin-bottom:20px;
    color:#00B4FF;
}

.section p{
    max-width:800px;
    margin:0 auto 40px auto;
    opacity:.9;
}

/* ===== BUTTON ===== */
.btn{
    display:inline-block;
    padding:12px 28px;
    background:#00B4FF;
    color:#000;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,180,255,.4);
}

.btn:hover{
    background:#00d4ff;
    transform:translateY(-3px);
}

/* ===== SERVICES GRID ===== */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
    max-width:1100px;
    margin:40px auto;
    padding:0 20px;
    justify-content:center;   /* 🔥 centra las cards */
    justify-items:center;

}

.service-card{
    background:#122b5c;
    padding:35px;
    border-radius:16px;
    transition:.3s;
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#00B4FF;
}

.trust-strip{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
    padding:24px 20px 10px;
}

.trust-item{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:999px;
    padding:10px 18px;
    font-weight:600;
    font-size:14px;
}

.corporate-section,
.process-section,
.value-section,
.cta-section{
    max-width:1280px;
    margin:0 auto;
}

.section-heading{
    max-width:860px;
    margin:0 auto 44px;
}

.section-kicker{
    display:inline-block;
    margin-bottom:14px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.09);
    color:#a7dbff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.corporate-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr .85fr;
    gap:24px;
    align-items:stretch;
}

.executive-card{
    padding:30px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(17,41,88,0.9), rgba(10,28,62,0.86));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 50px rgba(0,0,0,.22);
    text-align:left;
}

.highlight-card{
    background:linear-gradient(135deg, rgba(13,39,86,0.96), rgba(7,20,46,0.92));
}

.card-label{
    display:inline-block;
    margin-bottom:14px;
    color:#7fd8ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.executive-card h3{
    font-size:28px;
    line-height:1.2;
    margin-bottom:16px;
}

.executive-card p{
    margin:0;
    color:rgba(255,255,255,.82);
}

.executive-list{
    list-style:none;
    margin-top:20px;
    display:grid;
    gap:12px;
}

.executive-list li{
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.06);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.process-card{
    padding:28px 24px;
    border-radius:22px;
    text-align:left;
    background:linear-gradient(180deg, rgba(15,36,77,0.92), rgba(9,24,54,0.88));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 16px 40px rgba(0,0,0,.18);
}

.process-step{
    display:inline-flex;
    width:48px;
    height:48px;
    border-radius:14px;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    background:linear-gradient(135deg, #00B4FF, #0089d6);
    color:#00152e;
    font-weight:700;
    font-size:18px;
}

.process-card h3{
    margin-bottom:12px;
    font-size:22px;
    line-height:1.25;
}

.process-card p{
    margin:0;
    color:rgba(255,255,255,.82);
}

.value-panel,
.cta-panel{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:center;
    padding:36px;
    border-radius:28px;
    background:linear-gradient(135deg, rgba(10,27,59,0.96), rgba(6,16,37,0.96));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 24px 55px rgba(0,0,0,.24);
    text-align:left;
}

.value-copy h2,
.cta-panel h2{
    font-size:38px;
    line-height:1.18;
    margin-bottom:16px;
}

.value-copy p,
.cta-panel p{
    margin:0;
    max-width:680px;
    color:rgba(255,255,255,.84);
}

.value-metrics{
    display:grid;
    gap:16px;
}

.value-metric{
    padding:18px 20px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.06);
}

.value-metric strong{
    display:block;
    margin-bottom:6px;
    font-size:20px;
}

.value-metric span{
    color:rgba(255,255,255,.78);
}

.cta-panel{
    grid-template-columns:1fr;
}

.cta-actions{
    margin-top:24px;
}

.social-section{
    max-width:1280px;
    margin:0 auto;
    padding:40px 20px 0;
    text-align:center;
}

.social-section h3{
    margin-bottom:18px;
    font-size:24px;
}

.social-icons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.social-icons a{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    transition:transform .25s ease, border-color .25s ease, background .25s ease;
}

.social-icons a:hover{
    transform:translateY(-4px);
    border-color:rgba(0,180,255,0.45);
    background:rgba(0,180,255,0.08);
}

.social-icons img{
    max-width:30px;
    max-height:30px;
}

.services-hero{
    max-width:1280px;
    margin:28px auto 0;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:center;
}

.services-hero-copy,
.services-hero-visual{
    padding:30px;
    border-radius:28px;
    background:linear-gradient(135deg, rgba(10,27,59,0.96), rgba(6,16,37,0.96));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 24px 55px rgba(0,0,0,.24);
}

.services-hero-copy{
    text-align:left;
}

.services-hero-copy h1{
    font-size:48px;
    line-height:1.12;
    margin-bottom:18px;
}

.services-hero-copy p{
    margin:0;
    max-width:640px;
    color:rgba(255,255,255,.84);
}

.services-hero-visual img{
    width:100%;
    display:block;
    border-radius:22px;
    border:1px solid rgba(255,255,255,0.08);
}

.contact-hero-shell{
    margin-bottom:10px;
}

.contact-highlight-list{
    display:grid;
    gap:12px;
    margin-top:24px;
}

.contact-highlight-item{
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.07);
    color:rgba(255,255,255,.88);
    font-weight:600;
}

.service-showcase-grid{
    display:grid;
    gap:26px;
}

.service-showcase-card{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(320px, 420px);
    gap:24px;
    align-items:center;
    padding:28px;
    border-radius:28px;
    background:linear-gradient(135deg, rgba(10,27,59,0.96), rgba(6,16,37,0.96));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 24px 55px rgba(0,0,0,.24);
    text-align:left;
}

.service-showcase-copy p{
    margin:0 0 18px;
    color:rgba(255,255,255,.84);
}

.service-showcase-copy h3{
    font-size:34px;
    line-height:1.18;
    margin-bottom:16px;
}

.service-gallery{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.service-gallery img{
    width:100%;
    height:100%;
    min-height:260px;
    object-fit:cover;
    display:block;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 16px 34px rgba(0,0,0,.22);
    transition:transform .25s ease, border-color .25s ease;
}

.service-gallery img:hover{
    transform:translateY(-4px);
    border-color:rgba(0,180,255,0.35);
}

.featured-article-card{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(320px, 420px);
    gap:24px;
    align-items:center;
    padding:30px;
    border-radius:28px;
    background:linear-gradient(135deg, rgba(10,27,59,0.96), rgba(6,16,37,0.96));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 24px 55px rgba(0,0,0,.24);
    text-align:left;
}

.featured-article-copy h3{
    font-size:38px;
    line-height:1.14;
    margin-bottom:14px;
}

.featured-article-copy p{
    margin:0 0 18px;
    color:rgba(255,255,255,.84);
}

.featured-article-visual img{
    width:100%;
    display:block;
    border-radius:22px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 16px 34px rgba(0,0,0,.22);
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.blog-card{
    padding:28px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(17,41,88,0.9), rgba(10,28,62,0.86));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 50px rgba(0,0,0,.22);
    text-align:left;
}

.blog-card h3{
    font-size:28px;
    line-height:1.2;
    margin-bottom:14px;
}

.blog-card p{
    margin:0 0 18px;
    color:rgba(255,255,255,.82);
}

.contact-section{
    max-width:1280px;
    margin:0 auto;
}

.contact-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(320px, 420px);
    gap:26px;
    align-items:start;
}

.contact-form-panel,
.contact-info-panel{
    padding:30px;
    border-radius:28px;
    background:linear-gradient(135deg, rgba(10,27,59,0.96), rgba(6,16,37,0.96));
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 24px 55px rgba(0,0,0,.24);
}

.contact-panel-head{
    margin-bottom:22px;
    text-align:left;
}

.contact-panel-head h2{
    font-size:36px;
    line-height:1.16;
    margin-bottom:12px;
    color:#00B4FF;
}

.contact-panel-head p{
    margin:0;
    color:rgba(255,255,255,.82);
}

.contact-info-panel{
    display:grid;
    gap:18px;
}

.contact-side-card{
    padding:22px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.07);
    text-align:left;
}

.contact-side-card h3{
    margin:0 0 12px;
    font-size:24px;
    line-height:1.25;
}

.contact-side-card p{
    margin:0;
    color:rgba(255,255,255,.82);
}

/* ===== FOOTER ===== */
footer{
    background:#020c1f;
    padding:40px 20px 24px;
    margin-top:80px;
    font-size:.9em;
}

.footer-grid{
    max-width:1280px;
    margin:0 auto 24px;
    display:flex;
    flex-wrap:wrap;
    gap:32px;
    justify-content:space-between;
    align-items:flex-start;
}

.footer-col{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-col strong{
    font-size:16px;
    color:#fff;
}

.footer-nav{
    display:flex;
    flex-wrap:wrap;
    gap:10px 20px;
}

.footer-nav a,
.footer-legal a{
    color:rgba(255,255,255,.65);
    font-size:14px;
    transition:color .2s;
}

.footer-nav a:hover,
.footer-legal a:hover{
    color:#00B4FF;
}

.footer-legal{
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:right;
}

.footer-copy{
    max-width:1280px;
    margin:0 auto;
    text-align:center;
    opacity:.6;
    border-top:1px solid rgba(255,255,255,.07);
    padding-top:20px;
}

/* ===== VISUALLY HIDDEN (SEO / accesibilidad) ===== */
.visually-hidden{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

/* ===== WHATSAPP ===== */
.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
    z-index:999;
    overflow:hidden;
}

.whatsapp img{
    width:32px;
    height:32px;
}



/* ===== COOKIE BANNER ===== */
.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#081733;
    padding:20px;
    display:none;
    justify-content:center;
    z-index:2000;
    box-shadow:0 -5px 20px rgba(0,0,0,.5);
}

.cookie-content{
    max-width:1100px;
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.cookie-buttons{
    display:flex;
    gap:15px;
}

.btn-cookie{
    padding:10px 20px;
    border:none;
    border-radius:25px;
    cursor:pointer;
    font-weight:600;
}

.accept{
    background:#00B4FF;
    color:#000;
}

.reject{
    background:#2c3e50;
    color:#fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .logo{
        max-width:90%;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#081733;
        flex-direction:column;
        align-items:center;
        gap:18px;
        padding:20px 0;
        display:none;
        z-index:2999;
    }

    .nav-links.active{
        display:flex;
    }

    /* SLIDER MOBILE */
    .slider{
        height:auto;
        min-height:0;
        aspect-ratio:16 / 9;
        border-radius:22px;
    }

    /* background-size:cover ya aplicado en desktop */

    .slide-grid{
        grid-template-columns:1fr;
        padding:32px 20px 90px;
        gap:20px;
    }

    .hero-panel{
        padding:24px 20px;
    }

    .hero-panel h1,
    .hero-panel h2{
        font-size:32px;
    }

    .apple-panel{
        padding:8px 0 0;
    }

    .apple-panel h1,
    .apple-panel h2{
        font-size:40px;
        line-height:1.08;
    }

    .apple-panel p{
        font-size:16px;
    }

    /* GRID MOBILE */
    .services{
        grid-template-columns:1fr;
    }

    .corporate-grid,
    .process-grid,
    .value-panel,
    .services-hero,
    .service-showcase-card,
    .contact-layout,
    .featured-article-card{
        grid-template-columns:1fr;
    }

    .container{
        grid-template-columns:1fr;
        padding:30px 20px;
    }

    .section{
        padding:60px 20px;
    }

    .whatsapp{
        width:55px;
        height:55px;
    }

    .executive-card,
    .process-card,
    .value-panel,
    .cta-panel,
    .services-hero-copy,
    .services-hero-visual,
    .service-showcase-card,
    .contact-form-panel,
    .contact-info-panel{
        padding:24px 20px;
    }

    .executive-card h3{
        font-size:24px;
    }

    .value-copy h2,
    .cta-panel h2,
    .services-hero-copy h1,
    .contact-panel-head h2{
        font-size:30px;
    }

    .service-showcase-copy h3{
        font-size:28px;
    }

    .service-gallery{
        grid-template-columns:1fr;
    }

    .service-gallery img{
        min-height:220px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .featured-article-copy h3,
    .blog-card h3{
        font-size:28px;
    }

    .contact-side-card{
        padding:20px;
    }

    .social-icons a{
        width:56px;
        height:56px;
        border-radius:16px;
    }

    .hero-panel p{
        font-size:15px;
    }

    .info-panel{
        width:100%;
        justify-self:stretch;
    }

    .apple-orbit,
    .apple-metrics,
    .apple-light-column{
        min-height:auto;
    }

    .ring-one{
        width:230px;
        height:230px;
    }

    .ring-two{
        width:170px;
        height:170px;
    }

    .orbital-core{
        width:92px;
        height:92px;
    }

    .slider-controls{
        left:20px;
        right:20px;
        bottom:22px;
    }

    .slider-arrow{
        width:46px;
        height:46px;
        font-size:28px;
    }

}
/* ===== ARTÍCULOS DE BLOG ===== */
.article-layout{
    max-width:860px;
    margin:0 auto;
    padding:60px 20px 80px;
    text-align:left;
}

.article-layout h1{
    font-size:38px;
    line-height:1.18;
    margin-bottom:10px;
    color:#fff;
}

.article-layout .article-meta{
    color:rgba(255,255,255,.5);
    font-size:13px;
    margin-bottom:40px;
    display:block;
}

.article-layout h2{
    font-size:22px;
    color:#00B4FF;
    margin:36px 0 14px;
}

.article-layout p{
    color:rgba(255,255,255,.84);
    line-height:1.8;
    margin-bottom:16px;
    max-width:100%;
}

.article-layout ul{
    padding-left:20px;
    margin-bottom:16px;
}

.article-layout li{
    color:rgba(255,255,255,.84);
    line-height:1.75;
    margin-bottom:8px;
}

.article-layout .article-cta{
    margin-top:48px;
    padding-top:32px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:20px;
}

.article-layout .article-cta p{
    margin:0;
    color:rgba(255,255,255,.65);
}

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

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
    text-align:left;
}

.form-group label{
    margin-bottom:6px;
    font-weight:500;
    font-size:14px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:none;
    outline:none;
    background:#0A1F44;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:14px;
}

.form-group textarea{
    min-height:120px;
    resize:vertical;
}

.hp-field{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}

.form-note{
    margin-top:5px;
    font-size:14px;
    opacity:.8;
    text-align:left;
}

/* Botón del formulario */
form button{
    width:100%;
    margin-top:10px;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#00B4FF;
    color:#000;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,180,255,.4);
}

form button:hover{
    background:#00d4ff;
    transform:translateY(-2px);
}

/* Mensajes de éxito o error */
.success-message{
    background:#00B4FF;
    color:#000;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:500;
}
@media(max-width:900px){
.contact-info{
    text-align:center;
    margin-top:20px;
    }

.footer-legal{
    text-align:left;
    }
}
.input-icon{
    position:relative;
}

.input-icon i{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#00B4FF;
    font-size:14px;
}

.input-icon input,
.input-icon textarea{
    padding-left:40px;
}
.form-group input:focus,
.form-group textarea:focus{
    box-shadow:0 0 0 2px #00B4FF;
    background:#081733;
}
.input-error{
    box-shadow:0 0 0 2px #ff4d4d !important;
}

.input-valid{
    box-shadow:0 0 0 2px #00ff88 !important;
}
form button:active{
    transform:scale(0.98);
}
.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
    max-width:800px;
    margin:40px auto;   /* 🔥 centra el bloque completo */
    justify-content:center;

}
.contact-info{
    text-align:center;
}

.contact-info p{
    text-align:center;
}

/* SOLO SERVICIOS - centrar último card cuando queda solo */
.servicios-grid{
    justify-items:center;
}

.servicios-grid .service-card{
    max-width:350px;
}
