/*==================================================
NAVBAR
==================================================*/

.navbar{

    background:#050505;

    border-bottom:1px solid rgba(255,196,0,.10);

    padding:18px 0;

    transition:.35s;

    z-index:9999;

}

/* efecto al hacer scroll */
.navbar.scrolled{

    background:rgba(5,5,5,.97);

    backdrop-filter:blur(14px);

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

/*=========================
LOGO
=========================*/

.logo{

    height:118px;

    width:auto;

    transition:.30s;

}

.logo:hover{

    transform:scale(1.03);

}

/*=========================
MENÚ
=========================*/

.navbar-nav{

    gap:12px;

}

.nav-link{

    color:#ffffff;

    font-size:16px;

    font-weight:500;

    padding:12px 16px !important;

    position:relative;

    transition:.30s;

}

.nav-link:hover{

    color:#d8b04b;

}

.nav-link.active{

    color:#d8b04b;

}

/* línea inferior */

.nav-link::after{

    content:"";

    position:absolute;

    left:15px;

    bottom:5px;

    width:0;

    height:2px;

    background:#d8b04b;

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:calc(100% - 30px);

}

/*=========================
BOTÓN
=========================*/

.btn-whatsapp{

    color:#fff;

    border:1px solid #d8b04b;

    border-radius:40px;

    padding:13px 26px;

    text-decoration:none;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.30s;

}

.btn-whatsapp:hover{

    background:#d8b04b;

    color:#000;

    transform:translateY(-2px);

}

/*=========================
MOBILE
=========================*/

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

@media (max-width:1199px){

    .navbar-collapse{

        background:#090909;

        margin-top:20px;

        border-radius:12px;

        padding:25px;

    }

    .navbar-nav{

        gap:0;

    }

    .nav-link{

        padding:15px 0 !important;

    }

    .btn-whatsapp{

        margin-top:20px;

        justify-content:center;

    }

}

@media (max-width:768px){

    .logo{

        height:46px;

    }

    .navbar{

        padding:12px 0;

    }

}

/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background-image:url("img/fondo2.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

/* fondo */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at right,
    rgba(212,175,55,.15),
    transparent 55%);

    pointer-events:none;

}

/*=====================*/

.hero-subtitle{

    color:#d8b04b;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    display:block;

    margin-bottom:20px;

}

.hero-title{

    font-size:70px;

    font-weight:800;

    line-height:1.05;

    color:#fff;

    margin-bottom:30px;

}

.hero-title span{

    color:#d8b04b;

}

.hero-description{

    font-size:22px;

    line-height:1.7;

    color:#bcbcbc;

    margin-bottom:40px;

}

/*====================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-gold{

    background:#d8b04b;

    color:#111;

    padding:18px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.30s;

}

.btn-gold:hover{

    transform:translateY(-3px);

}

.btn-outline{

    border:1px solid #555;

    color:#fff;

    padding:18px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:.30s;

}

.btn-outline:hover{

    border-color:#d8b04b;

    color:#d8b04b;

}

/*====================*/

.hero-image{

    width:100%;

    animation:float 6s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-8px);}
100%{transform:translateY(0);}

}

/*====================*/

@media(max-width:991px){

.hero{

padding-top:120px;

text-align:center;

}

.hero-title{

font-size:48px;

}

.hero-description{

font-size:18px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:40px;

}

}

@media(max-width:576px){

.hero-title{

font-size:38px;

}

.hero-description{

font-size:16px;

}

.btn-gold,
.btn-outline{

width:100%;

justify-content:center;

display:flex;

}

}

/*==================================
SOLUCIONES
===================================*/

.home-services{

    padding:90px 0;

    background:#090909;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#d8b04b;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    color:#fff;

    font-size:42px;

    margin-top:10px;

    font-weight:700;

}

/*========================*/

.service-card{

    display:block;

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:470px;

    text-decoration:none;

}

.service-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.15)
    );

}

.overlay{

    position:absolute;

    left:35px;

    right:35px;

    bottom:35px;

    z-index:2;

}

.overlay h3{

    color:#fff;

    font-size:30px;

    font-weight:700;

    margin-bottom:15px;

}

.overlay p{

    color:#ddd;

    line-height:1.7;

}

