html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:white;
}
body {
    padding-top: 90px;
}
header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;

    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;
}

.logo img{
    height:110px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#2D8CFF;
}

.btn-cotizar{
    text-decoration:none;

    padding:12px 22px;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        #2D8CFF,
        #9C27FF,
        #FF2D95
    );

    color:white;
    font-weight:600;
}

.btn-cotizar:hover{
    transform:translateY(-2px);
}
.hero{

    min-height:100vh;

    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    radial-gradient(circle at top left,#2D8CFF15,transparent 35%),
    radial-gradient(circle at bottom right,#FF2D9515,transparent 35%),
    #050505;

}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:3.8rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:1.2rem;
    color:#cfcfcf;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary{
    text-decoration:none;
    color:white;

    padding:15px 30px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #2D8CFF,
        #9C27FF,
        #FF2D95
    );

    font-weight:600;
}

.btn-secondary{
    text-decoration:none;
    color:white;

    padding:15px 30px;

    border-radius:50px;

    border:1px solid #2D8CFF;
}
.hero-badge{
    display:inline-block;
    padding:10px 20px;
    margin-bottom:25px;

    border:1px solid rgba(255,255,255,0.15);
    border-radius:30px;

    color:#9CA3AF;
    font-size:0.85rem;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;

    display:flex;
    flex-direction:column;
    gap:25px;
}

.stats-card{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    padding:30px;

    backdrop-filter:blur(10px);
}

