/*==================================================
    ARTES GRÁFICAS ALEARE
    STYLE.CSS
===================================================*/

:root{

    --cyan:#00AEEF;
    --magenta:#EC008C;
    --yellow:#FFD200;
    --black:#1F1F1F;

    --white:#FFFFFF;
    --gray:#F4F6F9;
    --gray2:#E8E8E8;
    --text:#555;

    --radius:18px;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --transition:.35s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    overflow-x:hidden;

    background:
    linear-gradient(180deg,#f8f9fb 0%,#ffffff 100%);

    background-attachment:fixed;

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    opacity:.55;

    background:

    radial-gradient(circle at 8% 12%,
    rgba(0,174,239,.40) 0,
    rgba(0,174,239,0) 380px),

    radial-gradient(circle at 92% 18%,
    rgba(236,0,140,.35) 0,
    rgba(236,0,140,0) 400px),

    radial-gradient(circle at 18% 88%,
    rgba(255,210,0,.38) 0,
    rgba(255,210,0,0) 380px),

    radial-gradient(circle at 90% 92%,
    rgba(31,31,31,.20) 0,
    rgba(31,31,31,0) 400px);

    z-index:-1;

}

/*============================*/

section{

    padding:80px 0;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

h1,h2,h3,h4,h5{

    color:var(--black);

    font-weight:700;

}

p{

    line-height:1.8;

    font-size:16px;

}

/*============================*/
/* NAVBAR */
/*============================*/

.navbar{

    background:
    linear-gradient(
        90deg,
        rgba(0,174,239,.08),
        rgba(236,0,140,.05),
        rgba(255,221,0,.08)
    ),
    rgba(255,255,255,.92);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    transition:.4s;

    padding:18px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border-bottom:3px solid transparent;

    border-image:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta),
        var(--yellow)
    ) 1;

}

.navbar::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta),
        var(--yellow)
    );

}

.navbar-brand img{

    transition:.4s;

}

.navbar-brand img:hover{

    transform:scale(1.08) rotate(-2deg);

}

.nav-link{

    color:#333 !important;

    font-weight:600;

    margin-left:18px;

    padding:8px 0;

    transition:.35s;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:3px;

    transform:translateX(-50%);

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta),
        var(--yellow)
    );

    transition:.35s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link:hover{

    color:var(--magenta)!important;

    transform:translateY(-2px);

}

.nav-link.active{

    color:var(--cyan)!important;

    font-weight:700;

}

.navbar .btn{

    background:linear-gradient(
        135deg,
        var(--cyan),
        var(--magenta)
    );

    color:white;

    border:none;

    border-radius:50px;

    padding:10px 25px;

    transition:.35s;

}

.navbar .btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(236,0,140,.30);

}

/*==================================================
    PAGE BANNER
==================================================*/

.page-banner{

    background:linear-gradient(135deg,
        var(--cyan) 0%,
        var(--magenta) 55%,
        var(--yellow) 100%);

    color:white;

    padding:120px 0;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.page-banner::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(255,255,255,.12);

    border-radius:50%;

    top:-180px;

    left:-120px;

}

.page-banner::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    right:-120px;

    bottom:-120px;

}

.page-banner h1{

    font-size:3.5rem;

    font-weight:800;

    color:white;

    position:relative;

    z-index:2;

}

.page-banner p{

    font-size:1.2rem;

    color:white;

    margin-top:15px;

    position:relative;

    z-index:2;

}

/*==================================================
    TÍTULOS
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.4rem;

    font-weight:700;

    color:var(--black);

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

}

.section-title::after{

    content:"";

    display:block;

    width:120px;

    height:6px;

    margin:20px auto 0;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta),
        var(--yellow),
        var(--black)
    );

}

/*==================================================
    BOTONES
==================================================*/

.btn-primary{

    border:none;

    background:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta)
    );

    padding:13px 35px;

    border-radius:40px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,174,239,.35);

}

.btn-outline-primary{

    border:2px solid var(--cyan);

    color:var(--cyan);

    background:white;

    border-radius:40px;

    transition:var(--transition);

}

.btn-outline-primary:hover{

    background:var(--cyan);

    color:white;

}

/*==================================================
    TARJETAS
==================================================*/

.service-card{

    transition:.35s;

}

.service-card .card-body{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    padding:2rem;

}