.overlay span{

    display:inline-block;

    margin-top:20px;

    color:#d8b04b;

    font-weight:600;

}

.service-card:hover{

    transform:translateY(-8px);

    transition:.35s;

}

/*==================================
WHY US
===================================*/

.why-us{

    background:#080808;

    padding:100px 0;

}

.section-subtitle{

    color:#d8b04b;

    font-size:14px;

    letter-spacing:2px;

    display:block;

    margin-bottom:15px;

}

.why-us h2{

    color:#fff;

    font-size:55px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:25px;

}

.why-us h2 span{

    color:#d8b04b;

}

.why-us p{

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:30px;

}

.why-list{

    list-style:none;

    padding:0;

}

.why-list li{

    color:#fff;

    margin-bottom:18px;

    font-size:18px;

}

.why-list i{

    color:#d8b04b;

    margin-right:10px;

}

.benefit-box{

    background:#111;

    border:1px solid #252525;

    border-radius:18px;

    padding:30px;

    margin-bottom:25px;

    transition:.35s;

}

.benefit-box:hover{

    transform:translateY(-6px);

    border-color:#d8b04b;

}

.benefit-box i{

    font-size:45px;

    color:#d8b04b;

    margin-bottom:15px;

}

.benefit-box h4{

    color:#fff;

    margin-bottom:15px;

}

.benefit-box p{

    margin:0;

    color:#bdbdbd;

}

@media(max-width:991px){

.why-us{

text-align:center;

}

.why-list{

margin-bottom:40px;

}

.benefit-box{

margin-top:20px;

}

}

/*====================================================

NUESTRO PROCESO

======================================================*/

.process{

    padding:110px 0;

    background:#050505;

}

.process .section-title{

    text-align:center;

    margin-bottom:80px;

}

.process .section-title span{

    color:#d8b04b;

    letter-spacing:2px;

    font-size:14px;

}

.process .section-title h2{

    color:#fff;

    font-size:48px;

    margin:15px 0;

    font-weight:700;

}

.process .section-title p{

    color:#9d9d9d;

    max-width:700px;

    margin:auto;

}