.stats-card h3{
    font-size:2.5rem;
    margin-bottom:10px;

    background:linear-gradient(
        90deg,
        #2D8CFF,
        #9C27FF,
        #FF2D95
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

.stats-card span{
    color:#b5b5b5;
}
.hero-right{
    flex:1;
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-laptop{
    width:100%;
    max-width:750px;

    animation:float 5s ease-in-out infinite;
}

.floating-card{
    position:absolute;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.1);

    backdrop-filter:blur(12px);

    padding:20px;

    border-radius:16px;

    min-width:180px;
}

.floating-card h3{
    font-size:1.8rem;

    background:linear-gradient(
        90deg,
        #2D8CFF,
        #9C27FF,
        #FF2D95
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

.card-1{
    top:10%;
    left:-20px;
}

.card-2{
    bottom:15%;
    right:-20px;
}
.page-hero{
    min-height:60vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    max-width:1200px;
    margin:auto;

    padding:120px 40px 80px;
}

.page-hero-content{
    max-width:900px;
}

.page-tag{
    display:inline-block;

    padding:10px 20px;

    border:1px solid rgba(255,255,255,0.1);

    border-radius:30px;

    color:#9CA3AF;

    margin-bottom:25px;
}

.page-hero h1{

    font-size:4.5rem;

    line-height:1.1;

    margin-bottom:25px;

}

.page-hero p{
    color:#b5b5b5;

    font-size:1.1rem;

    line-height:1.8;
}
.services-section{
    max-width:1400px;
    margin:auto;
    padding:80px 40px 120px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px;

    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);

    border-color:#9C27FF;

    box-shadow:0 0 30px rgba(156,39,255,0.15);
}

.service-number{
    font-size:0.9rem;

    color:#9C27FF;

    margin-bottom:20px;

    font-weight:600;

    letter-spacing:2px;
}

.service-card h2{
    font-size:2rem;

    margin-bottom:15px;
}

.service-card p{
    color:#b5b5b5;

    line-height:1.8;

    margin-bottom:25px;
}

.service-card ul{
    list-style:none;
}

.service-card li{
    color:#ffffff;

    margin-bottom:12px;

    position:relative;

    padding-left:20px;
}

.service-card li::before{
    content:"•";

    color:#FF2D95;

    position:absolute;

    left:0;
}
.process-section{
    max-width:1400px;
    margin:auto;
    padding:120px 40px;
}

.section-title{
    text-align:center;
    margin-bottom:80px;
}

.section-title span{
    color:#9C27FF;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:3rem;
    margin-top:20px;
}

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

.process-step{
    text-align:center;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px 25px;
}

.step-number{
    width:60px;
    height:60px;

    margin:auto;
    margin-bottom:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #2D8CFF,
        #9C27FF,
        #FF2D95
    );

    color:white;
    font-weight:700;
}

.process-step h3{
    margin-bottom:15px;
}

.process-step p{
    color:#b5b5b5;
    line-height:1.8;
}
.faq-section{
    max-width:1200px;
    margin:auto;
    padding:120px 40px;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    padding:30px;
}

.faq-item h3{
    margin-bottom:15px;
}

.faq-item p{
    color:#b5b5b5;
    line-height:1.8;
}
.cta-section{
    max-width:1400px;
    margin:auto;

    padding:120px 40px 140px;
}

.cta-content{
    text-align:center;

    padding:80px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(45,140,255,0.12),
        rgba(156,39,255,0.12),
        rgba(255,45,149,0.12)
    );

    border:1px solid rgba(255,255,255,0.08);
}

.cta-content span{
    color:#9C27FF;

    text-transform:uppercase;

    letter-spacing:2px;
}

.cta-content h2{
    font-size:3rem;

    margin:25px 0;
}

.cta-content p{
    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    color:#b5b5b5;

    line-height:1.8;
}
.footer{
    border-top:1px solid rgba(255,255,255,0.08);

    padding:40px;
}

.footer-content{
    text-align:center;
}

.footer-content img{
    height:70px;

    margin-bottom:15px;
}

.footer-content p{
    color:#b5b5b5;

    margin-bottom:10px;
}

.footer-content span{
    color:#7a7a7a;
}
.about-section{
    max-width:1200px;
    margin:auto;
    padding:120px 40px;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.section-subtitle{
    color:#9C27FF;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    font-size:3rem;
    margin:25px 0;
    line-height:1.2;
}

.about-content p{
    color:#b5b5b5;
    line-height:1.9;
    margin-bottom:20px;
    font-size:1.05rem;
}
/* =========================
   NOSOTROS
========================= */

.about-section,
.philosophy-section{
    max-width:1200px;
    margin:auto;
    padding:120px 40px;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.section-subtitle{
    color:#9C27FF;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:3rem;
    margin:25px 0;
    line-height:1.2;
}

.about-content p{
    color:#b5b5b5;
    line-height:1.9;
    margin-bottom:20px;
}

/* =========================
   MISION Y VISION
========================= */

.mission-vision-section{
    max-width:1400px;
    margin:auto;
    padding:120px 40px;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px;
}

.mission-card h3{
    font-size:2rem;
    margin-bottom:20px;
}

.mission-card p{
    color:#b5b5b5;
    line-height:1.8;
}

/* =========================
   VALORES
========================= */

.values-section{
    max-width:1400px;
    margin:auto;
    padding:120px 40px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.value-card{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px;

    transition:0.3s ease;
}

.value-card:hover{
    transform:translateY(-8px);

    border-color:#9C27FF;

    box-shadow:0 0 30px rgba(156,39,255,0.15);
}

.value-card h3{
    font-size:1.8rem;
    margin-bottom:15px;
}

.value-card p{
    color:#b5b5b5;
    line-height:1.8;
}

/* =========================
   WHY NEXA
========================= */

.why-nexa-section{
    max-width:1400px;
    margin:auto;
    padding:120px 40px;
}
/* =========================
   FILOSOFIA NEXA
========================= */

.philosophy-section{
    max-width:1400px;
    margin:auto;
    padding:120px 40px;
}

.philosophy-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}

.philosophy-card{
    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:40px;

    transition:0.3s ease;
}

.philosophy-card:hover{

    transform:translateY(-8px);

    border-color:#9C27FF;

    box-shadow:0 0 30px rgba(156,39,255,0.15);

}

.philosophy-card h3{

    font-size:2rem;

    margin-bottom:15px;

}

.philosophy-card p{

    color:#b5b5b5;

    line-height:1.8;

}
.page-hero{
    padding:180px 40px 140px;
}

.page-hero-content{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:100px 80px;

    border-radius:30px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    position:relative;

    overflow:hidden;
}

.page-hero h1{
    font-size:4.5rem;
    line-height:1.1;
    margin:0;
}
.page-hero-content::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(
        circle,
        rgba(45,140,255,0.20),
        transparent 70%
    );

    top:-250px;
    left:-150px;

    z-index:-1;
}
.page-hero-content::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(
        circle,
        rgba(156,39,255,0.20),
        transparent 70%
    );

    bottom:-250px;
    right:-150px;

    z-index:-1;
}
.page-hero h1{

    font-size:5.5rem;

    line-height:1.1;

    max-width:700px;

    margin:auto;
}
.hero-pillars{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;
}

.hero-pillars span{

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    color:#d9d9d9;

    font-size:.95rem;

    letter-spacing:1px;
}
.page-hero-content{
    transition:.4s ease;
}

.page-hero-content:hover{
    border-color:#9C27FF;

    box-shadow:
    0 0 30px rgba(156,39,255,.15),
    0 0 80px rgba(45,140,255,.08);
}
/* ===== GASTRONOMÍA SECTION ===== */

.portfolio-category {
    padding: 100px 10%;
    background: #0b0b0f;
    color: white;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header p {
    color: #b5b5b5;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* VIDEO */
.video-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.video-thumb {
    position: relative;
    width: 320px; /* vertical */
    height: 560px;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.video-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(45,140,255,0.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    background: rgba(0,0,0,0.4);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/*==================================
        GALERÍA PREMIUM
==================================*/

.gallery-grid{

    display:grid;

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

    grid-auto-rows:260px;

    gap:22px;

    margin-top:70px;

}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* tamaños estilo agencia */
.tall {
    height: 400px;
}

.wide {
    height: 300px;
}

/* MODAL */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-container {
    width: 360px;
    height: 640px;
}
.video-container video{

    width:100%;

    max-height:85vh;

    border:none;

    border-radius:20px;

    background:#000;

    object-fit:contain;

    display:block;

}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
.case-study{
    padding: 120px 10%;
    background:#050505;
    color:white;
}

/* HEADER DEL CASO */
.case-header{
    max-width: 700px;
    margin: auto;
    text-align: left;
    margin-bottom: 60px;
}

.case-number{
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #2d8cff;
    text-transform: uppercase;
}

.case-title{
    font-size: 3.2rem;
    margin: 15px 0;
    font-weight: 700;
}

.case-text{
    color:#b5b5b5;
    line-height:1.8;
    font-size:1.1rem;
}

/* VIDEO */
.case-video{
    display:flex;
    justify-content:center;
    margin-bottom:70px;
}

/* GALERÍA EDITORIAL */
.case-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.case-gallery .img{
    overflow:hidden;
    border-radius:15px;
}

.case-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.case-gallery img:hover{
    transform:scale(1.05);
}

/* tamaños editoriales */
.big{
    height:420px;
}

.small{
    height:280px;
}

/* VIDEO THUMB */
.video-thumb{
    position:relative;
    width:320px;
    height:560px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

.video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:2.5rem;
    background:rgba(0,0,0,0.4);
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}
.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
    color: white;

    margin: 80px 0 40px;
}
.video-modal,
.img-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.img-modal img{
    max-width:90%;
    max-height:90%;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:white;
    cursor:pointer;
}
.case-gallery{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.case-gallery{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:15px;
}

/* caja de cada imagen */
.case-gallery .img{
    height:320px;              /* 👈 todas iguales */
    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:12px;
    overflow:hidden;
    background:transparent;
}

/* imagen COMPLETA sin recorte */
.case-gallery img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;

    object-fit:contain;        /* 👈 clave */
    display:block;
}
.portfolio-footer-box{
    margin-top:70px;
    padding:40px 30px;
    text-align:center;

    max-width:850px;
    margin-left:auto;
    margin-right:auto;

    border-radius:20px;

    background: linear-gradient(135deg, #0a0a0a, #111111);
    border: 1px solid rgba(255,255,255,0.06);

    position:relative;
    overflow:hidden;

    box-shadow:0 20px 80px rgba(0,0,0,0.7);

    /* animación entrada */
    opacity:0;
    transform:translateY(30px);
    animation:boxIn 1s ease forwards;
}

/* LUZ ANIMADA */
.portfolio-footer-box::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;

    background: radial-gradient(circle, rgba(45,140,255,0.25), transparent 70%);
    top:-150px;
    right:-150px;

    filter: blur(35px);
    animation: glowMove 6s ease-in-out infinite;
}

/* TEXTO */
.portfolio-footer-box p{
    color:#cfcfcf;
    font-size:1.1rem;
    line-height:1.7;
    margin-bottom:25px;

    position:relative;
    z-index:2;
}

/* BOTÓN INSTAGRAM */
.ig-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 25px;
    border-radius:30px;

    text-decoration:none;
    color:white;
    font-weight:500;

    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);

    transition:0.3s ease;

    position:relative;
    z-index:2;
}

/* icono */
.ig-icon{
    font-size:1.2rem;
}

/* hover botón */
.ig-btn:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(220,39,67,0.35);
}

/* animación entrada */
@keyframes boxIn{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* movimiento luz */
@keyframes glowMove{
    0%,100%{
        transform:translate(0,0);
    }
    50%{
        transform:translate(-30px,30px);
    }
}
.ig-icon-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:10px;

    background:transparent;   /* 👈 sin fondo */
    border:none;

    cursor:pointer;

    transition:0.3s ease;
}

/* ICONO */
.ig-icon{
    width:100px;
    height:100px;

    stroke:white;
    stroke-width:1.6;

    transition:0.3s ease;

    opacity:0.85;
}

/* HOVER SOLO RESALTE */
.ig-icon-btn:hover .ig-icon{
    stroke:#0945ec;   /* color Instagram */
    transform:scale(1.15);
    opacity:1;

    filter: drop-shadow(0 0 8px rgba(220,39,67,0.5));
}
/*==================================================
                DESARROLLO WEB
==================================================*/

.showcase{

    position: relative;

    padding:120px 6%;

    overflow:hidden;

    background:

radial-gradient(
circle at top center,
rgba(140,82,255,.15),
transparent 35%
),

radial-gradient(
circle at bottom center,
rgba(59,130,246,.08),
transparent 40%
),

#050505;

}

/*========================
      ENCABEZADO
========================*/

.showcase-header{

    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:80px;

}

.showcase-subtitle{

    display:inline-block;

    color:#8c52ff;

    font-size:15px;

    letter-spacing:4px;

    font-weight:600;

    margin-bottom:18px;

    position:relative;

}

.web-subtitle::after{

    content:"";

    display:block;

    width:70px;

    height:2px;

    background:#8c52ff;

    margin:12px auto 0;

}

.showcase-header h2{

    font-size:64px;

    line-height:1.05;

    font-weight:700;

    color:white;

    margin-bottom:25px;

}

.web-header h2 span{

    color:#9f6dff;

}

.showcase-header p{

    font-size:21px;

    color:#bdbdbd;

    line-height:1.7;

    max-width:760px;

    margin:auto;

}

/*========================
      CONTENIDO
========================*/

.showcase-content{

    display:grid;

    grid-template-columns:360px 520px 360px;

    justify-content:center;

    align-items:center;

    gap:70px;

    margin-top:90px;

}

/*========================
     LATERALES
========================*/

.showcase-side{

    color:white;

}

/*==================================
        FEATURE BOX PREMIUM
==================================*/

.feature-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:28px;

    background:rgba(255,255,255,.03);

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

    border-radius:24px;

    backdrop-filter:blur(18px);

    transition:.45s;

}

