*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255,0,0,.18) 0%,
            rgba(255,0,0,.08) 20%,
            transparent 50%
        ),
        #050505;
}

/* ==========================================
   TITULOS GENERALES DE SECCIONES
========================================== */

/* ===================================
   TITULOS GLOBALES
=================================== */

.section-title{
    position:relative;
    z-index:10;

    max-width:900px;
    margin:0 auto 80px;

    text-align:center;
}

/* Badge superior */

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 20px;

    border-radius:50px;

    background:
    linear-gradient(
    90deg,
    rgba(255,40,40,.08),
    rgba(255,40,40,.18)
    );

    border:1px solid rgba(255,50,50,.25);

    color:#ff6d6d;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;
    text-transform:uppercase;


    backdrop-filter:blur(10px);
}

.section-badge-body{
    margin-top:25px;
    margin-bottom:25px;
}

/* Punto rojo */

.section-badge::before{

    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:#ff2b2b;

    box-shadow:
    0 0 10px #ff2b2b,
    0 0 20px #ff2b2b;
}

/* TITULO */

.section-title h2{

    font-size:clamp(38px,6vw,60px);

    font-weight:800;

    text-transform:uppercase;

    line-height:1;

    letter-spacing:-2px;

    color:#ffffff;

    margin-bottom:25px;
}

/* SERVICIOS */

.section-title h2 span{


    background:
    linear-gradient(
    180deg,
    #ff7a7a,
    #ff2323
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
    0 0 25px rgba(255,40,40,.25);
}

/* TEXTO */

.section-title p{

    max-width:700px;

    margin:auto;

    color:#aeb6c6;

    font-size:18px;

    line-height:1.9;
}

/* Línea decorativa */

.section-title::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-35px;

    transform:translateX(-50%);

    width:140px;
    height:4px;

    border-radius:10px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #ff2b2b,
    transparent
    );

    box-shadow:
    0 0 15px rgba(255,0,0,.4);
}
@media (max-width: 992px){

    .section-title{
        margin-bottom:60px;
    }

    .section-title p{
        font-size:17px;
    }

    .section-badge{
        margin-top:-50px;
    }

}

@media (max-width:768px){

    .section-title{
        padding:0 20px;
    }

    .section-title p{
        font-size:15px;
        line-height:1.8;
    }

    .section-badge{
        font-size:11px;
        letter-spacing:1px;
        padding:8px 16px;
    }

}

.animation{
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* ==========================================
  BOTON FLOTANTE 
========================================== */

.floating-quote{
    position: fixed;
    right: 25px;
    bottom: 25px;

    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 18px;

    min-width: 260px;

    overflow: hidden;
    position: fixed;

    border-radius: 22px;

    background: rgba(15,15,15,.92);

    backdrop-filter: blur(12px);

    text-decoration: none;

    box-shadow:
        0 15px 40px rgba(0,0,0,.35),
        0 0 30px rgba(255,0,0,.12);

    transition: .35s;
}

.floating-quote:hover{
    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.45),
        0 0 40px rgba(255,0,0,.25);
}

/* Línea luminosa animada */

.light-border{
    position: absolute;
    inset: 0;

    border-radius: 22px;

    padding: 1.5px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 35%,
            #ff2f2f 50%,
            transparent 65%,
            transparent 100%
        );

    background-size: 250% 100%;

    animation: borderRun 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

@keyframes borderRun{
    from{
        background-position: 200% 0;
    }
    to{
        background-position: -200% 0;
    }
}

.quote-icon{
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #ff2f2f,
        #b60000
    );

    box-shadow:
        0 0 20px rgba(255,0,0,.35);
}

.quote-icon i{
    color: #fff;
    font-size: 24px;
}

.quote-content{
    display: flex;
    flex-direction: column;
}

.quote-content small{
    color: rgba(255,255,255,.65);
    font-size: 11px;
    letter-spacing: .5px;
}

.quote-content span{
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

/* ==========================================
  BOTON FLOTANTE 
========================================== */


/* ==========================================
  MODAL
========================================== */
.gallery-modal{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.92);

    display: none;
    justify-content: center;
    align-items: center;

    padding: 20px;

    z-index: 99999;
}

.gallery-modal.active{
    display:flex;
}

.gallery-content{

    position: relative;

    width: 100%;
    max-width: 1000px;

    display:flex;
    justify-content:center;
    align-items:center;
border-radius: 18px; /* moderno */
}
.gallery-content img{

    width:100%;
    max-height:85vh;

    object-fit:contain;

border-radius: 18px; /* moderno */

    box-shadow:
        0 20px 60px rgba(0,0,0,.4);
}

.close-gallery{

    position:absolute;

    top:-55px;
    right:0;

    background:none;
    border:none;

    color:white;

    font-size:42px;

    cursor:pointer;

    z-index:10;
}

.gallery-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:white;

    font-size:26px;

    cursor:pointer;

    transition:.3s;

    z-index:5;
}

.gallery-arrow:hover{

    background:rgba(255,0,0,.4);

    transform:translateY(-50%) scale(1.08);
}

.gallery-arrow.left{
    left:-80px;
}

.gallery-arrow.right{
    right:-80px;
}
@media(max-width:1024px){

    .gallery-arrow.left{
        left:10px;
    }

    .gallery-arrow.right{
        right:10px;
    }

}

@media(max-width:768px){

    .gallery-content img{

        max-height:70vh;

        border-radius:15px;
    }

    .gallery-arrow{

        width:48px;
        height:48px;

        font-size:20px;
    }

    .gallery-arrow.left{
        left:5px;
    }

    .gallery-arrow.right{
        right:5px;
    }

    .close-gallery{

        top:-45px;

        font-size:34px;
    }
.gallery-arrow{

    background:rgba(0,0,0,.55);

    border:1px solid rgba(255,255,255,.1);
}
}
/* ==========================================
  MODAL
========================================== */