.process-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.process-line{

    position:absolute;

    top:75px;

    left:8%;

    right:8%;

    height:3px;

    background:linear-gradient(
    90deg,
    #6e4d10,
    #d8b04b,
    #6e4d10);

    z-index:0;

}

.step{

    position:relative;

    z-index:2;

    text-align:center;

    background:#0c0c0c;

    border:1px solid rgba(255,196,0,.08);

    border-radius:22px;

    padding:40px 25px;

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

    border-color:#d8b04b;

    box-shadow:0 25px 60px rgba(216,176,75,.12);

}

.step-number{

    width:55px;

    height:55px;

    margin:auto;

    border-radius:50%;

    background:#d8b04b;

    color:#111;

    font-size:20px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.step-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#111;

    display:flex;

    align-items:center;

    justify-content:center;

}

.step-icon img{

    width:52px;

}

.step h3{

    color:#fff;

    font-size:23px;

    margin-bottom:18px;

}

.step p{

    color:#aaa;

    line-height:1.8;

}

@media(max-width:991px){

.process-wrapper{

grid-template-columns:1fr;

}

.process-line{

display:none;

}

.step{

margin-bottom:25px;

}

}

/*========================
IMAGEN DEL PASO
=========================*/

.step-image{

    width: 220px;

    height:220px;

    overflow:hidden;

    border-radius:18px;

    margin-bottom:25px;

    border:1px solid rgba(216,176,75,.15);

}

.step-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.step:hover .step-image img{

    transform:scale(1.08);

}

/*======================================

ECOSISTEMA

=======================================*/

.ecosystem{

    background:#070707;

    padding:120px 0;

}

.ecosystem-area{

    position:relative;

    width:1100px;

    height:760px;

    margin:auto;

}

/* Smartphone */

.phone{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:300px;

    z-index:20;

}

.phone img{

    width:100%;

}

/* Tarjetas */

.item{

    position:absolute;

    width:230px;

    background:#111;

    border:1px solid rgba(216,176,75,.12);

    border-radius:20px;

    padding:20px;

    text-align:center;

    transition:.35s;

}

.item:hover{

    transform:translateY(-8px);

    border-color:#d8b04b;

    box-shadow:0 25px 60px rgba(216,176,75,.15);

}

.item img{

    width:95px;

    margin-bottom:12px;

}

.item h4{

    color:#fff;

    margin-bottom:10px;

}

.item p{

    color:#bdbdbd;

    line-height:1.7;

    margin:0;

}

/*==========================
POSICIONES PREMIUM
===========================*/

/* Arriba izquierda */

.home{

    left:20px;
    top:20px;

}

/* Centro izquierda */

.access{

    left:20px;
    top:285px;

}

/* Abajo izquierda */

.car{

    left:20px;
    bottom:5px;
   

}


/* Arriba derecha */

.office{

    right:20px;
    top:20px;

}

/* Centro derecha */

.alarm{

    right:20px;
    top:285px;

}

/* Abajo derecha */

.camera{

    right:20px;
    bottom:20px;

}


/*==========================
SMARTPHONE
===========================*/

.phone{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:330px;

    z-index:20;

}

.phone img{

    width:100%;
}

/* Líneas */

.ecosystem-area::before{

    content:"";

    position:absolute;

    inset:0;

    background:url(img/lines.webp) center no-repeat;

    background-size:contain;

    opacity:.8;

}

/* Responsive */

@media(max-width:1200px){

.ecosystem-area{

width:100%;

height:auto;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.phone{

position:relative;

left:auto;

top:auto;

transform:none;

grid-column:1/3;

margin:auto;

margin-bottom:40px;

}

.item{

position:relative;

left:auto;

right:auto;

top:auto;

bottom:auto;

width:100%;

}

.ecosystem-area::before{

display:none;

}

}

@media(max-width:768px){

.ecosystem-area{

grid-template-columns:1fr;

}

.phone{

grid-column:1;

width:240px;

}

}

/*==================================

CONEXIONES SVG

===================================*/

.connections{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:1;

    pointer-events:none;

}

.connections path{

    fill:none;

    stroke:#D8B04B;

    stroke-width:3;

    stroke-linecap:round;

    stroke-linejoin:round;

    opacity:.55;

}

.node{

    fill:#FFD972;

    filter:url(#glow);

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        r:5;
        opacity:.6;

    }

    50%{

        r:8;
        opacity:1;

    }

    100%{

        r:5;
        opacity:.6;

    }

}

/*======================================

FOOTER

=======================================*/

.footer{

    background:#080808;

    padding:90px 0 30px;

    border-top:1px solid rgba(216,176,75,.15);

}

.footer-logo{

    width:250px;

    margin-bottom:25px;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

}

.footer-text{

    color:#9d9d9d;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:15px;

    color:#bdbdbd;

}

.footer ul li i{

    color:#d8b04b;

    margin-right:10px;

}

.footer ul li a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#d8b04b;

}

.social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social a{

    width:48px;

    height:48px;

    border:1px solid rgba(216,176,75,.25);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#d8b04b;

    font-size:22px;

    transition:.35s;

}

.social a:hover{

    background:#d8b04b;

    color:#000;

    transform:translateY(-5px);

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:60px 0 30px;

}

.footer-copy{

    text-align:center;

    color:#777;

    font-size:15px;

}

/*======================================

CTA FINAL

=======================================*/

.cta-final{

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #0a0a0a,
        #121212
    );

    border-top:1px solid rgba(216,176,75,.15);

    border-bottom:1px solid rgba(216,176,75,.15);

}

.cta-tag{

    color:#D8B04B;

    font-weight:600;

    letter-spacing:2px;

}

.cta-final h2{

    color:#fff;

    font-size:56px;

    margin:20px 0;

    line-height:1.2;

}

.cta-final p{

    color:#bdbdbd;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-gold{

    background:#D8B04B;

    color:#000;

    padding:18px 40px;

    border-radius:50px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.btn-gold:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(216,176,75,.30);

}

.btn-outline{

    border:1px solid #D8B04B;

    color:#D8B04B;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.btn-outline:hover{

    background:#D8B04B;

    color:#000;

}

.cta-final img{

    max-width:470px;

    filter:drop-shadow(0 0 60px rgba(216,176,75,.30));

}