.feature-box:hover{

    transform:translateY(-8px);

    border-color:#8c52ff;

    box-shadow:
        0 20px 50px rgba(140,82,255,.18);

}

.feature-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    background:

    linear-gradient(
        135deg,
        #8c52ff,
        #4f8cff
    );

    flex-shrink:0;

}

.feature-box h4{

    color:#ffffff;

    font-size:26px;

    margin-bottom:12px;

}

.feature-box p{

    color:#bfbfbf;

    line-height:1.8;

}

.feature-box h4{

    color:#9f6dff;

    font-size:28px;

    margin-bottom:12px;

}

.feature-box p{

    color:#bdbdbd;

    line-height:1.8;

}

.showcase-side ul{

    margin-top:30px;

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.showcase-side li{

    display:flex;

    align-items:center;

    gap:15px;

    padding:16px 22px;

    background:rgba(255,255,255,.03);

    border-radius:18px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.showcase-side li::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:#8c52ff;

    box-shadow:

        0 0 18px #8c52ff;

}

/*========================
      LAPTOP
========================*/

.showcase-center{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1500px;
    min-height:500px;

}
.showcase-center::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(140,82,255,.28),

            rgba(59,130,246,.10),

            transparent 72%

        );

    filter:blur(90px);

    animation:

        glowMove 10s ease-in-out infinite,

        glowPulse 6s ease-in-out infinite;

    z-index:0;

}
/*========================
        LUZ
========================*/

.showcase-glow{

    position:absolute;

    bottom:10px;

    left:50%;

    transform:translateX(-50%);

    width:65%;

    height:70px;

    background:#8c52ff;

    border-radius:50%;

    filter:blur(60px);

    opacity:.45;

    animation:

        glowPulse 5s ease-in-out infinite;

}

/*========================
       BOTONES
========================*/

.showcase-navigation{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:70px;

    flex-wrap:wrap;

}

.showcase-btn{

    background:#111;

    color:white;

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

    padding:16px 34px;

    border-radius:40px;

    cursor:pointer;

    transition:.35s;

    font-size:16px;

}

.web-btn.active{

    background:#7d42ff;

    box-shadow:0 0 25px rgba(125,66,255,.45);

}

.showcase-btn:hover{

    transform:translateY(-4px);

}
.showcase-btn.active{

    background:#7d42ff;

    box-shadow:0 0 25px rgba(125,66,255,.45);

}
/*========================
      INDICADORES
========================*/

.showcase-indicators{

    display:flex;

    justify-content:center;

    gap:14px;

    margin-top:35px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#3c3c3c;

}

.dot.active{

    background:#8c52ff;

    box-shadow:0 0 18px #8c52ff;

}
/*========================
      NUEVO ENCABEZADO
========================*/

.web-main-title{

    font-size:64px;

    line-height:1.05;

    color:#ffffff;

    font-weight:700;

    margin-bottom:28px;

}