.service-card h4{

    min-height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.service-card p{

    min-height:85px;

    display:flex;

    align-items:center;

}

.service-card .btn{

    margin-top:auto;

}
/*==================================================
    ICONOS
==================================================*/

.service-icon{

    font-size:55px;

    color:var(--magenta);

    transition:.4s;

}

.card:hover .service-icon{

    transform:rotate(8deg) scale(1.12);

    color:var(--cyan);

}

.feature-icon{

    font-size:52px;

    color:var(--cyan);

    transition:.3s;

}

.feature-box:hover .feature-icon{

    transform:scale(1.15);

    color:var(--magenta);

}

/*==================================================
    FEATURE BOX
==================================================*/

.feature-box{

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

}

/*==================================================
    HERO CAROUSEL
==================================================*/

.carousel{

    border-radius:0 0 30px 30px;

    overflow:hidden;

}

.carousel-item{

    height:650px;

    min-height:450px;

}

.carousel-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    filter:none;

}

.carousel-caption{

    bottom:22%;

    z-index:2;

}

.carousel-caption h1{

    font-size:4rem;

    font-weight:800;

    color:#fff;

    text-shadow:0 5px 15px rgba(0,0,0,.4);

}

.carousel-caption p{

    font-size:1.2rem;

    max-width:700px;

    margin:auto;

    color:#fff;

}

.carousel-caption .btn{

    margin-top:25px;

}

.carousel-control-next-icon,
.carousel-control-prev-icon{

    background-size:60%;

    width:60px;

    height:60px;

    border-radius:50%;

    background-color:rgba(245, 243, 243, 0.25);

}

/*==================================================
    GALERÍA
==================================================*/

.gallery{

    padding:60px 0;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

    margin-bottom:30px;

    cursor:pointer;

    transition:.4s;

    background:#fff;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover{

    transform:translateY(-8px);

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-info{

    padding:20px;

}

.gallery-info h5{

    margin-bottom:10px;

    font-weight:700;

}

.gallery-info p{

    margin-bottom:15px;

}

.gallery-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img-top{

    width:100%;

    height:auto;

}

/* Asegurar que el botón siempre quede pegado al fondo de la tarjeta */
.gallery-card .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}


/*==================================================
    BOTÓN VER IMAGEN
==================================================*/

.ver-imagen{

    border:none;

    color:#fff;

    border-radius:50px;

    padding:10px 28px;

    font-weight:600;

    background:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta)
    );

    transition:.35s;

}

.ver-imagen:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.2);

}

/*==================================================
    MODAL
==================================================*/

.modal-content{

    border:none;

    border-radius:20px;

    overflow:hidden;

}

.modal-header{

    background:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta)
    );

    color:#fff;

}

.modal-header .btn-close{

    filter:invert(1);

}

.modal-body {
    background: radial-gradient(circle at top left, rgba(0, 174, 239, 0.85), transparent 50%),
                radial-gradient(circle at top right, rgba(236, 0, 140, 0.85), transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 242, 0, 0.85), transparent 50%),
                radial-gradient(circle at bottom right, rgba(35, 31, 32, 0.95), transparent 50%);
    padding: 30px;
    color: #ffffff;
}

.modal-body img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

#imagenModal{

    border-radius:15px;

    max-height:80vh;

    object-fit:contain;

    box-shadow:0 15px 40px rgba(0,0,0,.5);

}

/*==================================================
    EFECTOS GENERALES
==================================================*/

.zoom{

    overflow:hidden;

    border-radius:20px;

}

.zoom img{

    transition:.5s;

}

.zoom:hover img{

    transform:scale(1.1);

}

.shadow-hover{

    transition:.35s;

}

.shadow-hover:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.rounded-xl{

    border-radius:25px;

}

/*==================================================
    CTA SECTION
==================================================*/

.cta-section{

    background:linear-gradient(
        135deg,
        var(--cyan),
        var(--magenta)
    );

    padding:90px 0;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    bottom:-120px;

    right:-100px;

}

.cta-section h2{

    color:white;

}

.cta-section p{

    color:white;

}

/*==================================================
    FOOTER
==================================================*/

