*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary: #0b132b;
    --secondary: #3f454d;
    --accent: #b8d13f;
    --text: #4b5563;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--primary);
}

/* =========================
HEADER
========================= */

.header{
    width: 100%;
    max-width: 100vw;
    
    min-height: 90px;

    background: rgba(255,255,255,0.96);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 8%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.logo img{
    width: 58px;
}

.logo{
    display: flex;
    align-items: center;

    flex-shrink: 0;
}


.navbar a{
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

.navbar a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

.navbar a:hover::after{
    width: 100%;
}

.btn-header{
    background: #C4D63C;
    color: #071C48;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-header:hover{
    background: #C4D63C;
    transform: translateY(-2px);
}

/* =========================
HERO
========================= */

.hero{
    width: 100%;
    min-height: 92vh;

    background:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),
    url('../img/hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    padding: 140px 8% 80px;
}

.contenido-hero{
    max-width: 650px;
}

.contenido-hero span{
    color: #d1d5db;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: 600;
}

.contenido-hero h1{
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    color: white;
    margin: 22px 0;
}

.contenido-hero p{
    color: rgba(255,255,255,0.85);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.botones-hero{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-verde{
    background: white;
    color: var(--primary);
    padding: 15px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-verde:hover{
    transform: translateY(-3px);
    background: #f3f4f6;
}

.btn-transparente{
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 15px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.btn-transparente:hover{
    background: rgba(255,255,255,0.08);
}


/* =========================
SECCIONES
========================= */

section{
    width: 100%;
}

.titulo-seccion{
    text-align: center;
    margin-bottom: 60px;
}

.titulo-seccion h2{
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.titulo-seccion p{
    color: var(--text);
    font-size: 18px;
}

/* =========================
SERVICIOS
========================= */

.servicios{
    padding: 100px 8%;
    background: var(--light);
}

.contenedor-servicios{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.card-servicio{
    background: white;
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: 0.35s;
}

.card-servicio:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.icono{
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 22px;
}

.icono i{
    color: white;
    font-size: 22px;
}

.card-servicio h3{
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--primary);
}

.card-servicio p{
    color: var(--text);
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
SOBRE NOSOTROS
========================= */

.about{
    padding: 70px 8% 90px;
    background: var(--light);
}

.about-container{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.logo-box{
    position: relative;

    width: 100%;
    max-width: 420px;
    height: 360px;

    background: white;

    border-radius: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid var(--border);

    box-shadow:
    0 10px 30px rgba(15,23,42,0.06);

    overflow: hidden;
}

.logo-box img{
    width: 260px;
    object-fit: contain;
}

.experience-badge{
    position: absolute;

    bottom: 18px;
    right: 18px;

    background: var(--primary);

    color: white;

    padding: 14px 18px;

    border-radius: 18px;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

.experience-badge span{
    font-size: 1.1rem;
    font-weight: 700;

    color: var(--accent);
}

.experience-badge p{
    font-size: 0.8rem;
    margin-top: 4px;

    color: #e2e8f0;
}

.section-tag{
    color: var(--accent);

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 3px;
}

.about-content h2{
    font-size: 3.2rem;

    color: var(--primary);

    margin: 18px 0;
}

.about-content p{
    font-size: 1.05rem;

    line-height: 1.9;

    color: var(--text);

    margin-bottom: 25px;
}

.about-features{
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 35px;
}

.feature{
    background: white;

    padding: 16px 18px;

    border-radius: 14px;

    font-weight: 500;

    color: var(--primary);

    border: 1px solid var(--border);

    transition: 0.3s;
}

.feature:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.about-btn{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    background: var(--primary);

    color: white;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.about-btn:hover{
    transform: translateY(-3px);

    background: #1c2541;

    box-shadow:
    0 10px 20px rgba(11,19,43,0.2);
}

/* =========================
PROYECTOS
========================= */

.proyectos{
    background: var(--secondary);
    padding: 110px 8%;
}

.titulo-blanco h2{
    color: white;
}

.titulo-blanco p{
    color: #d1d5db;
}

.contenedor-proyectos{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.card-proyecto{
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.card-proyecto:hover{
    transform: translateY(-8px);
}

.card-proyecto img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.contenido-proyecto{
    padding: 28px;
}

.contenido-proyecto h3{
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
}

.contenido-proyecto p{
    color: var(--text);
    line-height: 1.8;
}

/* =========================
CLIENTES
========================= */

.clientes{
    padding: 110px 0;
    background: var(--light);
    overflow: hidden;
}

.clientes .titulo-seccion{
    padding: 0 8%;
    margin-bottom: 60px;
}

.slider-clientes{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track{
    display: flex;
    width: calc(250px * 12);
    animation: scroll 35s linear infinite;
}

.slide{
    width: 250px;
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    overflow: hidden;
}

.slide:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.slide img{
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.65;

    transition: all 0.4s ease;

    pointer-events: none;
}

.slide:hover img{
    filter: grayscale(0%);
    opacity: 1;

    transform: scale(1.05);
}

/* =========================
ANIMACION CLIENTES
========================= */

@keyframes scroll{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(calc(-250px * 6));
    }

}





/* ======================================================
SOBRE NOSOTROS PREMIUM
====================================================== */

/* HERO */

/* ======================================================
SOBRE NOSOTROS PREMIUM
====================================================== */

.hero-sobre{

    position: relative;

    width: 100%;
    min-height: 68vh;

    padding: 110px 7% 65px;

    overflow: hidden;

    background:
    linear-gradient(
    120deg,
    rgba(7,12,28,0.84) 0%,
    rgba(18,28,48,0.72) 45%,
    rgba(45,52,63,0.64) 100%),
    url("../img/5.jpeg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-sobre::before{
    content: "";

    position: absolute;

    top: -250px;
    right: -250px;

    width: 650px;
    height: 650px;

    background:
    radial-gradient(
    rgba(196,214,60,0.06),
    transparent 70%);
}

.overlay-sobre{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.12));
}

/* GRID */

.hero-grid{

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
    minmax(0,1fr) 350px;

    align-items: center;

    gap: 45px;
}

/* TEXTO */

.hero-sobre-contenido{
    max-width: 620px;
}

.mini-tag{
    display: inline-block;

    color: #C4D63C;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 6px;

    margin-bottom: 22px;
}

.hero-sobre-contenido h1{

    font-size: 58px;

    line-height: 0.95;

    color: white;

    letter-spacing: -3px;

    margin-bottom: 24px;
}

.hero-sobre-contenido p{

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);

    margin-bottom: 30px;

    max-width: 620px;
}

/* BADGES */

.hero-badges{
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 35px;
}

.badge{
    padding: 8px 14px;

    border-radius: 50px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.92);

    font-size: 11px;
    font-weight: 500;
}

/* BOTONES */

.hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.14);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.btn-outline:hover{
    background: rgba(255,255,255,0.06);
}

/* CARD */

.hero-floating-card{
    display: flex;
    justify-content: center;
}

.floating-card{

    width: 100%;
    max-width: 350px;

    padding: 24px;

    border-radius: 28px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.14);
}

.floating-top{
    display: flex;
    align-items: center;

    gap: 16px;
}

.floating-icon{
    width: 64px;
    height: 64px;

    border-radius: 18px;

    background: rgba(255,255,255,0.06);

    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-icon i{
    color: white;
    font-size: 22px;
}

.floating-top h3{
    color: white;

    font-size: 19px;

    margin-bottom: 5px;
}

.floating-top p{
    color: rgba(255,255,255,0.68);

    font-size: 13px;
}

.floating-divider{
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.08);

    margin: 24px 0;
}

.floating-stats{
    display: flex;
    justify-content: space-between;
}

.stat h4{

    color: white;

    font-size: 30px;

    margin-bottom: 4px;
}

.stat span{
    color: rgba(255,255,255,0.68);

    font-size: 12px;
}

/* HISTORIA */

.historia{
    padding: 100px 8%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
    align-items: center;

    background: var(--light);
}

.historia-imagen img{
    width: 100%;

    border-radius: 26px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.historia-texto h2{
    font-size: 46px;

    color: var(--primary);

    margin: 18px 0 26px;
}

.historia-texto p{
    color: var(--text);

    line-height: 1.9;

    margin-bottom: 20px;
}

/* AUTORIDAD */

.autoridad-premium{
    background:
    linear-gradient(
    135deg,
    #2f343b 0%,
    #3f454d 100%);

    padding: 90px 8%;

    position: relative;

    overflow: hidden;
}

.autoridad-premium::before{
    content: "";

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    background:
    radial-gradient(
    rgba(196,214,60,0.08),
    transparent 70%);
}

.autoridad-top{
    max-width: 760px;

    margin-bottom: 60px;

    position: relative;
    z-index: 2;
}

.autoridad-top h2{
    color: white;

    font-size: 44px;

    line-height: 1.1;

    margin: 16px 0 24px;
}

.autoridad-top p{
    color: rgba(255,255,255,0.72);

    line-height: 1.9;
}

.autoridad-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 25px;

    margin-bottom: 50px;
}

.autoridad-card{
    padding: 34px;

    border-radius: 22px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);
}

.autoridad-numero{
    color: rgba(196,214,60,0.8);

    font-size: 13px;

    letter-spacing: 4px;

    margin-bottom: 16px;

    font-weight: 700;
}

.autoridad-card h3{
    color: white;

    font-size: 32px;

    margin-bottom: 16px;
}

.autoridad-card p{
    color: rgba(255,255,255,0.72);

    line-height: 1.9;
}

/* METRICAS */

.metricas-premium{
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 30px;

    border-top: 1px solid rgba(255,255,255,0.08);

    padding-top: 45px;
}

.metrica h4{
    font-size: 52px;

    color: white;

    margin-bottom: 8px;
}

.metrica span{
    color: rgba(255,255,255,0.68);
}

/* RESPONSIVE */

@media(max-width: 992px){

    .hero-grid,
    .historia,
    .autoridad-grid,
    .metricas-premium{
        grid-template-columns: 1fr;
    }

    .hero-sobre-contenido h1{
        font-size: 52px;
    }

}

@media(max-width: 768px){

    .hero-sobre{
        padding: 180px 20px 90px;
    }

    .hero-sobre-contenido h1{
        font-size: 40px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons .btn-header,
    .btn-outline{
        width: 100%;
        text-align: center;
    }

    .historia,
    .autoridad-premium,
    .valores{
        padding: 80px 5%;
    }

    .autoridad-top h2,
    .historia-texto h2{
        font-size: 36px;
    }

}

/* ======================================================
VALORES FIX
====================================================== */

.valores{
    padding: 110px 8%;

    background: var(--light);
}

.contenedor-valores{
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

    margin-top: 60px;
}

.valor{
    background: white;

    padding: 45px 30px;

    border-radius: 24px;

    text-align: center;

    border: 1px solid var(--border);

    transition: 0.3s;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);
}

.valor:hover{
    transform: translateY(-8px);

    box-shadow:
    0 18px 35px rgba(0,0,0,0.08);
}

.valor i{
    width: 72px;
    height: 72px;

    margin: 0 auto 24px;

    border-radius: 20px;

    background: var(--primary);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.valor h3{
    font-size: 24px;

    color: var(--primary);

    margin-bottom: 12px;
}

.valor p{
    color: var(--text);

    line-height: 1.8;

    font-size: 15px;
}



/* ======================================================
CTA MODERNO PREMIUM
====================================================== */

.cta-final{
    padding: 120px 8%;

    background:
    linear-gradient(
    135deg,
    #f5f7fa 0%,
    #eef1f5 100%);
}

.cta-grid{
    display: grid;

    grid-template-columns: 1fr 430px;

    gap: 90px;

    align-items: center;
}

/* TEXTO */

.cta-info h2{
    font-size: 58px;

    line-height: 1.05;

    color: #071133;

    margin:
    20px 0
    28px;

    letter-spacing: -3px;
}

.cta-info p{
    font-size: 18px;

    line-height: 1.9;

    color: #4f5661;

    max-width: 650px;

    margin-bottom: 40px;
}

/* BOTONES */

.cta-buttons{
    display: flex;

    gap: 18px;

    flex-wrap: wrap;
}

.btn-cta-premium{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 60px;

    background: #C4D63C;

    color: #071133;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s;

    box-shadow:
    0 15px 30px rgba(196,214,60,0.25);
}

.btn-cta-premium:hover{
    transform: translateY(-4px);
}

.btn-cta-light{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 60px;

    border: 1px solid #d7dce2;

    color: #071133;

    text-decoration: none;

    font-weight: 600;

    background: white;

    transition: 0.3s;
}

.btn-cta-light:hover{
    transform: translateY(-4px);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.05);
}

/* VISUAL */

.cta-visual{
    position: relative;
}

.cta-visual img{
    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.10);
}

.cta-floating{
    position: absolute;

    left: -50px;
    bottom: 30px;

    background: white;

    padding: 24px;

    border-radius: 22px;

    max-width: 280px;

    box-shadow:
    0 18px 35px rgba(0,0,0,0.10);
}

.cta-floating h3{
    font-size: 22px;

    color: #071133;

    margin-bottom: 14px;
}

.cta-floating p{
    color: #5d6470;

    line-height: 1.8;
}


/* ======================================================
FOOTER FINAL PREMIUM
====================================================== */

.footer{
    background:
    linear-gradient(
    135deg,
    #1F242B 0%,
    #2E343D 45%,
    #3B4148 100%);

    color: white;
}

.footer::before{
    content: "";

    position: absolute;

    top: -220px;
    right: -220px;

    width: 520px;
    height: 520px;

    background:
    radial-gradient(
   rgba(196,214,60,0.03)
    transparent 70%);
}

/* GRID */

.footer-contenedor{
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
    1.3fr
    1fr
    1fr
    1fr;

    gap: 70px;

    padding:
    100px 8%
    70px;
}

/* BRAND */

.footer-brand{
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}

.footer-brand img{
    width: 82px;

    object-fit: contain;

    transform: translateY(2px);
}

.footer-brand-text h2{
    font-size: 44px;

    line-height: 1;

    color: white;

    margin-bottom: 6px;

    letter-spacing: 1px;
}

.footer-brand-text span{
    color: rgba(255,255,255,0.55);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.footer-logo p{
    color: rgba(255,255,255,0.72);

    font-size: 17px;

    line-height: 1.9;

    max-width: 320px;
}

/* TITLES */

.footer h3{
    color: white;

    font-size: 24px;

    margin-bottom: 30px;

    position: relative;
}

.footer h3::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 42px;
    height: 3px;

    border-radius: 20px;

    background: #C4D63C;
}

/* LINKS */

.footer-links{
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.footer-links a{
    color: rgba(255,255,255,0.72);

    text-decoration: none;

    transition: 0.3s;
}

.footer-links a:hover{
    color: white;

    transform: translateX(5px);
}

/* CONTACT */

.footer-contacto{
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.footer-contacto span{
    color: rgba(255,255,255,0.72);

    line-height: 1.8;
}

/* SOCIAL */

.iconos-redes{
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.iconos-redes a{
    width: 56px;
    height: 56px;

    border-radius: 18px;

    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 20px;

    text-decoration: none;

    transition: 0.35s;
}

.iconos-redes a:hover{
    background: #C4D63C;

    color: #071133;

    transform:
    translateY(-6px);

    box-shadow:
    0 12px 25px rgba(196,214,60,0.25);
}

/* COPYRIGHT */

.footer-copy{
    position: relative;
    z-index: 2;

    border-top:
    1px solid rgba(255,255,255,0.08);

    text-align: center;

    padding:
    28px 8%;

    color:
    rgba(255,255,255,0.55);

    font-size: 14px;
}

/* =========================================
NAVBAR
========================================= */

.navbar{
    display: flex;
    align-items: center;
    gap: 42px;
}

.menu-toggle{
    display: none;
}

/* =========================================
FOOTER FIX
========================================= */

.footer{
    position: relative;
    overflow: hidden;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    html,
    body{
        overflow-x: hidden;
    }

    .header{
        padding: 0 20px;
    }

    .logo img{
        width: 48px;
    }

    .btn-header{
        display: none;
    }

    /* MENU */

    .menu-toggle{
        display: flex;

        width: 48px;
        height: 48px;

        border: none;

        background: rgba(11,19,43,0.08);

        border-radius: 14px;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 5px;

        cursor: pointer;

        position: relative;

        z-index: 10002;
    }

    .menu-toggle span{
        width: 24px;
        height: 3px;

        background: #0b132b;

        border-radius: 20px;
    }

    .navbar{
        position: fixed;

        top: 0;
        right: -320px;

        width: 280px;
        max-width: 280px;

        height: 100vh;

        background: white;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 24px;

        padding: 120px 40px 40px;

        transition: .4s ease;

        z-index: 10001;

        box-shadow:
        -10px 0 40px rgba(0,0,0,.12);
    }

    .navbar.active{
    right: 0 !important;
    }

    .navbar a{
        width: 100%;

        padding-bottom: 14px;

        border-bottom:
        1px solid #e5e7eb;

        font-size: 18px;
    }

    /* HERO */

    .hero{
        padding: 140px 20px 90px;
    }

    .contenido-hero h1{
        font-size: 52px;
        line-height: .95;
    }

    .contenido-hero p{
        font-size: 17px;
    }

    .botones-hero{
        flex-direction: column;
    }

    .btn-verde,
    .btn-transparente{
        width: 100%;
        text-align: center;
    }

    /* HERO SOBRE */

    .hero-sobre{
        padding: 140px 20px 90px;
    }

    .hero-grid{
        display: flex;
        flex-direction: column;

        gap: 40px;
    }

    .hero-sobre-contenido{
        width: 100%;
    }

    .hero-sobre-contenido h1{
        font-size: 52px;
        line-height: .95;

        letter-spacing: -2px;

        word-break: break-word;
    }

    .hero-sobre-contenido p{
        font-size: 17px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .btn-outline{
        width: 100%;
        text-align: center;
    }

    .hero-floating-card{
        width: 100%;
    }

    .floating-card{
        width: 100%;
        max-width: 100%;
    }

    .floating-stats{
        flex-direction: column;
        gap: 20px;
    }

    /* GRIDS */

    .contenedor-servicios,
    .contenedor-proyectos,
    .about-container,
    .historia,
    .autoridad-grid,
    .contenedor-valores,
    .cta-grid,
    .footer-contenedor{
        grid-template-columns: 1fr;
    }

    /* TITULOS */

    .titulo-seccion h2,
    .historia-texto h2,
    .autoridad-top h2,
    .cta-info h2{
        font-size: 36px;
    }

    /* CTA */

    .cta-final{
        padding: 90px 20px;
    }

    .cta-buttons{
        flex-direction: column;
    }

    .btn-cta-premium,
    .btn-cta-light{
        width: 100%;
        text-align: center;
    }

    .cta-visual img{
        height: 420px;
    }

    .cta-floating{
        position: relative;

        left: 0;
        bottom: 0;

        margin-top: -40px;
    }

    /* FOOTER */

    .footer-contenedor{
        padding: 80px 20px 60px;
        gap: 50px;
    }

}

/* =========================================
WHATSAPP FLOAT PREMIUM
========================================= */

.whatsapp-float{

    position: fixed;

    right: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;

    gap: 10px;

    z-index: 99999;
}

/* BOTON TEXTO */

.btn-contacto{

    background: white;

    color: #111827;

    text-decoration: none;

    padding: 14px 22px;

    border-radius: 60px;

    font-weight: 600;

    font-size: 15px;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.10);

    transition: .3s ease;
}

.btn-contacto:hover{

    transform: translateY(-3px);

    box-shadow:
    0 15px 30px rgba(0,0,0,0.14);
}

/* BOTON WHATSAPP */

.btn-whatsapp{

    width: 64px;
    height: 64px;

    background: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    position: relative;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.10);

    transition: .3s ease;
}

/* CIRCULO VERDE */

.btn-whatsapp::before{

    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 50%;

    background: #25D366;
}

/* ICONO */

.btn-whatsapp i{

    position: relative;

    z-index: 2;

    color: white;

    font-size: 28px;
}

.btn-whatsapp:hover{

    transform:
    translateY(-4px)
    scale(1.03);

    box-shadow:
    0 18px 35px rgba(37,211,102,0.25);
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .whatsapp-float{

        right: 16px;
        bottom: 16px;

        gap: 8px;
    }

    .btn-contacto{

        padding: 12px 18px;

        font-size: 14px;
    }

    .btn-whatsapp{

        width: 58px;
        height: 58px;
    }

    .btn-whatsapp i{

        font-size: 24px;
    }
}


/* ======================================================
SERVICIOS VISUALES PREMIUM
====================================================== */

.servicios-visual{

    padding: 90px 8%;

    background: #f8fafc;
}

/* TOP */

.servicios-top{

    text-align: center;

    max-width: 780px;

    margin: 0 auto 60px;
}

.servicios-top span{

    color: #C4D63C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;
}

.servicios-top h2{

    font-size: 54px;

    line-height: 1.05;

    color: var(--primary);

    margin: 18px 0;
}

.servicios-top p{

    color: var(--text);

    font-size: 18px;

    line-height: 1.8;
}

/* GRID */

.servicios-galeria{

    display: grid;

    grid-template-columns:
    repeat(3,1fr);

    gap: 22px;
}

/* CARD */

.servicio-visual-card{

    position: relative;

    height: 260px;

    overflow: hidden;

    border-radius: 22px;

    text-decoration: none;

    display: block;
}

/* IMG */

.servicio-visual-card img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.servicio-visual-card:hover img{

    transform: scale(1.08);
}

/* OVERLAY */

.overlay-servicio{

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
    rgba(0,0,0,0.12),
    rgba(0,0,0,0.72));
}

/* CONTENIDO */

.contenido-servicio{

    position: absolute;

    left: 28px;
    bottom: 28px;

    z-index: 2;
}

.contenido-servicio span{

    display: block;

    color: white;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 8px;
}

.contenido-servicio p{

    color:
    rgba(255,255,255,0.82);

    font-size: 15px;

    line-height: 1.6;
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:768px){

    .servicios-visual{

        padding: 80px 5%;
    }

    .servicios-top h2{

        font-size: 38px;
    }

    .servicios-galeria{

        grid-template-columns: 1fr;
    }

    .servicio-visual-card{

        height: 240px;
    }

    .contenido-servicio span{

        font-size: 28px;
    }

}

/* ======================================================
PROYECTOS PREMIUM
====================================================== */

.hero-proyectos{

    position: relative;

    width: 100%;
    min-height: 70vh;

    padding: 170px 8% 110px;

    display: flex;
    align-items: center;

    background:
    linear-gradient(
    rgba(0,0,0,0.60),
    rgba(0,0,0,0.60)),
    url('../img/Sobre/pex.jpg');

    background-size: cover;
    background-position: center;
}

.hero-proyectos-contenido{

    position: relative;

    z-index: 2;

    max-width: 760px;
}

.hero-proyectos-contenido span{

    color: #C4D63C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 5px;
}

.hero-proyectos-contenido h1{

    font-size: 72px;

    line-height: 1;

    color: white;

    margin: 22px 0;
}

.hero-proyectos-contenido p{

    color:
    rgba(255,255,255,0.82);

    font-size: 19px;

    line-height: 1.9;

    max-width: 650px;
}

/* GALERIA */

.galeria-proyectos{

    padding: 100px 8%;

    background: #f8fafc;
}

.titulo-proyectos{

    text-align: center;

    max-width: 760px;

    margin: 0 auto 60px;
}

.titulo-proyectos span{

    color: #C4D63C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;
}

.titulo-proyectos h2{

    font-size: 52px;

    line-height: 1.1;

    color: var(--primary);

    margin-top: 18px;
}

/* GRID */

.grid-proyectos{

    display: grid;

    grid-template-columns:
    repeat(3,1fr);

    gap: 24px;
}

/* CARD */

.proyecto-card{

    position: relative;

    height: 340px;

    overflow: hidden;

    border-radius: 28px;

    cursor: pointer;
}

.proyecto-card img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.proyecto-card:hover img{

    transform: scale(1.08);
}

/* OVERLAY */

.overlay-card{

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.78));
}

/* CONTENIDO */

.contenido-card{

    position: absolute;

    left: 30px;
    bottom: 30px;

    z-index: 2;
}

.contenido-card small{

    color: #C4D63C;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;
}

.contenido-card h3{

    color: white;

    font-size: 36px;

    margin: 12px 0 10px;
}

.contenido-card p{

    color:
    rgba(255,255,255,0.78);

    font-size: 16px;
}

/* CTA */

.cta-proyectos{

    padding: 110px 8%;

    background: white;
}

.cta-box{

    background:
    linear-gradient(
    135deg,
    #1F242B,
    #3B4148);

    border-radius: 32px;

    padding: 90px;

    text-align: center;
}

.cta-box h2{

    color: white;

    font-size: 54px;

    margin-bottom: 22px;
}

.cta-box p{

    color:
    rgba(255,255,255,0.78);

    max-width: 720px;

    margin: 0 auto 35px;

    line-height: 1.9;
}

.btn-cta{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 36px;

    border-radius: 60px;

    background: #C4D63C;

    color: #071133;

    text-decoration: none;

    font-weight: 700;
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:992px){

    .grid-proyectos{

        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:768px){

    .hero-proyectos{

        min-height: auto;

        padding: 150px 5% 90px;
    }

    .hero-proyectos-contenido h1{

        font-size: 50px;
    }

    .hero-proyectos-contenido p{

        font-size: 17px;
    }

    .galeria-proyectos{

        padding: 80px 5%;
    }

    .titulo-proyectos h2{

        font-size: 38px;
    }

    .grid-proyectos{

        grid-template-columns: 1fr;
    }

    .proyecto-card{

        height: 300px;
    }

    .contenido-card h3{

        font-size: 30px;
    }

    .cta-proyectos{

        padding: 90px 5%;
    }

    .cta-box{

        padding: 60px 30px;
    }

    .cta-box h2{

        font-size: 38px;
    }

}


/* =========================================
HERO CONTACTO PREMIUM
========================================= */

.contacto-v2-hero{

    width: 100%;
    min-height: 58vh;

    display: flex;
    align-items: center;

    padding: 150px 8% 90px;

    position: relative;

    overflow: hidden;

    background:
    linear-gradient(
    90deg,
    rgba(8,15,38,.92) 0%,
    rgba(8,15,38,.75) 45%,
    rgba(8,15,38,.40) 100%
    ),
    url('../img/cont.jpeg');

    background-size: cover;
    background-position: center;
}

.contacto-v2-container{

    position: relative;
    z-index: 2;

    max-width: 640px;
}

.contacto-v2-tag{

    display: inline-block;

    margin-bottom: 20px;

    color: #C4D63C;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 6px;

    text-transform: uppercase;
}

.contacto-v2-container h1{

    font-size: clamp(52px, 5vw, 78px);

    line-height: .95;

    font-weight: 800;

    color: white;

    margin-bottom: 24px;

    letter-spacing: -3px;
}

.contacto-v2-container p{

    max-width: 560px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,.82);

    font-weight: 400;
}

/* FORMULARIO */

.contacto-v2-section{

    padding: 110px 8%;

    background: #F8FAFC;
}

.contacto-v2-grid{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.contacto-v2-form-box,
.contacto-v2-info{

    background: white;

    padding: 55px;

    border-radius: 35px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.contacto-v2-mini{

    color: #C4D63C;

    font-size: 13px;

    letter-spacing: 4px;

    font-weight: 700;
}

.contacto-v2-form-box h2,
.contacto-v2-info h2{

    font-size: 48px;

    line-height: 1.05;

    color: #0B132B;

    margin: 20px 0 25px;
}

.contacto-v2-input-grid{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.contacto-v2-form-box input,
.contacto-v2-form-box textarea{

    width: 100%;

    border: 1px solid #E2E8F0;

    border-radius: 18px;

    padding: 18px 22px;

    margin-bottom: 18px;

    font-size: 15px;

    font-family: 'Poppins', sans-serif;

    outline: none;
}

.contacto-v2-form-box textarea{

    min-height: 170px;

    resize: none;
}

.contacto-v2-form-box button{

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 18px;

    background: #0B132B;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;
}

/* INFO */

.contacto-v2-info p{

    color: #475569;

    line-height: 1.8;

    margin-bottom: 35px;
}

.contacto-v2-cards{

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contacto-v2-card{

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px;

    border-radius: 24px;

    background: #F8FAFC;
}

.contacto-v2-card i{

    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: #0B132B;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* BENEFICIOS */

.contacto-v2-beneficios{

    padding: 110px 8%;

    background: white;
}

.contacto-v2-title{

    text-align: center;

    max-width: 900px;

    margin: auto auto 70px;
}

.contacto-v2-title span{

    color: #C4D63C;

    letter-spacing: 5px;

    font-size: 13px;

    font-weight: 700;
}

.contacto-v2-title h2{

    font-size: 58px;

    line-height: 1.08;

    color: #0B132B;

    margin-top: 22px;
}

.contacto-v2-beneficios-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.contacto-v2-beneficio{

    background: #F8FAFC;

    padding: 45px 35px;

    border-radius: 28px;

    text-align: center;
}

.contacto-v2-beneficio i{

    width: 75px;
    height: 75px;

    margin: auto auto 25px;

    border-radius: 22px;

    background: #0B132B;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-v2-beneficio h3{

    font-size: 28px;

    color: #0B132B;

    margin-bottom: 16px;
}

/* MAPA */

.contacto-v2-mapa{

    padding: 0 8% 110px;

    background: white;
}

.contacto-v2-mapa iframe{

    width: 100%;

    height: 500px;

    border: none;

    border-radius: 35px;
}

/* CTA */

.contacto-v2-cta{

    padding: 0 8% 120px;

    background: white;
}

.contacto-v2-cta-box{

    background:
    linear-gradient(
    135deg,
    #071133,
    #111C44
    );

    padding: 90px 60px;

    border-radius: 40px;

    text-align: center;
}

.contacto-v2-cta-box span{

    color: #C4D63C;

    letter-spacing: 5px;

    font-size: 13px;

    font-weight: 700;
}

.contacto-v2-cta-box h2{

    color: white;

    font-size: 60px;

    line-height: 1.05;

    margin: 25px auto 35px;

    max-width: 850px;
}

.contacto-v2-btn{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 250px;
    height: 65px;

    border-radius: 60px;

    background: white;

    color: #0B132B;

    text-decoration: none;

    font-weight: 700;
}

/* RESPONSIVE */

@media(max-width:768px){

    .contacto-v2-grid,
    .contacto-v2-beneficios-grid{

        grid-template-columns: 1fr;
    }

    .contacto-v2-input-grid{

        grid-template-columns: 1fr;
    }

    .contacto-v2-container h1{

        font-size: 56px;
    }

    .contacto-v2-title h2,
    .contacto-v2-cta-box h2{

        font-size: 38px;
    }

    .contacto-v2-form-box,
    .contacto-v2-info{

        padding: 35px 25px;
    }
}

/* =========================================
HOME PROJECTS PREMIUM
========================================= */

.home-projects{

    position: relative;

    padding: 150px 8% 120px;

    background: white;

    border-top-left-radius: 70px;
    border-top-right-radius: 70px;

    margin-top: 120px;

    box-shadow:
    0 -20px 60px rgba(0,0,0,.04);
}
/* EFECTO DIVISOR PREMIUM */

.home-projects::before{

    content: "";

    position: absolute;

    top: -80px;
    left: 0;

    width: 100%;
    height: 80px;

    background:
    linear-gradient(
    to bottom,
    rgba(248,250,252,0),
    white
    );
}

.home-projects-header{

    max-width: 850px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;
}

.home-projects-header span{

    display: inline-block;

    margin-bottom: 20px;

    color: #C4D63C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 5px;
}

.home-projects-header h2{

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    color: #0B132B;

    margin-bottom: 25px;
}

.home-projects-header p{

    font-size: 18px;

    line-height: 1.8;

    color: #64748B;
}

/* GRID */

.home-projects-grid{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

/* CARD */

.home-project-card{

    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: 30px;

    text-decoration: none;

    display: block;
}

.home-project-card img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.home-project-overlay{

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
    180deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.75) 100%
    );
}

.home-project-content{

    position: absolute;

    left: 35px;
    bottom: 35px;

    z-index: 5;
}

.home-project-content span{

    display: inline-block;

    margin-bottom: 16px;

    color: #C4D63C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.home-project-content h3{

    font-size: 38px;

    line-height: 1.1;

    color: white;

    margin-bottom: 14px;
}

.home-project-content p{

    color: rgba(255,255,255,.85);

    font-size: 16px;

    line-height: 1.7;
}

/* HOVER */

.home-project-card:hover img{

    transform: scale(1.08);
}

/* BOTON */

.home-projects-button{

    margin-top: 60px;

    text-align: center;
}

/* RESPONSIVE */

@media(max-width:992px){

    .home-projects-grid{

        grid-template-columns: 1fr;
    }

    .home-project-card{

        height: 420px;
    }
}

/* =========================================================
CORPO HERO V2
SIN CONFLICTOS
========================================================= */

.corpo-hero-v2{

    width: 100%;

    min-height: 92vh;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 120px 8% 90px;

    background:
    url('../img/hero-construccion.jpg');

    background-size: cover;
    background-position: center;
}

/* OVERLAY */

.corpo-hero-overlay{

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
    90deg,
    rgba(6,12,38,.92) 0%,
    rgba(16,26,66,.84) 45%,
    rgba(37,45,74,.55) 100%
    );

    z-index: 1;
}

/* CONTAINER */

.corpo-hero-container{

    width: 100%;

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 340px;

    align-items: center;

    gap: 80px;
}

/* =========================================================
LEFT
========================================================= */

.corpo-hero-content{

    max-width: 620px;
}

.corpo-hero-content small{

    display: block;

    margin-bottom: 24px;

    color: #D4E157;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 7px;

    text-transform: uppercase;
}

/* TITLE */

.corpo-hero-content h1{

    font-size: clamp(48px, 5vw, 74px);

    line-height: .95;

    font-weight: 800;

    color: white;

    margin-bottom: 28px;

    letter-spacing: -3px;
}

/* TEXT */

.corpo-hero-content p{

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255,255,255,.82);

    margin-bottom: 40px;

    max-width: 560px;
}

/* =========================================================
BUTTONS
========================================================= */

.corpo-hero-buttons{

    display: flex;

    gap: 18px;

    flex-wrap: wrap;
}

/* BTN PRIMARY */

.corpo-btn-primary{

    height: 58px;

    padding: 0 34px;

    border-radius: 60px;

    background: white;

    color: #071133;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: .3s ease;
}

.corpo-btn-primary:hover{

    transform: translateY(-3px);
}

/* BTN SECONDARY */

.corpo-btn-secondary{

    height: 58px;

    padding: 0 34px;

    border-radius: 60px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.06);

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    backdrop-filter: blur(10px);

    transition: .3s ease;
}

.corpo-btn-secondary:hover{

    background: rgba(255,255,255,.12);
}

/* =========================================================
RIGHT BOX
========================================================= */

.corpo-hero-box{

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 28px;

    padding: 28px;

    backdrop-filter: blur(14px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.18);
}

/* LOGO */

.corpo-logo-wrap{

    width: 100%;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;
}

.corpo-logo-wrap img{

    max-width: 210px;

    max-height: 70px;

    object-fit: contain;
}

/* LINE */

.corpo-line{

    width: 100%;

    height: 1px;

    background: rgba(255,255,255,.10);

    margin-bottom: 24px;
}

/* CARD TITLE */

.corpo-hero-box h3{

    color: white;

    font-size: 24px;

    margin-bottom: 16px;

    font-weight: 700;
}

/* CARD TEXT */

.corpo-hero-box p{

    color: rgba(255,255,255,.78);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 26px;
}

/* TAGS */

.corpo-tags{

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.corpo-tags span{

    padding: 10px 16px;

    border-radius: 40px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.08);

    color: white;

    font-size: 13px;

    font-weight: 600;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .corpo-hero-container{

        grid-template-columns: 1fr;
    }

    .corpo-hero-box{

        max-width: 420px;
    }
}

@media(max-width:768px){

    .corpo-hero-v2{

        padding: 130px 6% 80px;
    }

    .corpo-hero-content h1{

        font-size: 52px;
    }

    .corpo-hero-buttons{

        flex-direction: column;
    }

    .corpo-btn-primary,
    .corpo-btn-secondary{

        width: 100%;
    }
}

/* =========================================================
HEADER PREMIUM NUEVO
SIN CONFLICTOS
========================================================= */

.corpo-header-premium{

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 105px;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,0,0,.05);

    z-index: 999999;
}

.corpo-header-wrapper{

    width: 100%;
    max-width: 1450px;

    height: 100%;

    margin: auto;

    padding: 0 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

/* =========================================================
LOGO
========================================================= */

.corpo-logo-area{

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    text-decoration: none;
}

.corpo-logo-area img{

    width: 82px;

    height: auto;

    object-fit: contain;

    display: block;
}

/* =========================================================
NAVBAR
========================================================= */

.nova-navbar-ultra{

    display: flex;

    align-items: center;

    gap: 52px;
}

.nova-link-ultra{

    position: relative;

    text-decoration: none;

    color: #071133;

    font-size: 17px;

    font-weight: 600;

    transition: .3s ease;
}

.nova-link-ultra:hover{

    color: #0D1A4A;
}

/* LINEA */

.nova-link-ultra::after{

    content: '';

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 0;

    height: 3px;

    border-radius: 50px;

    background: #C4D63C;

    transition: .3s ease;
}

.nova-link-ultra:hover::after{

    width: 100%;
}

/* =========================================================
PAGINA ACTIVA
========================================================= */

.nova-page-current{

    color: #071133;

    font-weight: 700;
}

.nova-page-current::after{

    width: 100%;
}

/* =========================================================
BOTON HEADER
========================================================= */

.corpo-btn-header{

    height: 58px;

    padding: 0 36px;

    border-radius: 60px;

    background: #C4D63C;

    color: #071C48;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s ease;
}

.corpo-btn-header:hover{

    background: #0F1E52;

    transform: translateY(-2px);
}

/* =========================================================
HAMBURGUESA
========================================================= */

.corpo-menu-toggle{

    width: 48px;
    height: 48px;

    border: none;

    background: transparent;

    display: none;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 6px;

    cursor: pointer;
}

.corpo-menu-toggle span{

    width: 28px;

    height: 3px;

    border-radius: 50px;

    background: #071133;

    transition: .3s ease;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .corpo-header-wrapper{

        padding: 0 20px;
    }

    .corpo-logo-area img{

        width: 68px;
    }

    .corpo-btn-header{

        display: none;
    }

    .corpo-menu-toggle{

        display: flex;

        position: relative;

        z-index: 999999;
    }

    .nova-navbar-ultra{

        position: fixed;

        top: 0;
        right: -100%;

        width: 300px;

        height: 100vh;

        background: white;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 120px 40px;

        gap: 30px;

        transition: .4s ease;

        z-index: 999998;

        box-shadow:
        -10px 0 40px rgba(0,0,0,.10);
    }

    .nova-navbar-ultra.active{

        right: 0;
    }

    .nova-link-ultra{

        font-size: 20px;
    }

    .nova-link-ultra::after{

        bottom: -6px;
    }
}

/* =====================================================
HERO PREMIUM INDEX - CORPO
===================================================== */

.hero-corpo-home{

    position: relative;

    width: 100%;
    min-height: 78vh;

    padding: 120px 8% 70px;

    overflow: hidden;

    background:
    linear-gradient(
    120deg,
    rgba(7,12,28,0.82) 0%,
    rgba(18,28,48,0.70) 45%,
    rgba(45,52,63,0.62) 100%
    ),
    url("../img/3.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* EFECTOS */

.hero-corpo-home::before{

    content: "";

    position: absolute;

    top: -260px;
    right: -260px;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
    radial-gradient(
    rgba(196,214,60,0.10),
    transparent 70%);
}

.hero-corpo-home::after{

    content: "";

    position: absolute;

    bottom: -180px;
    left: -180px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
    radial-gradient(
    rgba(255,255,255,0.04),
    transparent 70%);
}

/* OVERLAY */

.corpo-home-overlay{

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,0.34),
    rgba(0,0,0,0.12));
}

/* GRID */

.corpo-home-grid{

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0,1fr) 420px;

    align-items: center;

    gap: 70px;
}

/* TEXTO */

.corpo-home-left{

    max-width: 720px;
}

.corpo-home-mini{

    display: inline-block;

    color: #C4D63C;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 6px;

    margin-bottom: 24px;
}

.corpo-home-left h1{

    font-size: 64px;

    line-height: 0.95;

    letter-spacing: -3px;

    color: #ffffff;

    margin-bottom: 24px;

    max-width: 700px;
}

.corpo-home-left p{

    font-size: 19px;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);

    max-width: 640px;

    margin-bottom: 38px;
}

/* BOTONES */

.corpo-home-buttons{

    display: flex;

    gap: 16px;

    flex-wrap: wrap;
}

/* BOTON PRINCIPAL */

.corpo-btn-primary{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border-radius: 60px;

    background: #C4D63C;
    color: #071C48;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.corpo-btn-primary:hover{

    transform: translateY(-3px);

    background: #C4D63C;
}

/* BOTON SECUNDARIO */

.btn-outline{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    border-radius: 60px;

    border: 1px solid rgba(255,255,255,0.18);

    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.btn-outline:hover{

    background: rgba(255,255,255,0.06);

    transform: translateY(-3px);
}

/* CARD */

.corpo-home-card-wrap{

    display: flex;

    justify-content: center;
}

.corpo-home-card{

    position: relative;

    width: 100%;
    max-width: 420px;

    padding: 26px;

    border-radius: 32px;

    overflow: hidden;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.04)
    );

    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.20);
}

/* AREA SUPERIOR LOGO */

.corpo-home-card::before{

    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
    radial-gradient(
    rgba(196,214,60,0.16),
    transparent 70%);
}

/* LOGO */

.corpo-home-logo{

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    padding: 30px 24px;

    margin-bottom: 26px;

    border-radius: 24px;

    background: rgba(255,255,255,0.92);

    border: 1px solid rgba(255,255,255,0.65);

    box-shadow:
    0 12px 30px rgba(0,0,0,0.10);

    overflow: hidden;
}

.corpo-home-logo img{

    width: 100%;
    max-width: 250px;

    object-fit: contain;

    filter:
    drop-shadow(0 8px 18px rgba(0,0,0,0.10));
}


/* DIVIDER */

.corpo-home-divider{

    width: 100%;
    height: 1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.14),
    transparent);

    margin: 22px 0;
}

/* TITULO */

.corpo-home-card h3{

    color: white;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.15;

    margin-bottom: 18px;
}

/* TEXTO */

.corpo-home-card p{

    color: rgba(255,255,255,0.82);

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 28px;
}

/* TAGS */

.corpo-home-tags{

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.corpo-home-tags span{

    padding: 11px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    color: white;

    font-size: 12px;
    font-weight: 600;

    transition: 0.3s ease;
}

.corpo-home-tags span:hover{

    background: rgba(196,214,60,0.14);

    border-color: rgba(196,214,60,0.24);

    transform: translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .corpo-home-grid{

        grid-template-columns: 1fr 360px;

        gap: 50px;
    }

    .corpo-home-left h1{

        font-size: 56px;
    }
}

@media(max-width:980px){

    .hero-corpo-home{

        padding: 120px 7% 80px;
    }

    .corpo-home-grid{

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .corpo-home-card-wrap{

        justify-content: flex-start;
    }

    .corpo-home-card{

        max-width: 100%;
    }
}

@media(max-width:768px){

    .hero-corpo-home{

        min-height: auto;

        padding: 110px 7% 70px;
    }

    .corpo-home-left h1{

        font-size: 48px;

        line-height: 1;
    }

    .corpo-home-left p{

        font-size: 17px;
    }
}

@media(max-width:520px){

    .hero-corpo-home{

        padding: 105px 6% 65px;
    }

    .corpo-home-left h1{

        font-size: 40px;

        letter-spacing: -2px;
    }

    .corpo-home-left p{

        font-size: 16px;

        line-height: 1.8;
    }

    .corpo-home-buttons{

        flex-direction: column;
    }

    .corpo-home-buttons a{

        width: 100%;

        text-align: center;
    }

    .corpo-home-card{

        padding: 24px;
    }

    .corpo-home-card h3{

        font-size: 24px;
    }

    .corpo-home-tags span{

        width: 100%;

        text-align: center;
    }
}

/* ======================================================
HERO PREMIUM PORTAFOLIO
====================================================== */

.hero-portafolio-premium{

    position: relative;

    width: 100%;
    min-height: 64vh;

    padding: 105px 7% 55px;

    overflow: hidden;

    background:
    linear-gradient(
    120deg,
    rgba(7,12,28,0.84) 0%,
    rgba(18,28,48,0.72) 45%,
    rgba(45,52,63,0.64) 100%),
    url("../img/4.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-portafolio-premium::before{

    content: "";

    position: absolute;

    top: -220px;
    right: -220px;

    width: 520px;
    height: 520px;

    background:
    radial-gradient(
    rgba(196,214,60,0.10),
    transparent 70%);
}

.hero-portafolio-overlay{

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.12));
}

/* GRID */

.hero-portafolio-grid{

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
    minmax(0,1fr) 360px;

    gap: 45px;

    align-items: center;
}

/* IZQUIERDA */

.hero-portafolio-left{

    max-width: 760px;
}

.hero-portafolio-mini{

    display: inline-block;

    color: #C4D63C;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 6px;

    margin-bottom: 22px;
}

.hero-portafolio-left h1{

    font-size: 64px;

    line-height: 0.95;

    color: white;

    letter-spacing: -4px;

    margin-bottom: 24px;
}

.hero-portafolio-left p{

    max-width: 620px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,0.84);

    margin-bottom: 34px;
}

/* BOTONES */

.hero-portafolio-buttons{

    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* CARD */

.hero-portafolio-card-wrap{

    display: flex;
    justify-content: center;
}

.hero-portafolio-card{

    width: 100%;
    max-width: 360px;

    padding: 24px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.10);

    border:
    1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.20);
}

/* LOGO */

.hero-portafolio-logo{

    width: 100%;

    padding: 18px;

    border-radius: 22px;

    background:
    rgba(255,255,255,0.96);

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 24px;
}

.hero-portafolio-logo img{

    width: 100%;
    max-width: 210px;

    object-fit: contain;
}

/* DIVIDER */

.hero-portafolio-divider{

    width: 100%;
    height: 1px;

    background:
    rgba(255,255,255,0.12);

    margin-bottom: 24px;
}

/* TEXTO CARD */

.hero-portafolio-card h3{

    color: white;

    font-size: 42px;

    line-height: 1;

    margin-bottom: 18px;
}

.hero-portafolio-card p{

    color:
    rgba(255,255,255,0.78);

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 26px;
}

/* TAGS */

.hero-portafolio-tags{

    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-portafolio-tags span{

    padding: 10px 16px;

    border-radius: 50px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    color: white;

    font-size: 13px;
    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero-portafolio-grid{

        grid-template-columns: 1fr;
    }

    .hero-portafolio-left h1{

        font-size: 54px;
    }

    .hero-portafolio-card{

        max-width: 450px;
    }
}

@media(max-width:700px){

    .hero-portafolio-premium{

        padding: 115px 6% 65px;
    }

    .hero-portafolio-left h1{

        font-size: 44px;
    }

    .hero-portafolio-left p{

        font-size: 15px;
    }

    .hero-portafolio-card h3{

        font-size: 34px;
    }

    .hero-portafolio-card{

        max-width: 100%;
    }
}

/* ======================================================
GRACIAS PAGE - CORPO
====================================================== */

.gracias-page{

    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;

    overflow: hidden;

    background:
    linear-gradient(
    120deg,
    rgba(7,12,28,0.90) 0%,
    rgba(18,28,48,0.82) 45%,
    rgba(45,52,63,0.74) 100%),
    url("../img/3.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gracias-overlay{

    position: absolute;
    inset: 0;

    background:
    radial-gradient(
    rgba(196,214,60,0.08),
    transparent 70%);
}

.gracias-container{

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 720px;

    padding: 60px 50px;

    border-radius: 32px;

    text-align: center;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.25);
}

.gracias-logo-box{

    width: 100%;
    max-width: 320px;

    margin: 0 auto 35px;

    padding: 25px;

    border-radius: 24px;

    background: rgba(255,255,255,0.96);
}

.gracias-logo-box img{

    width: 100%;

    display: block;
}

.gracias-icon{

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #C4D63C;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
    0 15px 35px rgba(196,214,60,0.35);
}

.gracias-icon i{

    color: #0B132B;

    font-size: 34px;
}

.gracias-mini{

    display: inline-block;

    color: #C4D63C;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 18px;
}

.gracias-container h1{

    font-size: 58px;

    line-height: 1;

    color: white;

    margin-bottom: 24px;
}

.gracias-container p{

    font-size: 18px;

    line-height: 1.9;

    color: rgba(255,255,255,0.78);

    max-width: 580px;

    margin: auto auto 40px;
}

.gracias-buttons{

    display: flex;
    justify-content: center;
    gap: 18px;

    flex-wrap: wrap;
}

.gracias-btn-primary{

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 17px 34px;

    border-radius: 50px;

    background: #C4D63C;

    color: #0B132B;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s;
}

.gracias-btn-primary:hover{

    transform: translateY(-3px);

    box-shadow:
    0 15px 30px rgba(196,214,60,0.25);
}

.gracias-btn-secondary{

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 17px 34px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.12);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.gracias-btn-secondary:hover{

    background: rgba(255,255,255,0.06);
}

/* RESPONSIVE */

@media(max-width:768px){

    .gracias-container{

        padding: 45px 28px;
    }

    .gracias-container h1{

        font-size: 42px;
    }

    .gracias-container p{

        font-size: 16px;
    }

}

/* =========================================================
GALERÍA MODERNA PROYECTOS
========================================================= */

.corpo-modern-gallery{

    padding: 120px 8%;

    background: #F8FAFC;
}

/* TITULO */

.corpo-modern-title{

    max-width: 900px;

    margin: auto auto 90px;

    text-align: center;
}

.corpo-modern-title span{

    color: #C4D63C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 5px;
}

.corpo-modern-title h2{

    margin-top: 22px;

    font-size: 58px;

    line-height: 1.08;

    color: #071133;
}

.corpo-modern-title p{

    margin-top: 25px;

    font-size: 18px;

    line-height: 1.9;

    color: #475569;
}

/* BLOQUE */

.corpo-category-block{

    margin-bottom: 100px;
}

.corpo-category-header{

    margin-bottom: 40px;
}

.corpo-category-header span{

    color: #C4D63C;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;
}

.corpo-category-header h3{

    margin-top: 12px;

    font-size: 42px;

    color: #071133;
}

/* GRID */

.corpo-gallery-grid-new{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 28px;
}

/* IMAGEN */

.corpo-gallery-grid-new img{

    width: 100%;

    height: 320px;

    object-fit: cover;

    border-radius: 24px;

    cursor: pointer;

    transition: .45s ease;

    box-shadow:
    0 12px 30px rgba(0,0,0,.06);
}

.corpo-gallery-grid-new img:hover{

    transform: translateY(-8px) scale(1.02);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}

/* RESPONSIVE */

@media(max-width:992px){

    .corpo-gallery-grid-new{

        grid-template-columns: repeat(2,1fr);
    }

    .corpo-modern-title h2{

        font-size: 42px;
    }
}

@media(max-width:768px){

    .corpo-gallery-grid-new{

        grid-template-columns: 1fr;
    }

    .corpo-modern-title h2{

        font-size: 34px;
    }

    .corpo-category-header h3{

        font-size: 30px;
    }
}

/* =========================================================
LIGHTBOX PREMIUM
========================================================= */

.corpo-lightbox-modal{

    position: fixed;

    inset: 0;

    background: rgba(4,8,22,.92);

    backdrop-filter: blur(8px);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;

    z-index: 9999999;

    padding: 40px;
}

/* ACTIVO */

.corpo-lightbox-modal.active{

    opacity: 1;

    visibility: visible;
}

/* IMAGEN */

.corpo-lightbox-modal img{

    max-width: 90%;

    max-height: 88vh;

    border-radius: 24px;

    object-fit: contain;

    transform: scale(.92);

    transition: .35s ease;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);
}

/* ANIMACION */

.corpo-lightbox-modal.active img{

    transform: scale(1);
}

/* BOTON CERRAR */

.corpo-lightbox-close{

    position: absolute;

    top: 28px;
    right: 40px;

    font-size: 56px;

    color: white;

    cursor: pointer;

    transition: .3s ease;

    line-height: 1;
}

.corpo-lightbox-close:hover{

    transform: rotate(90deg);
}

/* CURSOR */

.corpo-lightbox-trigger{

    cursor: pointer;
}

/* MOBILE */

@media(max-width:768px){

    .corpo-lightbox-modal{

        padding: 20px;
    }

    .corpo-lightbox-close{

        top: 20px;
        right: 24px;

        font-size: 44px;
    }

    .corpo-lightbox-modal img{

        max-width: 100%;
    }
}
/* ======================================================
NUEVO HERO CONTACTO
====================================================== */

.nova-contact-hero{

    position: relative;

    width: 100%;

    min-height: 72vh;

    padding: 140px 8% 90px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
    linear-gradient(
    rgba(7,12,28,0.72),
    rgba(7,12,28,0.72)),
    url('../img/Sobre/cta3.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.nova-contact-overlay{

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,0.28),
    rgba(0,0,0,0.10));
}

.nova-contact-wrapper{

    position: relative;
    z-index: 2;

    max-width: 760px;
}

.nova-contact-mini{

    display: inline-block;

    color: #C4D63C;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 6px;

    margin-bottom: 22px;
}

.nova-contact-wrapper h1{

    font-size: 82px;

    line-height: 0.95;

    letter-spacing: -4px;

    color: white;

    margin-bottom: 28px;
}

.nova-contact-wrapper p{

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255,255,255,0.88);

    max-width: 640px;
}

/* ======================================================
RESPONSIVE
====================================================== */

@media(max-width:768px){

    .nova-contact-hero{

        min-height: auto;

        padding: 130px 7% 80px;

        align-items: flex-end;
    }

    .nova-contact-mini{

        font-size: 11px;

        letter-spacing: 5px;

        margin-bottom: 18px;
    }

    .nova-contact-wrapper h1{

        font-size: 48px;

        line-height: 0.95;

        letter-spacing: -2px;

        margin-bottom: 22px;
    }

    .nova-contact-wrapper p{

        font-size: 15px;

        line-height: 1.7;
    }

}

@media(max-width:480px){

    .nova-contact-wrapper h1{

        font-size: 44px;
    }

}
@media(max-width:768px){

    .nova-contact-hero{

        padding-top: 210px !important;

        min-height: 88vh;
    }

}