.showcase-main-description{

    max-width:820px;

    margin:0 auto;

    color:#bcbcbc;

    font-size:21px;

    line-height:1.9;

}

.showcase-divider{

    width:120px;

    height:2px;

    margin:55px auto;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        transparent,
        #8c52ff,
        transparent
    );

}

.showcase-slide-title{

    font-size:38px;

    color:#ffffff;

    margin-bottom:18px;

    transition:.4s;

}

.showcase-slide-description{

    max-width:700px;

    margin:auto;

    color:#9d9d9d;

    line-height:1.8;

    font-size:18px;

}
/*=================================
        ANIMACIONES PREMIUM
=================================*/

.showcase-animate-out{

    opacity:0;

    transform:
        translateY(35px)
        scale(.96);

    filter:blur(8px);

    transition:

        opacity .55s ease,

        transform .55s ease,

        filter .55s ease;

}

.showcase-animate-in{

    opacity:1;

    transform:
        translateY(0)
        scale(1);

    filter:blur(0);

    transition:

        opacity .55s ease,

        transform .55s ease,

        filter .55s ease;

}


/*==========================
        LAPTOP
==========================*/
/* Sale */

.laptop-out{

    opacity:0;

    transform:

        perspective(1200px)

        rotateY(8deg)

        rotateX(3deg)

        scale(.93)

        translateY(25px);

}


/* Entra */

.laptop-in{

    opacity:1;

    transform:

        perspective(1200px)

        rotateY(0deg)

        rotateX(0deg)

        scale(1)

        translateY(0);

}

/* Luz */

.web-glow{

    position:absolute;

    bottom:10px;

    width:72%;

    height:65px;

    border-radius:50%;

    background:#8c52ff;

    filter:blur(60px);

    opacity:.45;

    z-index:1;

    animation:glowPulse 5s ease-in-out infinite;

    transition:

        background .6s,

        opacity .6s;

}
@keyframes glowPulse{

    0%,100%{

        transform:

            scale(.92);

        opacity:.35;

    }

    50%{

        transform:

            scale(1.08);

        opacity:.65;

    }

}
/* Botón activo */

.web-btn{

    transition:
    all .4s ease;

}

/* Indicadores */

.dot{

    transition:
    all .4s ease;

}
#webLaptop{

    width:100%;

    max-width:900px;

    position:relative;

    z-index:2;

    animation:floatLaptop 7s ease-in-out infinite;

    transform-style:preserve-3d;

    filter:drop-shadow(0 40px 70px rgba(0,0,0,.35));

    will-change:transform, filter;

    transition:
        transform .8s cubic-bezier(.22,.61,.36,1),
        opacity .6s ease,
        filter .45s ease;

}
.showcase-left,
.showcase-right{

    position:relative;

    display:flex;
    flex-direction:column;
    gap:28px;

}

.showcase-left::after{

    content:"";

    position:absolute;

    top:50%;
    right:-55px;

    width:80px;
    height:1px;

    background:linear-gradient(
        to right,
        rgba(140,82,255,.8),
        transparent
    );

}

.showcase-right::before{

    content:"";

    position:absolute;

    top:50%;
    left:-55px;

    width:80px;
    height:1px;

    background:linear-gradient(
        to left,
        rgba(140,82,255,.8),
        transparent
    );

}

.feature-box{

    display:flex;
    align-items:flex-start;
    gap:18px;

    padding:24px;

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

    border-radius:18px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(140,82,255,.12),
        transparent 60%
    );

    opacity:0;

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

    border-color:rgba(140,82,255,.45);

    box-shadow:0 15px 40px rgba(140,82,255,.15);

}

.feature-box:hover::before{

    opacity:1;

}
.feature-icon{

    width:52px;
    height:52px;

    min-width:52px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(140,82,255,.12);

    border:1px solid rgba(140,82,255,.25);

}

.feature-icon span{

    color:#8c52ff;

    font-size:18px;

    font-weight:700;

    letter-spacing:1px;

}

.feature-content{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.feature-content h4{

    font-size:1.15rem;

    color:white;

}

.feature-content p{

    color:#bdbdbd;

    line-height:1.7;

}
/* ========================= */
/* DROPDOWN PORTAFOLIO */
/* ========================= */

.dropdown{
    position:relative;
}

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:220px;

    background:#111;

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

    border-radius:16px;

    padding:10px 0;

    list-style:none;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

    z-index:999;
}