.footer{

    background:#fcfbfc;

    color:#131212;

    padding:70px 0 20px;

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:8px;

    background:linear-gradient(
        90deg,
        var(--cyan) 0%,
        var(--cyan) 25%,
        var(--magenta) 25%,
        var(--magenta) 50%,
        var(--yellow) 50%,
        var(--yellow) 75%,
        var(--black) 75%,
        var(--black) 100%
    );

}

.footer h5{

    color:rgb(255, 0, 195);

    margin-bottom:20px;

}

.footer a{

    color:#cccccc;

    transition:.3s;

}

.footer a:hover{

    color:var(--cyan);

    padding-left:8px;

}

.footer hr{

    border-color:#444;

}

.footer i{

    color:var(--cyan);

    margin-right:8px;

}

/*==================================================
    WHATSAPP
==================================================*/

.whatsapp-float{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    animation:whatsapp 2s infinite;

    transition:.3s;

}

.whatsapp-float:hover{

    color:white;

    transform:scale(1.1);

}

@keyframes whatsapp{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/*==================================================
    SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--cyan),
        var(--magenta)
    );

    border-radius:20px;

}

/*==================================================
    ANIMACIONES
==================================================*/

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.rotate:hover{

    transform:rotate(2deg);

}

.scale:hover{

    transform:scale(1.04);

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

.carousel-item{

height:500px;

}

.carousel-caption h1{

font-size:2.7rem;

}

.page-banner{

padding:90px 0;

}

.page-banner h1{

font-size:2.5rem;

}

.section-title h2{

font-size:2rem;

}

.footer{

text-align:center;

}

}

@media(max-width:768px){

.carousel-item{

height:420px;

}

.carousel-caption{

bottom:12%;

}

.carousel-caption h1{

font-size:2rem;

}

.carousel-caption p{

font-size:1rem;

}

.card{

margin-bottom:30px;

}

.page-banner{

padding:70px 0;

}

.page-banner h1{

font-size:2rem;

}

.whatsapp-float{

width:58px;

height:58px;

font-size:28px;

}

}

@media(max-width:576px){

.carousel-item{

height:350px;

}

.carousel-caption h1{

font-size:1.5rem;

}

.carousel-caption p{

display:none;

}

.section-title h2{

font-size:1.7rem;

}

.btn{

width:100%;

margin-top:10px;

}

}

/*=========================================
BOTÓN VOLVER ARRIBA
=========================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:100px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--cyan),
        var(--magenta)
    );

    color:white;

    font-size:24px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

    box-shadow:0 10px 20px rgba(0,0,0,.25);

}

.video-servicio{

    width:100%;

    aspect-ratio:16/11;

    object-fit:cover;

    border-radius:20px;

}

.video{

    width:100%;
    height:550px;
    object-fit:cover;

}

.service-icon-img{

    width:70px;
    height:70px;
    object-fit:contain;
    display:block;
    margin:0 auto;

}

/*============================*/
/* IMÁGENES DE SERVICIOS */
/*============================*/

.servicio-img{

    width:100%;

    max-width:600px;

    height:500px;

    object-fit:contain;

    display:block;

    margin:auto;

}

/*============================*/
/* DROPDOWN SERVICIOS */
/*============================*/

.dropdown-menu{

    border:none;

    border-radius:18px;

    padding:12px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    animation:menuFade .35s ease;

}

.dropdown-item{

    border-radius:12px;

    padding:12px 18px;

    font-weight:500;

    transition:.3s;

    color:#333;

}

.dropdown-item:hover{

    background:linear-gradient(
        90deg,
        rgba(0,174,239,.12),
        rgba(236,0,140,.10),
        rgba(255,221,0,.12)
    );

    color:var(--magenta);

    transform:translateX(8px);

}

.dropdown-item:active{

    background:linear-gradient(
        90deg,
        var(--cyan),
        var(--magenta)
    );

    color:#fff;

}

.dropdown-divider{

    opacity:.15;

}

@keyframes menuFade{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.dropdown-toggle::after{

    transition:.3s;

}

.show > .dropdown-toggle::after{

    transform:rotate(180deg);

}

.nav-item.dropdown:hover > .nav-link{

    color:var(--magenta)!important;

}


/*====================================*/
/* Separacion para servicios sin img */
/*====================================*/

.servicio-section{

    padding-top:100px;

    padding-bottom:100px;

}

/*============================*/
/* ANCLAS PARA SECCIONES */
/*============================*/

section{

    scroll-margin-top:120px;

}