.dropdown:hover .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu a{

    display:block;

    padding:12px 20px;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.dropdown-menu a:hover{

    background:rgba(255,255,255,.05);

    color:#2D8CFF;

}
/*================ FOOTER =================*/

.footer{

    background:#050505;

    padding-top:90px;

    border-top:1px solid rgba(255,255,255,.08);

}

/* CTA */

.footer-cta{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:0 20px 70px;

}

.footer-cta h2{

    font-size:2.6rem;

    color:#fff;

    margin-bottom:20px;

}

.footer-cta p{

    color:#9ca3af;

    font-size:1.1rem;

    line-height:1.8;

    max-width:650px;

    margin:auto;

}

.footer-btn{

    display:inline-block;

    margin-top:40px;

    padding:16px 36px;

    border-radius:50px;

    text-decoration:none;

    color:white;

    font-weight:600;

    background:linear-gradient(90deg,#2D8CFF,#8B5CF6,#FF2D95);

    transition:.35s;

}

.footer-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(45,140,255,.25);

}

.footer-divider{

    width:90%;

    height:1px;

    margin:auto;

    background:rgba(255,255,255,.08);

}

/* GRID */

.footer-grid{

    max-width:1350px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:80px;

    padding:70px 40px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-brand p{

    color:#9ca3af;

    line-height:1.9;

    max-width:450px;

}

.footer-column h3{

    color:white;

    margin-bottom:25px;

    font-size:1.15rem;

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column a{

    color:#a8a8a8;

    text-decoration:none;

    margin-bottom:18px;

    transition:.3s;

}

.footer-column a:hover{

    color:white;

    padding-left:10px;

}

/* BOTTOM */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    max-width:1350px;

    margin:auto;

    padding:30px 40px;

    display:flex;

    justify-content:space-between;

    color:#6f6f6f;

    font-size:.95rem;

}

/* RESPONSIVE */

@media(max-width:900px){

.footer-grid{

    grid-template-columns:1fr;

    gap:55px;

    text-align:center;

}

.footer-brand p{

    margin:auto;

}

.footer-bottom{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.footer-cta h2{

    font-size:2rem;

}

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

.hero{

    min-height:100vh;

    background:
    radial-gradient(circle at top left,#2D8CFF20,transparent 40%),
    radial-gradient(circle at bottom right,#FF2D9520,transparent 40%),
    #050505;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:140px 20px 80px;

    overflow:hidden;

}

/*================ TEXTO =================*/

.hero-content{

    max-width:900px;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.12);

    color:#9CA3AF;

    letter-spacing:2px;

    font-size:.85rem;

    margin-bottom:30px;

}

.hero h1{

    font-size:4rem;

    line-height:1.1;

    color:white;

    margin-bottom:30px;

}

.hero p{

    max-width:720px;

    margin:auto;

    color:#B8B8B8;

    font-size:1.15rem;

    line-height:1.8;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*================ SHOWCASE =================*/

.hero-showcase{

    margin-top:90px;

    width:900px;

    max-width:100%;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-laptop{

    width:650px;

    z-index:5;

    animation:floatLaptop 5s ease-in-out infinite;

}

/*================ TARJETAS =================*/

.floating-card{

    position:absolute;

    background:rgba(18,18,18,.78);

    backdrop-filter:blur(18px);

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

    border-radius:20px;

    padding:18px 24px;

    min-width:170px;

    box-shadow:

    0 20px 50px rgba(0,0,0,.35);

    transition:.35s;

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

}

.floating-card:hover{

    transform:translateY(-10px);

    border-color:#2D8CFF;

}

.floating-card h3{

    color:white;

    font-size:1.4rem;

    margin-bottom:6px;

}

.floating-card span{

    color:#9CA3AF;

    font-size:.95rem;

}

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

.top-left{

    top:20px;

    left:20px;

}

.top-right{

    top:40px;

    right:20px;

}

.bottom-left{

    bottom:40px;

    left:0;

}

.bottom-right{

    bottom:20px;

    right:0;

}

/*================ ANIMACIONES =================*/
@keyframes floatCard{

    0%,100%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-8px);

    }

}
/*========================
     FLOAT LAPTOP
========================*/

@keyframes floatLaptop{

    0%{

        transform:
        translateY(0px)
        rotate(0deg);

    }

    25%{

        transform:
        translateY(-6px)
        rotate(.4deg);

    }

    50%{

        transform:
        translateY(-12px)
        rotate(0deg);

    }

    75%{

        transform:
        translateY(-6px)
        rotate(-.4deg);

    }

    100%{

        transform:
        translateY(0px)
        rotate(0deg);

    }

}
/*================ RESPONSIVE =================*/

@media(max-width:900px){

.hero h1{

    font-size:2.7rem;

}

.hero-showcase{

    width:100%;

    margin-top:70px;

}

.hero-laptop{

    width:100%;

    max-width:500px;

}

.floating-card{

    position:relative;

    margin:12px;

}

.hero-showcase{

    display:flex;

    flex-wrap:wrap;

}

}
/*========================================
CONTACTO
========================================*/

.contact-section{

    max-width:1400px;

    margin:auto;

    padding:140px 60px;

}

.contact-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 80px;

}

.contact-subtitle{

    display:inline-block;

    padding:10px 22px;

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

    border-radius:40px;

    color:#9CA3AF;

    font-size:.85rem;

    letter-spacing:2px;

    margin-bottom:30px;

}

.contact-header h2{

    font-size:3rem;

    color:white;

    margin-bottom:25px;

}

.contact-header p{

    color:#A1A1AA;

    line-height:1.8;

    font-size:1.1rem;

}
.contact-container{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:start;

}
.contact-form{

    background:#0B0B0B;

    border:1px solid rgba(255,255,255,.06);

    border-radius:30px;

    padding:45px;

}
.input-group{

    display:flex;

    flex-direction:column;

    margin-bottom:28px;

}

.input-group label{

    color:white;

    margin-bottom:12px;

    font-weight:500;

}
.input-group input,
.input-group select,
.input-group textarea{

    background:#111;

    border:1px solid rgba(255,255,255,.06);

    border-radius:14px;

    padding:18px;

    color:white;

    font-size:16px;

    transition:.35s;

    outline:none;

}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    border-color:#2D8CFF;

    box-shadow:0 0 25px rgba(45,140,255,.20);

}
textarea{

    resize:vertical;

    min-height:180px;

}
.contact-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    color:white;

    background:linear-gradient(

        90deg,

        #2D8CFF,

        #9C27FF,

        #FF2D95

    );

    transition:.35s;

}
.contact-btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 20px 45px rgba(45,140,255,.30);

}
.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}
.info-card{

    background:#0B0B0B;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:30px;

    transition:.35s;

}
.info-card:hover{

    transform:translateY(-6px);

    border-color:#2D8CFF;

}
.info-card h3{

    color:white;

    margin-bottom:10px;

}
.info-card p{

    color:#9CA3AF;

    line-height:1.7;

}
.info-card a{

    display:inline-block;

    margin-top:15px;

    color:#2D8CFF;

    text-decoration:none;

    font-weight:600;

}
.contact-benefits{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:10px;

}
.contact-benefits span{

    color:#CFCFCF;

    font-size:.95rem;

}
@media(max-width:980px){

.contact-container{

    grid-template-columns:1fr;

}

.contact-form{

    order:2;

}

.contact-info{

    order:1;

}

.contact-section{

    padding:100px 25px;

}

.contact-header h2{

    font-size:2.3rem;

}

}
/*=====================================
        INDUSTRIAS
=====================================*/

.industries-section{

    padding:140px 0 60px;

}

.industries-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.industries-subtitle{

    display:inline-block;

    color:#8c52ff;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.industries-header h3{

    font-size:52px;

    color:#ffffff;

    margin-bottom:25px;

}

.industries-header p{

    color:#bdbdbd;

    font-size:20px;

    line-height:1.8;

}

.industries-grid{

    display:grid;

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

    gap:28px;

}

.industry-card{

    background:#0b0b0b;

    border:1px solid rgba(255,255,255,.05);

    border-radius:26px;

    padding:45px 20px;

    text-align:center;

    transition:.45s;

    cursor:pointer;

    position:relative;

    overflow:hidden;

}

.industry-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(140,82,255,.18),
        transparent
    );

    opacity:0;

    transition:.45s;

}

.industry-card:hover{

    transform:translateY(-12px);

    border-color:#8c52ff;

    box-shadow:0 25px 60px rgba(140,82,255,.20);

}

.industry-card:hover::before{

    opacity:1;

}

.industry-icon{

    font-size:48px;

    margin-bottom:25px;

    transition:.45s;

}

.industry-card:hover .industry-icon{

    transform:scale(1.15);

}

.industry-card h4{

    color:white;

    font-size:22px;

    font-weight:600;

}
/*=====================================
      GALERÍA
=====================================*/

.portfolio-gallery{

    padding:150px 0;

}

.gallery-header{

    max-width:850px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.gallery-subtitle{

    color:#8c52ff;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}

.gallery-header h3{

    color:white;

    font-size:54px;

    margin:20px 0;

}

.gallery-header p{

    color:#bdbdbd;

    line-height:1.8;

    font-size:20px;

}

.gallery-grid{

    display:grid;

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

    gap:25px;

}

.gallery-large{

    grid-column:span 2;

    grid-row:span 2;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

    background:#111;

    transition:.45s;

    border:1px solid rgba(255,255,255,.06);

}
/*=========================================
        VIDEO MINIATURA GALERÍA
=========================================*/

.gallery-preview{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    pointer-events:none;

    transition:.4s;

    background:#000;

}
.gallery-item:hover{

    transform:translateY(-8px);

    border-color:#8c52ff;

    box-shadow:0 20px 50px rgba(140,82,255,.25);

}
.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:

        transform .7s ease,

        filter .7s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}
.gallery-item:hover .gallery-preview{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        rgba(0,0,0,0),

        rgba(0,0,0,.75)

    );

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.45s;

}
.gallery-button{

    width:74px;

    height:74px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:white;

    background:

    linear-gradient(
        135deg,
        #8c52ff,
        #4f8cff
    );

    box-shadow:

        0 0 35px rgba(140,82,255,.45);

    transform:scale(.8);

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    background:rgba(0,0,0,.15);

}

.play-button{

    width:80px;
    height:80px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    color:white;

    transition:.4s;

}

.gallery-item:hover .play-button{

    transform:scale(1.12);

    background:#8c52ff;

    box-shadow:0 0 35px rgba(140,82,255,.5);

}
/*=====================================
            CTA FINAL
=====================================*/

.audiovisual-cta{

    padding:180px 0;

    text-align:center;

}

.audiovisual-cta span{

    color:#8c52ff;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}

.audiovisual-cta h2{

    color:white;

    font-size:58px;

    max-width:900px;

    margin:35px auto 60px;

    line-height:1.2;

}

.cta-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 45px;

    border-radius:50px;

    text-decoration:none;

    color:white;

    background:#8c52ff;

    transition:.4s;

    font-size:18px;

    font-weight:600;

}

.cta-button:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(140,82,255,.35);

}
/*==================================
        OBJETO CENTRAL
==================================*/

.showcase-object{

    width:100%;

    max-width:720px;

    position:relative;

    z-index:2;

    animation:

        floatCamera 6s ease-in-out infinite;

    filter:

        drop-shadow(0 40px 70px rgba(0,0,0,.35));

    transition:

        transform .5s ease,
        filter .5s ease;
transform-style:preserve-3d;

will-change:transform;
}
/*=====================================
      FLOATING TAGS
=====================================*/

.showcase-center{

    position:relative;

}

.floating-tag{

    position:absolute;

    padding:12px 20px;

    border-radius:40px;

    background:linear-gradient(
        135deg,
        rgba(140,82,255,.95),
        rgba(59,130,246,.95)
    );

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    font-size:15px;

    font-weight:600;

    white-space:nowrap;

    box-shadow:
        0 12px 35px rgba(140,82,255,.35),
        0 0 25px rgba(59,130,246,.25);

    transition:all .35s ease;

    z-index:10;

}

.floating-tag:hover{

    transform:scale(1.08);

    box-shadow:
        0 20px 45px rgba(140,82,255,.55),
        0 0 35px rgba(59,130,246,.45);

}

.top{

    top:10px;
    left:50%;
    transform:translateX(-50%);

}

.top-left{

    top:120px;
    left:95px;

}

.top-right{

    top:120px;
    right:95px;

}

.bottom-left{

    bottom:125px;
    left:70px;

}

.bottom-right{

    bottom:125px;
    right:70px;

}

.left-bottom{

    bottom:35px;
    left:120px;

}

.right-bottom{

    bottom:35px;
    right:120px;

}

.bottom{

    bottom:0;
    left:50%;
    transform:translateX(-50%);

}

.floating-tag:hover{

    transform:translateY(-6px);

    border-color:#8c52ff;

    box-shadow:0 0 25px rgba(140,82,255,.35);

}
.top:hover,
.bottom:hover{
    transform:translateX(-50%) translateY(-6px);
}

.top-left:hover,
.top-right:hover,
.bottom-left:hover,
.bottom-right:hover,
.left-bottom:hover,
.right-bottom:hover{
    transform:translateY(-6px);
}
.showcase-side li:hover{

    transform:translateX(10px);

    border-color:#8c52ff;

    background:rgba(140,82,255,.08);

}
.gallery-item:hover img{

    transform:scale(1.08);

    filter:brightness(.65);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item:hover .gallery-button{

    transform:scale(1);

}

.gallery-item:hover{

    transform:translateY(-10px);

    box-shadow:

        0 30px 70px rgba(0,0,0,.35);

}
@keyframes floatCamera{

    0%{

        transform:
        translateY(0px);

    }

    50%{

        transform:
        translateY(-18px);

    }

    100%{

        transform:
        translateY(0px);

    }

}
@keyframes glowPulse{

    0%,100%{

        opacity:.35;

        transform:
        translateX(-50%)
        scale(.95);

    }

    50%{

        opacity:.65;

        transform:
        translateX(-50%)
        scale(1.08);

    }

}
.floating-tag{

    animation:

        orbitFloat 5s ease-in-out infinite;

}
.top{

    animation-delay:0s;

}

.top-left{

    animation-delay:.5s;

}

.top-right{

    animation-delay:1s;

}

.bottom-left{

    animation-delay:1.5s;

}

.bottom-right{

    animation-delay:2s;

}

.left-bottom{

    animation-delay:2.5s;

}

.right-bottom{

    animation-delay:3s;

}

.bottom{

    animation-delay:3.5s;

}
@keyframes orbitFloat{

    0%{

        transform:
        translateY(0px);

    }

    50%{

        transform:
        translateY(-8px);

    }

    100%{

        transform:
        translateY(0px);

    }

}
@keyframes orbitTop{

    0%{

        transform:
        translateX(-50%)
        translateY(0);

    }

    50%{

        transform:
        translateX(-50%)
        translateY(-8px);

    }

    100%{

        transform:
        translateX(-50%)
        translateY(0);

    }

}

@keyframes orbitBottom{

    0%{

        transform:
        translateX(-50%)
        translateY(0);

    }

    50%{

        transform:
        translateX(-50%)
        translateY(8px);

    }

    100%{

        transform:
        translateX(-50%)
        translateY(0);

    }

}
/*==================================
        SCROLL REVEAL
==================================*/

.reveal{

    opacity:0;

    transform:

        translateY(70px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:

        translateY(0);

}
.showcase-object:hover{

    transform:

    scale(1.04)

    rotateY(-4deg);

}
/*=========================================================
                MARKETING DIGITAL
=========================================================*/

#marketing-digital{

    padding:140px 8%;

    position:relative;

    overflow:hidden;

}

.marketing-content{

    display:grid;

    grid-template-columns:1fr 650px 1fr;

    align-items:center;

    gap:50px;

    margin-top:90px;

}

.marketing-column{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.marketing-center{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:620px;

}
.marketing-card{

    position:relative;

    background:rgba(255,255,255,.04);

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

    border-radius:24px;

    padding:28px;

    backdrop-filter:blur(18px);

    transition:.45s;

    overflow:hidden;

}

.marketing-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.12),
        transparent,
        rgba(236,72,153,.10)
    );

    opacity:0;

    transition:.45s;

}

.marketing-card:hover{

    transform:translateY(-10px);

    border-color:rgba(59,130,246,.45);

    box-shadow:
        0 20px 45px rgba(0,0,0,.35);

}

.marketing-card:hover::before{

    opacity:1;

}

.marketing-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:18px;

    background:linear-gradient(
        135deg,
        #3b82f6,
        #8b5cf6
    );

    box-shadow:
        0 0 30px rgba(59,130,246,.30);

}

.marketing-card h3{

    margin-bottom:14px;

    font-size:1.25rem;

    color:#ffffff;

}

.marketing-card p{

    color:#bdbdbd;

    line-height:1.7;

    font-size:.97rem;

}
/*=========================================================
                CENTRO MARKETING
=========================================================*/

.marketing-image{

    width:100%;
    max-width:620px;

    position:relative;

    z-index:5;

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

    filter:
        drop-shadow(0 35px 60px rgba(0,0,0,.45));

}

.marketing-glow{

    position:absolute;

    width:480px;

    height:480px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(59,130,246,.35),
        rgba(139,92,246,.18),
        transparent 72%
    );

    filter:blur(55px);

    z-index:1;

    animation:marketingGlow 5s ease-in-out infinite alternate;

}

@keyframes marketingFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes marketingGlow{

    from{

        transform:scale(.92);

        opacity:.65;

    }

    to{

        transform:scale(1.08);

        opacity:1;

    }

}
/*=========================================================
            EFECTOS MARKETING
=========================================================*/

.marketing-center::before{

    content:"";

    position:absolute;

    width:760px;

    height:760px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.05);

    z-index:0;

}

.marketing-center::after{

    content:"";

    position:absolute;

    width:560px;

    height:560px;

    border-radius:50%;

    border:1px solid rgba(59,130,246,.12);

    z-index:0;

}

.marketing-card{

    position:relative;
}

.marketing-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    border-radius:20px;

    background:linear-gradient(

        to bottom,

        #3b82f6,

        #8b5cf6,

        #ec4899

    );

    opacity:.85;

}
/*=========================================================
                ESTADÍSTICAS
=========================================================*/

.marketing-stats{

    display:grid;

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

    gap:25px;

    margin-top:90px;

}

.stat-card{

    background:rgba(255,255,255,.04);

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

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#3b82f6;

}

.stat-card h2{

    font-size:2.6rem;

    color:#3b82f6;

    margin-bottom:10px;

}

.stat-card span{

    color:#bdbdbd;

}
@media(max-width:1200px){

.marketing-content{

grid-template-columns:1fr;

}

.marketing-center{

order:-1;

margin-bottom:50px;

}

.marketing-stats{

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

}

}

@media(max-width:768px){

.marketing-stats{

grid-template-columns:1fr;

}

.marketing-image{

max-width:100%;

}

}
/*=========================================================
            FONDO TECNOLÓGICO
=========================================================*/

.marketing-bg{

    position:absolute;

    width:100%;

    height:100%;

    z-index:1;

    overflow:hidden;

}

.marketing-bg span{

    position:absolute;

    width:3px;

    border-radius:10px;

    background:linear-gradient(

        to top,

        transparent,

        #3b82f6,

        #8b5cf6,

        transparent

    );

    animation:dataMove linear infinite;

    opacity:.45;

}
.marketing-bg span:nth-child(1){

left:10%;

height:220px;

animation-duration:6s;

}

.marketing-bg span:nth-child(2){

left:28%;

height:320px;

animation-duration:7.5s;

}

.marketing-bg span:nth-child(3){

left:46%;

height:260px;

animation-duration:5.5s;

}

.marketing-bg span:nth-child(4){

left:64%;

height:300px;

animation-duration:8s;

}

.marketing-bg span:nth-child(5){

left:80%;

height:180px;

animation-duration:6.7s;

}

.marketing-bg span:nth-child(6){

left:92%;

height:340px;

animation-duration:9s;

}
@keyframes dataMove{

0%{

transform:translateY(120%);

opacity:0;

}

20%{

opacity:.5;

}

50%{

opacity:1;

}

100%{

transform:translateY(-120%);

opacity:0;

}

}
/*=========================================================
            CONEXIONES
=========================================================*/

.marketing-connections{

    position:absolute;

    inset:0;

    z-index:2;

    pointer-events:none;

}
.marketing-connections .line{

    position:absolute;

    height:2px;

    border-radius:20px;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(59,130,246,.9),

        rgba(236,72,153,.8),

        transparent

    );

    box-shadow:

        0 0 18px rgba(59,130,246,.35);

    animation:pulseLine 3.5s ease-in-out infinite;

}
.line-1{

width:180px;

top:18%;

left:12%;

transform:rotate(-25deg);

}

.line-2{

width:180px;

top:38%;

left:5%;

transform:rotate(-8deg);

}

.line-3{

width:180px;

bottom:24%;

left:12%;

transform:rotate(20deg);

}

.line-4{

width:180px;

top:18%;

right:12%;

transform:rotate(25deg);

}

.line-5{

width:180px;

top:38%;

right:5%;

transform:rotate(8deg);

}

.line-6{

width:180px;

bottom:24%;

right:12%;

transform:rotate(-20deg);

}
@keyframes pulseLine{

0%{

opacity:.25;

transform:scaleX(.92);

}

50%{

opacity:1;

}

100%{

opacity:.25;

transform:scaleX(1.08);

}

}
/*=========================================================
                    DRONE
=========================================================*/

#drone-section{

    position:relative;

    padding:140px 8%;

    overflow:hidden;

}

.drone-content{

    display:grid;

    grid-template-columns:1fr 650px 1fr;

    align-items:center;

    gap:50px;

    margin-top:90px;

}

.drone-side{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.drone-center{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:650px;

}
.drone-image{

    width:100%;

    max-width:620px;

    position:relative;

    z-index:5;

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

    filter:

        drop-shadow(0 35px 60px rgba(0,0,0,.45));

}

.drone-glow{

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(

circle,

rgba(0,217,255,.28),

rgba(59,130,246,.18),

rgba(139,92,246,.10),

transparent 78%

);

    filter:blur(55px);

    z-index:1;

}
@keyframes droneFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}
/*=========================================================
                PANELES DRONE
=========================================================*/

.drone-panel{

    position:relative;

    padding:32px;

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

    border-radius:22px;

    background:rgba(255,255,255,.035);

    backdrop-filter:blur(20px);

    overflow:hidden;

    transition:.45s;

}

.drone-panel:hover{

    transform:translateY(-10px);

    border-color:#3b82f6;

    box-shadow:

        0 20px 50px rgba(0,0,0,.35);

}

.drone-panel::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:linear-gradient(

        to bottom,

        #00d9ff,

        #3b82f6,

        #8b5cf6

    );

}

.drone-panel::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:80%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.08),

        transparent

    );

    transition:.8s;

}

.drone-panel:hover::after{

    left:140%;

}
.drone-label{

    display:inline-block;

    margin-bottom:14px;

    font-size:.75rem;

    letter-spacing:2px;

    color:#3b82f6;

    font-weight:700;

}

.drone-panel h3{

    font-size:1.55rem;

    color:#ffffff;

    margin-bottom:16px;

}

.drone-panel p{

    color:#bdbdbd;

    line-height:1.75;

}
/*=========================================================
                ESPECIFICACIONES DRONE
=========================================================*/

.drone-specs{

    display:grid;

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

    gap:30px;

    margin-top:90px;

}

.drone-spec{

    position:relative;

    text-align:center;

    padding:35px 25px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

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

    backdrop-filter:blur(18px);

    transition:.4s;

}

.drone-spec:hover{

    transform:translateY(-10px);

    border-color:#3b82f6;

    box-shadow:

        0 20px 45px rgba(0,0,0,.35);

}

.spec-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    margin:0 auto 20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    background:linear-gradient(

        135deg,

        #00d9ff,

        #3b82f6,

        #8b5cf6

    );

    box-shadow:

        0 0 35px rgba(59,130,246,.35);

}

.drone-spec h3{

    font-size:2rem;

    color:#ffffff;

    margin-bottom:10px;

}

.drone-spec span{

    color:#bdbdbd;

    font-size:.95rem;

}
/*=========================================================
                GRID TECNOLÓGICO
=========================================================*/

.drone-grid{

    position:absolute;

    inset:0;

    background:

        linear-gradient(rgba(59,130,246,.05) 1px, transparent 1px),

        linear-gradient(90deg, rgba(59,130,246,.05) 1px, transparent 1px);

    background-size:40px 40px;

    mask-image:radial-gradient(circle, black 40%, transparent 90%);

    opacity:.45;

    animation:gridMove 12s linear infinite;

}
@keyframes gridMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(40px);

    }

}
/*=========================================================
                VIDEO DRONE
=========================================================*/

.drone-video-section{

    margin-top:140px;

}

.drone-video-header{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.drone-video-header h2{

    font-size:clamp(2.2rem,4vw,3.6rem);

    margin:20px 0;

    color:#fff;

}

.drone-video-header p{

    color:#bdbdbd;

    line-height:1.8;

}
.drone-video-player{

    position:relative;

    width:100%;

    aspect-ratio:16/9;

    border-radius:28px;

    overflow:hidden;

    cursor:pointer;

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

    background:#111;

    transition:.45s;

}
.drone-video-player img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.drone-video-player:hover img{

    transform:scale(1.06);

}
.drone-play{

    position:absolute;

    top:50%;

    left:50%;

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

    width:110px;

    height:110px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    color:#fff;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    transition:.4s;

}
.drone-video-player:hover .drone-play{

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

    background:linear-gradient(

        135deg,

        #00d9ff,

        #3b82f6,

        #8b5cf6

    );

    box-shadow:

        0 0 45px rgba(59,130,246,.45);

}
.drone-video-gallery{

    display:flex;

    flex-direction:column;

    gap:30px;

    margin-top:50px;

}

.drone-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

}

.drone-item video{

    width:100%;

    display:block;

    aspect-ratio:16/9;

    object-fit:cover;

}