/* ========================================
   RESET
======================================== */
@font-face {
  font-family: 'bootstrap-icons';
  src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2') format('woff2');
  font-display: swap; /* Previene bloqueo de texto visual */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
/* ========================================
   BODY
======================================== */

body {
    font-family: "Manrope", sans-serif;
    background: #081423;
    color: #ffffff;
    
}


/* ========================================
   NAVBAR
======================================== */

nav.superior {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    box-sizing: border-box;
    background: #06101d;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.logo span {
    line-height: 1;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );
    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

nav ul li a {
    position: relative;

    color: #29b6f6;
    text-decoration: none;
    font-weight: 700;

    padding: 5px 0;

    transition: color 0.3s ease;
}


/* ==========================================
   BARRA DEGRADADA
========================================== */

nav ul li a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    transition: width 0.3s ease;
}


/* ==========================================
   HOVER
========================================== */

nav ul li a:hover {

    color: #168ac0;

    font-weight: 700;
}


nav ul li a:hover::after {

    width: 100%;
}

main {
    padding-top: 70px;
}


/* ========================================
   LOGO
======================================== */

.logo {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
}

.logo.logo-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.hero-web {
    width: 100%;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 10px 20px;

    box-sizing: border-box;
}

.hero-web-content {
    width: 100%;
    margin: 0 auto;
}

.hero-web h2 {
    margin: 0 0 25px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.3;
    font-weight: 800;
    color: #ffffff;
}
/* ==========================================
   SERVICIOS
========================================== */

.services {
    width: 100%;

    padding: 120px 6%;

    background: #0b0f0d;

    box-sizing: border-box;
}


/* ==========================================
   ENCABEZADO
========================================== */

.services-header {
    max-width: 800px;

    margin: 0 auto 80px;

    text-align: center;
}


.services-label {
    display: block;

    margin-bottom: 12px;

    color: #29b6f6;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}


.services-header h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(36px, 5vw, 56px);

    font-weight: 800;

    line-height: 1.1;
}


.services-header h2 span {
    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


.services-header p {
    max-width: 600px;

    margin: 0 auto;

    color: #8e9891;

    font-size: 16px;

    line-height: 1.7;
}


/* ==========================================
   ESTRUCTURA PRINCIPAL
========================================== */

.services-layout {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        minmax(280px, 420px)
        1fr;

    align-items: center;

    gap: 70px;
}


/* ==========================================
   LADOS
========================================== */

.services-side {

    display: flex;

    flex-direction: column;

    gap: 70px;
}


/* ==========================================
   SERVICIO
========================================== */

.service-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.services-left .service-item {

    text-align: right;

    flex-direction: row-reverse;
}


.services-right .service-item {

    text-align: left;
}


/* ==========================================
   ICONOS
========================================== */

.service-icon {

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(41,182,246,.15),
            rgba(124,179,66,.15)
        );

    border: 1px solid rgba(255,255,255,.08);

    color: #29b6f6;

    font-size: 22px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.service-item:hover .service-icon {

    transform: translateY(-5px);

    color: #7cb342;

    border-color: rgba(41,182,246,.4);
}


/* ==========================================
   TEXTO
========================================== */

.service-item h3 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}


.service-item p {

    max-width: 280px;

    margin: 0;

    color: #858f89;

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================
   IMAGEN CENTRAL
========================================== */

.services-center {

    display: flex;

    align-items: center;
    justify-content: center;
}


.services-image {

    width: 100%;

    max-width: 400px;

    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;
}


/* Halo detrás de la imagen */

.services-image::before {

    content: "";

    position: absolute;

    width: 80%;
    height: 80%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41,182,246,.16),
            rgba(124,179,66,.08),
            transparent 70%
        );

    filter: blur(20px);
}


/* Imagen */

.services-image img {

    position: relative;

    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 40px rgba(0,0,0,.35)
        );

    transition:
        transform .5s ease;
}


.services-image:hover img {

    transform: scale(1.04);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .services-layout {

        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .services-center {

        grid-column: 1 / -1;

        grid-row: 1;
    }

    .services-left {

        grid-column: 1;
        grid-row: 2;
    }

    .services-right {

        grid-column: 2;
        grid-row: 2;
    }

    .services-image {

        max-width: 300px;
    }

}


@media (max-width: 700px) {

    .services {

        padding: 80px 25px;
    }

    .services-header {

        margin-bottom: 60px;
    }

    .services-layout {

        display: flex;

        flex-direction: column;

        gap: 45px;
    }

    .services-center {

        order: -1;
    }

    .services-side {

        width: 100%;

        gap: 35px;
    }

    .services-left .service-item {

        text-align: left;

        flex-direction: row;
    }

    .service-item p {

        max-width: none;
    }

}
.hero-web h2 span {
    display: block;
    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-web p {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #aeb7b1;
    font-size: 18px;
    line-height: 1.7;
}

.hero-web-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342
    );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hero-web-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(41, 182, 246, .25);
}
.logo img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.logo span {
    line-height: 1;
    font-size: 32px;
    font-weight: 800;

    letter-spacing: -1px;

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

/* ========================================
   MENU
======================================== */

ul {
    display: flex;
    gap: 20px;
    list-style: none;
}


/* ========================================
   HERO
======================================== */

.hero {
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 70px 8%;

    background: linear-gradient(
        135deg,
        #081422,
        #081423
    );
}


/* ========================================
   TITULO
======================================== */

h1.monropetitle {
    font-family: "Manrope", sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.07em;
    letter-spacing: -1px;
    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}
h2.monropesecondtitle{
    font-family: "Manrope", sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #FFC107;
}

/* ========================================
   PARRAFOS
======================================== */

p {
    margin: 20px 0;
}


/* ========================================
   BOTON
======================================== */
.btn-container {
    display: flex;
    gap: 20px;
}
.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    border: none;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        filter .3s ease;

}


.btn:hover {

    color: #ffffff;

    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .25);

}


/* ========================================
   MOCKUP
======================================== */

/* ========================================
   MOCKUP
======================================== */

.mockup {
    width: 100%;
    height: 100%;

    position: relative;

    overflow: hidden;

    background: linear-gradient(
        45deg,
        #29B6F6,
        #7CB342,
        #FFC107
    );
}


/* ========================================
   CAROUSEL
======================================== */

.carousel {
    width: 100%;
    height: 100%;

    position: relative;

    overflow: hidden;
}


/* ========================================
   TRACK
======================================== */

.carousel-track {
    display: flex;

    width: 100%;
    height: 100%;

    transition: transform 0.6s ease-in-out;
}


/* ========================================
   IMAGENES
======================================== */

.carousel-track img {
    min-width: 100%;
    width: 100%;
    height: 100%;

    flex: 0 0 100%;

    object-fit: cover;

    display: block;
}
/* ========================================
   BOTONES DEL CARRUSEL
======================================== */

.carousel-btn {
    position: absolute;

    top: 60%;
    transform: translateY(-50%);

    z-index: 20;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(6, 16, 29, 0.85);

    color: #ffffff;

    font-size: 24px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* BOTÓN IZQUIERDO */

.carousel-btn.prev {
    left: 20px;
}


/* BOTÓN DERECHO */

.carousel-btn.next {
    right: 20px;
}


/* HOVER */

.carousel-btn:hover {
    background: #FFC107;

    color: #081423;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* ========================================
   ASEGURAR QUE LAS IMÁGENES QUEDEN DETRÁS
======================================== */

.carousel-track {
    position: relative;
    z-index: 1;
}


/* ========================================
   INDICADORES
======================================== */

.carousel-dots {
    position: absolute;

    bottom: 18px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;

    gap: 8px;
}

.dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition: all 0.3s ease;
}

.dot.active {
    width: 26px;

    border-radius: 10px;

    background: #FFC107;
}

/* ========================================
   CARDS
======================================== */

.cards {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(180px, 1fr)
        );

    gap: 20px;

    padding: 60px 8%;
}


/* ========================================
   ARTICLES
======================================== */

article {
    background: #0d2038;

    padding: 40px;

    border: 1px solid #29B6F6;
    border-radius: 14px;

    text-align: center;
}


/* ========================================
   FOOTER
======================================== */

/* =========================================
   FOOTER
========================================= */

.footer {
    width: 100%;
    background: #0b0f0d;
    color: #ffffff;
    padding: 70px 8% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}


/* =========================================
   COLUMNAS
========================================= */

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    margin: 0 0 25px;

    font-size: 16px;
    font-weight: 700;

    color: #ffffff;
    letter-spacing: 0.5px;
}


/* =========================================
   NAVEGACIÓN
========================================= */

.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-nav a {
    width: fit-content;

    color: #aeb7b1;
    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-nav a:hover {
    color: #29b6f6;
    transform: translateX(5px);
}


/* =========================================
   REDES SOCIALES
========================================= */

.footer-social {
    align-items: center;
}

.footer-social h3 {
    width: 100%;
}

.social-links {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #aeb7b1;
    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.social-links a i {
    width: 20px;

    font-size: 18px;
}

.social-links a:hover {
    color: #29b6f6;
    transform: translateX(5px);
}


/* =========================================
   MARCA / DEVMax
========================================= */

.footer-brand {
    align-items: flex-end;
    text-align: right;
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-logo span {
    font-size: 32px;
    font-weight: 800;

    letter-spacing: -1px;

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.footer-tagline {
    margin: 0 0 20px;

    color: #8e9891;

    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-contact {
    margin: 0 0 18px;

    color: #c7cec9;

    font-size: 14px;
}

.footer-copyright {
    margin: 0;

    color: #737c76;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #68716c;

    font-size: 12px;
}

.footer-bottom strong {
    color: #aeb7b1;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .footer {
        padding: 50px 25px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-social {
        align-items: flex-start;
    }

    .footer-brand {
        align-items: flex-start;
        text-align: left;
    }

    .footer-logo span {
        font-size: 28px;
    }
}

/* =========================================================
   DEVMAX - WHATSAPP CHAT WIDGET
   ========================================================= */


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.devmax-chat {
    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 99999;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   BOTÓN FLOTANTE
   ========================================================= */

.devmax-chat-button {
    position: relative;

    width: 64px;
    height: 64px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #25D366;

    color: #ffffff;

    cursor: pointer;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.devmax-chat-button:hover {
    transform: scale(1.08);

    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.40);
}

.devmax-chat-button:active {
    transform: scale(0.96);
}


/* =========================================================
   LOGO WHATSAPP DEL BOTÓN
   ========================================================= */

.devmax-whatsapp-icon {
    width: 37px;
    height: 37px;

    fill: #ffffff;
}


/* =========================================================
   NOTIFICACIÓN
   ========================================================= */

.devmax-chat-badge {
    position: absolute;

    top: -3px;
    right: -3px;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background: #ff3030;

    color: #ffffff;

    border: 3px solid #ffffff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    z-index: 10;

    animation:
        devmaxBadgePulse 2s infinite;
}


@keyframes devmaxBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

}


/* =========================================================
   TOOLTIP
   "¿NECESITAS AYUDA?"
   ========================================================= */

.devmax-chat-tooltip {
    position: absolute;

    left: 78px;
    bottom: 17px;

    padding: 10px 15px;

    background: #ffffff;

    color: #222222;

    border-radius: 9px;

    white-space: nowrap;

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.15);

    pointer-events: none;

    z-index: 2;
}


/* Flecha */

.devmax-chat-tooltip::before {
    content: "";

    position: absolute;

    left: -6px;

    top: 50%;

    width: 12px;
    height: 12px;

    background: #ffffff;

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* =========================================================
   VENTANA DE CHAT
   ========================================================= */

.devmax-chatbox {
    position: absolute;

    left: 0;

    bottom: 82px;

    width: 400px;

    height: 270px;

    max-width: calc(100vw - 30px);

    overflow: hidden;

    background:
        #f5fbf8;

    border-radius: 24px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px)
        scale(0.97);

    transform-origin:
        bottom left;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 10000;
}


/* =========================================================
   CHAT ABIERTO
   ========================================================= */

.devmax-chatbox.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   HEADER
   ========================================================= */

.devmax-chat-header {
    position: relative;

    width: 100%;

    height: 70px;

    padding:
        0 18px 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;

    background: #20d566;

    color: #ffffff;
}


/* =========================================================
   MARCA DEL HEADER
   ========================================================= */

.devmax-chat-brand {
    display: flex;

    align-items: center;

    gap: 8px;
}


/* =========================================================
   LOGO DEL HEADER
   ========================================================= */

.devmax-chat-logo {
    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: transparent;

    border-radius: 50%;

    box-shadow: none;
}


.devmax-chat-logo svg {
    width: 30px;

    height: 30px;

    fill: #ffffff;
}


/* =========================================================
   TEXTO WHATSAPP
   ========================================================= */

.devmax-chat-brand strong {
    display: block;

    margin: 0;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    line-height: 1;
}


/* Ocultamos estado */

.devmax-chat-brand span {
    display: none;
}


/* Ocultamos punto online */

.devmax-chat-logo::after {
    display: none;
}


/* =========================================================
   BOTÓN CERRAR
   ========================================================= */

.devmax-chat-close {
    width: 36px;

    height: 36px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #188c48;

    color: #ffffff;

    font-size: 25px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.devmax-chat-close:hover {
    background: #11743a;

    transform: rotate(90deg);
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.devmax-chat-content {
    position: relative;

    width: 100%;

    height:
        calc(100% - 70px);

    padding:
        20px 18px;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #f6fcf9 0%,
            #f0f9f5 100%
        );
}


/* =========================================================
   BURBUJA
   ========================================================= */

.devmax-chat-bubble {
    position: relative;

    display: inline-block;

    max-width: 250px;

    padding:
        18px 20px;

    box-sizing: border-box;

    background: #ffffff;

    border: none;

    border-radius: 27px;

    color: #40505a;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.65;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   PICO DE LA BURBUJA
   ========================================================= */

.devmax-chat-bubble::before {
    content: "";

    position: absolute;

    left: -11px;

    bottom: 10px;

    width: 20px;

    height: 20px;

    background: #ffffff;

    clip-path:
        polygon(
            100% 0,
            100% 100%,
            0 100%
        );
}


/* =========================================================
   OPCIONES RÁPIDAS
   ========================================================= */

.devmax-chat-options {
    display: none;
}


/* =========================================================
   BOTÓN "ABRIR CHAT"
   ========================================================= */

.devmax-chat-open {
    position: absolute;

    left: 14px;

    bottom: 10px;

    width: 160px;

    height: 60px;

    margin: 0;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    box-sizing: border-box;

    background: #20d566;

    color: #ffffff;

    border-radius: 32px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    line-height: 1;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.devmax-chat-open:hover {
    background: #19c45d;

    transform:
        translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.20);
}


.devmax-chat-open:active {
    transform:
        translateY(0);
}


/* =========================================================
   ICONO DEL BOTÓN ABRIR CHAT
   ========================================================= */

.devmax-chat-open svg {
    width: 40px;

    height: 40px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 14;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   OCULTAR TEXTO INFERIOR
   ========================================================= */

.devmax-chat-content::after {
    display: none;
}


/* =========================================================
   ANIMACIÓN DE LA BURBUJA
   ========================================================= */

.devmax-chatbox.active .devmax-chat-bubble {
    animation:
        devmaxBubbleIn 0.35s ease;
}


@keyframes devmaxBubbleIn {

    from {
        opacity: 0;

        transform:
            translateY(10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   ANIMACIÓN DEL BOTÓN
   ========================================================= */

.devmax-chatbox.active .devmax-chat-open {
    animation:
        devmaxButtonIn 0.35s 0.08s ease both;
}


@keyframes devmaxButtonIn {

    from {
        opacity: 0;

        transform:
            translateY(10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.devmax-chat-button:focus-visible,
.devmax-chat-close:focus-visible,
.devmax-chat-open:focus-visible {
    outline:
        3px solid rgba(41, 182, 246, 0.65);

    outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .devmax-chat {
        left: auto;

        right: 20px;

        bottom: 20px;
    }


    .devmax-chat-tooltip {
        left: auto;

        right: 75px;

        bottom: 17px;
    }


    .devmax-chat-tooltip::before {
        left: auto;

        right: -6px;
    }


    .devmax-chatbox {
        left: auto;

        right: 0;

        transform-origin:
            bottom right;
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

    .devmax-chat {
        right: 18px;

        bottom: 18px;
    }


    .devmax-chat-tooltip {
        display: none;
    }


    .devmax-chat-button {
        width: 58px;

        height: 58px;
    }


    .devmax-whatsapp-icon {
        width: 34px;

        height: 34px;
    }


    .devmax-chatbox {
        right: 0;

        bottom: 72px;

        width:
            calc(100vw - 30px);

        max-width: 400px;

        height: 320px;

        border-radius: 22px;
    }


    .devmax-chat-header {
        height: 68px;

        padding-left: 20px;
    }


    .devmax-chat-content {
        height:
            calc(100% - 68px);

        padding:
            20px 16px;
    }


    .devmax-chat-bubble {
        max-width: 230px;

        padding:
            16px 18px;

        font-size: 15px;
    }


    .devmax-chat-open {
        left: 12px;

        bottom: 10px;

        width: 160px;

        height: 58px;
    }

}


/* =========================================================
   TELÉFONOS PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

    .devmax-chatbox {
        right: -3px;

        width:
            calc(100vw - 20px);

        height: 310px;
    }


    .devmax-chat-bubble {
        max-width: 220px;

        font-size: 14px;
    }


    .devmax-chat-open {
        width: 150px;

        height: 55px;

        font-size: 15px;
    }

}


/* =========================================================
   REDUCIR ANIMACIONES
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .devmax-chat *,
    .devmax-chat *::before,
    .devmax-chat *::after {
        animation: none !important;

        transition: none !important;
    }

}
/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {

    .hero {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    footer {
        flex-direction: column;
        gap: 10px;
    }

}

/* ==========================================
   WEBPAY / E-COMMERCE
========================================== */

.webpay-section {
    width: 100%;

    padding: 110px 6%;

    background: #0f1512;

    box-sizing: border-box;

    overflow: hidden;
}


/* ==========================================
   CONTENEDOR
========================================== */

.webpay-container {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* ==========================================
   CONTENIDO
========================================== */

.webpay-content {
    max-width: 620px;
}


.webpay-label {

    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.webpay-content h2 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 800;
}


.webpay-content h2 span {

    display: block;

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


.webpay-content p {

    max-width: 570px;

    margin: 0 0 35px;

    color: #9ca6a0;

    font-size: 17px;

    line-height: 1.7;
}


/* ==========================================
   BOTÓN
========================================== */

.webpay-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 28px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342
    );

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(41,182,246,.15);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.webpay-button i {

    font-size: 17px;

    transition:
        transform .3s ease;
}


.webpay-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(41,182,246,.25);
}


.webpay-button:hover i {

    transform: translateX(5px);
}


/* ==========================================
   IMAGEN
========================================== */

.webpay-visual {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.webpay-visual img {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 560px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 50px rgba(0,0,0,.35)
        );

    transition:
        transform .5s ease;
}


.webpay-visual:hover img {

    transform:
        scale(1.03)
        translateY(-5px);
}


/* ==========================================
   LUZ DE FONDO
========================================== */

.webpay-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41,182,246,.18),
            rgba(124,179,66,.10),
            transparent 70%
        );

    filter: blur(30px);

    z-index: 1;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 850px) {

    .webpay-section {

        padding: 80px 25px;
    }

    .webpay-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .webpay-content {

        max-width: 700px;

        text-align: center;

        margin: 0 auto;
    }

    .webpay-content p {

        margin-left: auto;

        margin-right: auto;
    }

    .webpay-visual {

        min-height: 350px;

        order: 2;
    }

}


@media (max-width: 500px) {

    .webpay-content h2 {

        font-size: 38px;
    }

    .webpay-content p {

        font-size: 15px;
    }

    .webpay-visual {

        min-height: 280px;
    }

    .webpay-glow {

        width: 280px;

        height: 280px;
    }

}

/* ==========================================
   NOSOTROS
========================================== */

.about-section {
    width: 100%;

    padding: 120px 6%;

    background: #0b0f0d;

    box-sizing: border-box;

    overflow: hidden;
}


/* ==========================================
   CONTENEDOR
========================================== */

.about-container {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    align-items: center;

    gap: 100px;
}


/* ==========================================
   TEXTO
========================================== */

.about-content {
    max-width: 680px;
}


.about-label {

    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.about-content h2 {

    margin: 0 0 30px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;
}


.about-content h2 span {

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


.about-content p {

    margin: 0 0 20px;

    color: #939d97;

    font-size: 16px;

    line-height: 1.8;
}


/* ==========================================
   INFORMACIÓN
========================================== */

.about-info {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    position: relative;
}


/* ==========================================
   TARJETAS
========================================== */

.about-card {

    min-height: 190px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(255,255,255,.08);

    box-sizing: border-box;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.about-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(41,182,246,.35);

    background:
        linear-gradient(
            145deg,
            rgba(41,182,246,.08),
            rgba(124,179,66,.04)
        );
}


/* ==========================================
   ICONO
========================================== */

.about-card-icon {

    width: 45px;
    height: 45px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(41,182,246,.10);

    color: #29b6f6;

    font-size: 20px;
}


/* ==========================================
   NÚMERO / TÍTULO
========================================== */

.about-card strong {

    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 28px;

    font-weight: 800;
}


.about-card span {

    color: #7f8983;

    font-size: 13px;

    line-height: 1.5;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .about-section {

        padding: 90px 25px;
    }

    .about-container {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-content {

        max-width: 750px;

        margin: 0 auto;

        text-align: center;
    }

}


@media (max-width: 550px) {

    .about-info {

        grid-template-columns: 1fr;
    }

    .about-card {

        min-height: 160px;
    }

}

/* ==========================================
   PROCESO HOSTING
========================================== */

.hosting-process {
    width: 100%;

    padding: 120px 6%;

    background: #0f1512;

    box-sizing: border-box;
}


/* ==========================================
   HEADER
========================================== */

.hosting-process-header {
    max-width: 750px;

    margin: 0 auto 75px;

    text-align: center;
}

.hosting-process-header > span {
    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}

.hosting-process-header h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;
}

.hosting-process-header h2 strong {
    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hosting-process-header p {
    max-width: 600px;

    margin: 0 auto;

    color: #8e9891;

    font-size: 16px;

    line-height: 1.7;
}


/* ==========================================
   GRID
========================================== */

.hosting-process-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.carousel-track img {
    cursor: pointer;
}
/* ==========================================
   PASOS
========================================== */

.hosting-step {
    position: relative;

    padding: 40px 35px;

    min-height: 320px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(255,255,255,.08);

    box-sizing: border-box;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.hosting-step:hover {
    transform: translateY(-8px);

    border-color:
        rgba(41,182,246,.35);
}


/* ==========================================
   NÚMERO
========================================== */

.hosting-step-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: rgba(255,255,255,.08);

    font-size: 48px;

    font-weight: 800;
}


/* ==========================================
   ICONO
========================================== */

.hosting-step-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(41,182,246,.15),
            rgba(124,179,66,.10)
        );

    color: #29b6f6;

    font-size: 23px;
}


/* ==========================================
   TEXTO
========================================== */

.hosting-step h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.3;
}

.hosting-step p {
    margin: 0;

    color: #858f89;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 800px) {

    .hosting-process {
        padding: 90px 25px;
    }

    .hosting-process-grid {
        grid-template-columns: 1fr;
    }

    .hosting-step {
        min-height: auto;
    }
}

/* ==========================================
   PROCESO HOSTING
========================================== */

.hosting-process {
    width: 100%;

    padding: 120px 6%;

    background: #0f1512;

    box-sizing: border-box;
}


/* ==========================================
   HEADER
========================================== */

.hosting-process-header {
    max-width: 750px;

    margin: 0 auto 75px;

    text-align: center;
}

.hosting-process-header > span {
    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}

.hosting-process-header h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;
}

.hosting-process-header h2 strong {
    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hosting-process-header p {
    max-width: 600px;

    margin: 0 auto;

    color: #8e9891;

    font-size: 16px;

    line-height: 1.7;
}


/* ==========================================
   GRID
========================================== */

.hosting-process-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


/* ==========================================
   PASOS
========================================== */

.hosting-step {
    position: relative;

    padding: 40px 35px;

    min-height: 320px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(255,255,255,.08);

    box-sizing: border-box;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.hosting-step:hover {
    transform: translateY(-8px);

    border-color:
        rgba(41,182,246,.35);
}


/* ==========================================
   NÚMERO
========================================== */

.hosting-step-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: rgba(255,255,255,.08);

    font-size: 48px;

    font-weight: 800;
}


/* ==========================================
   ICONO
========================================== */

.hosting-step-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(41,182,246,.15),
            rgba(124,179,66,.10)
        );

    color: #29b6f6;

    font-size: 23px;
}


/* ==========================================
   TEXTO
========================================== */

.hosting-step h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.3;
}

.hosting-step p {
    margin: 0;

    color: #858f89;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 800px) {

    .hosting-process {
        padding: 90px 25px;
    }

    .hosting-process-grid {
        grid-template-columns: 1fr;
    }

    .hosting-step {
        min-height: auto;
    }
}

/* ==========================================
   PLANES HOSTING
========================================== */

.hosting-plans {
    width: 100%;

    padding: 120px 6%;

    background: #0b0f0d;

    box-sizing: border-box;
}


/* ==========================================
   HEADER
========================================== */

.hosting-plans-header {
    max-width: 750px;

    margin: 0 auto 70px;

    text-align: center;
}

.hosting-plans-header > span {
    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}

.hosting-plans-header h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;
}

.hosting-plans-header h2 strong {

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hosting-plans-header p {

    max-width: 600px;

    margin: 0 auto;

    color: #8e9891;

    font-size: 16px;

    line-height: 1.7;
}


/* ==========================================
   GRID
========================================== */

.hosting-plans-grid {

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    align-items: stretch;
}

.hosting-plan-price2{
    text-align: center;
}

.hosting-plan-month{
    margin-top: .75rem;
    font-size: .95rem;
    color: var(--text-muted);
}
@media (max-width: 768px){
    .hosting-plans-grid2{
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}
.hosting-plan2{
    width: 100%;
    max-width: 420px;
}
.hosting-plans-grid2{
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 420px));
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
}
/* ==========================================
   PLAN
========================================== */

.hosting-plan {

    position: relative;

    padding: 40px 35px;

    display: flex;

    flex-direction: column;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.01)
        );

    border: 1px solid rgba(255,255,255,.08);

    box-sizing: border-box;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.hosting-plan:hover {

    transform: translateY(-7px);

    border-color:
        rgba(41,182,246,.3);
}


/* ==========================================
   PLAN DESTACADO
========================================== */

.hosting-plan-featured {

    border-color:
        rgba(41,182,246,.45);

    background:
        linear-gradient(
            145deg,
            rgba(41,182,246,.08),
            rgba(124,179,66,.035)
        );

    transform: translateY(-10px);
}

.hosting-plan-featured:hover {

    transform: translateY(-15px);
}


/* ==========================================
   BADGE
========================================== */

.hosting-plan-badge {

    position: absolute;

    top: 20px;
    right: 20px;

    padding: 6px 10px;

    border-radius: 20px;

    background: #29b6f6;

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* ==========================================
   INFORMACIÓN
========================================== */

.hosting-plan-label {

    color: #29b6f6;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.hosting-plan h3 {

    margin: 10px 0 12px;

    color: #ffffff;

    font-size: 25px;

    font-weight: 800;
}

.hosting-plan-top p {

    margin: 0;

    min-height: 55px;

    color: #858f89;

    font-size: 14px;

    line-height: 1.6;
}


/* ==========================================
   PRECIO
========================================== */

.hosting-plan-price {

    margin: 35px 0;

    display: flex;

    align-items: baseline;

    gap: 5px;
}

.hosting-plan-price small {

    color: #737c76;

    font-size: 11px;
}

.hosting-plan-price strong {

    color: #ffffff;

    font-size: 36px;

    font-weight: 800;
}

.hosting-plan-price span {

    color: #737c76;

    font-size: 12px;
}


/* ==========================================
   CARACTERÍSTICAS
========================================== */

.hosting-plan ul {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin: 0 0 35px;

    padding: 0;

    list-style: none;
}

.hosting-plan li {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #aeb7b1;

    font-size: 14px;
}

.hosting-plan li i {

    color: #7cb342;

    font-size: 16px;
}


/* ==========================================
   BOTÓN
========================================== */

.hosting-plan-button {

    margin-top: auto;

    width: 100%;

    padding: 13px 20px;

    box-sizing: border-box;

    border-radius: 9px;

    border: 1px solid rgba(255,255,255,.12);

    color: #ffffff;

    text-align: center;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        background .3s ease,
        border-color .3s ease;
}

.hosting-plan-button:hover {

    background: #29b6f6;

    border-color: #29b6f6;
}


/* Botón destacado */

.hosting-plan-featured .hosting-plan-button {

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342
        );

    border-color: transparent;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .hosting-plans-grid {

        grid-template-columns: 1fr;

        max-width: 500px;
    }

    .hosting-plan-featured {

        transform: none;
    }

    .hosting-plan-featured:hover {

        transform: translateY(-7px);
    }
}

/* ==========================================
   MANTENIMIENTO WEB
========================================== */

.maintenance-section {

    width: 100%;

    padding: 120px 6%;

    background: #0f1512;

    box-sizing: border-box;

    overflow: hidden;
}


/* ==========================================
   CONTENEDOR
========================================== */

.maintenance-container {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;
}


/* ==========================================
   CONTENIDO
========================================== */

.maintenance-content {

    max-width: 650px;
}


.maintenance-label {

    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.maintenance-content h2 {

    margin: 0 0 30px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.08;

    font-weight: 800;
}


.maintenance-content h2 span {

    display: block;

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


.maintenance-content p {

    margin: 0 0 20px;

    color: #929c96;

    font-size: 16px;

    line-height: 1.8;
}


/* ==========================================
   BOTÓN
========================================== */

.maintenance-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding: 15px 25px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.maintenance-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(41,182,246,.2);
}


.maintenance-button i {

    transition:
        transform .3s ease;
}


.maintenance-button:hover i {

    transform: translateX(5px);
}


/* ==========================================
   VISUAL
========================================== */

.maintenance-visual {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ==========================================
   BRILLO
========================================== */

.maintenance-glow {

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41,182,246,.16),
            rgba(124,179,66,.08),
            transparent 70%
        );

    filter: blur(30px);
}


/* ==========================================
   VENTANA
========================================== */

.maintenance-window {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 500px;

    border-radius: 18px;

    overflow: hidden;

    background: #111815;

    border: 1px solid rgba(255,255,255,.1);

    box-shadow:
        0 30px 70px rgba(0,0,0,.4);

    transform:
        perspective(1000px)
        rotateY(-5deg)
        rotateX(2deg);

    transition:
        transform .5s ease;
}


.maintenance-window:hover {

    transform:
        perspective(1000px)
        rotateY(0)
        rotateX(0)
        translateY(-5px);
}


/* ==========================================
   BARRA VENTANA
========================================== */

.maintenance-window-header {

    height: 42px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 0 15px;

    background: #181f1b;

    border-bottom:
        1px solid rgba(255,255,255,.06);
}


.maintenance-window-header span {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #59615c;
}


/* ==========================================
   CONTENIDO VISUAL
========================================== */

.maintenance-window-content {

    padding: 30px;
}


.maintenance-image {

    height: 170px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(41,182,246,.15),
            rgba(124,179,66,.12),
            rgba(255,193,7,.08)
        );

    color: rgba(255,255,255,.35);

    font-size: 45px;
}


/* ==========================================
   LÍNEAS
========================================== */

.maintenance-lines {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 25px;
}


.maintenance-lines span {

    display: block;

    height: 9px;

    border-radius: 10px;

    background: rgba(255,255,255,.08);
}


.maintenance-lines span:nth-child(1) {

    width: 80%;
}


.maintenance-lines span:nth-child(2) {

    width: 60%;
}


.maintenance-lines span:nth-child(3) {

    width: 72%;
}


/* ==========================================
   ESTADO
========================================== */

.maintenance-price {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border-radius: 9px;

    background: rgba(124,179,66,.08);

    color: #7cb342;

    font-size: 12px;

    font-weight: 600;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .maintenance-section {

        padding: 90px 25px;
    }

    .maintenance-container {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .maintenance-content {

        max-width: 750px;

        margin: 0 auto;

        text-align: center;
    }

    .maintenance-button {

        justify-content: center;
    }

}


@media (max-width: 550px) {

    .maintenance-content h2 {

        font-size: 38px;
    }

    .maintenance-content p {

        font-size: 15px;
    }

    .maintenance-window-content {

        padding: 20px;
    }

    .maintenance-image {

        height: 130px;
    }

}

/* ==========================================
   PORTAFOLIO
========================================== */

.portfolio-section {

    width: 100%;

    padding: 120px 6%;

    background: #0b0f0d;

    box-sizing: border-box;

}


/* ==========================================
   HEADER
========================================== */

.portfolio-header {

    max-width: 750px;

    margin: 0 auto 70px;

    text-align: center;

}


.portfolio-label {

    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.portfolio-header h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

}


.portfolio-header h2 span {

    background: linear-gradient(
        90deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

}


.portfolio-header p {

    max-width: 620px;

    margin: 0 auto;

    color: #8e9891;

    font-size: 16px;

    line-height: 1.7;

}


/* ==========================================
   GRID
========================================== */

.portfolio-grid {

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

}


/* ==========================================
   TARJETA
========================================== */

.portfolio-card {

    cursor: pointer;

    overflow: hidden;

}


.portfolio-image {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 18px;

    background: #111815;

    border: 1px solid rgba(255,255,255,.08);

}


.portfolio-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.portfolio-card:hover .portfolio-image img {

    transform: scale(1.06);

}


/* ==========================================
   OVERLAY
========================================== */

.portfolio-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background:
        rgba(5,10,8,.72);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    opacity: 0;

    transition:
        opacity .35s ease;

}


.portfolio-card:hover .portfolio-overlay {

    opacity: 1;

}


.portfolio-overlay i {

    font-size: 18px;

    transition:
        transform .3s ease;

}


.portfolio-card:hover .portfolio-overlay i {

    transform:
        translate(3px,-3px);

}


/* ==========================================
   INFORMACIÓN
========================================== */

.portfolio-info {

    padding: 18px 5px 5px;

}


.portfolio-info span {

    color: #29b6f6;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.portfolio-info h3 {

    margin: 7px 0 0;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

}


/* ==========================================
   MODAL
========================================== */

.portfolio-modal {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    box-sizing: border-box;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.portfolio-modal.active {

    opacity: 1;

    visibility: visible;

}


/* ==========================================
   FONDO
========================================== */

.portfolio-modal-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(3,7,5,.88);

    backdrop-filter:
        blur(8px);

}


/* ==========================================
   CONTENIDO MODAL
========================================== */

.portfolio-modal-content {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1050px;

    max-height: 90vh;

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    overflow: hidden;

    border-radius: 22px;

    background: #111815;

    border: 1px solid rgba(255,255,255,.1);

    box-shadow:
        0 40px 100px rgba(0,0,0,.6);

    transform:
        translateY(20px)
        scale(.97);

    transition:
        transform .35s ease;

}


.portfolio-modal.active
.portfolio-modal-content {

    transform:
        translateY(0)
        scale(1);

}


/* ==========================================
   IMAGEN MODAL
========================================== */

.portfolio-modal-image {

    min-height: 500px;

    background: #080c0a;

    overflow: auto;

}


.portfolio-modal-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* ==========================================
   INFORMACIÓN MODAL
========================================== */

.portfolio-modal-info {

    padding: 50px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.portfolio-modal-info > span {

    color: #29b6f6;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.portfolio-modal-info h3 {

    margin: 12px 0 20px;

    color: #ffffff;

    font-size: 32px;

    line-height: 1.2;

}


.portfolio-modal-info p {

    margin: 0 0 30px;

    color: #929c96;

    font-size: 15px;

    line-height: 1.8;

}


/* ==========================================
   BOTÓN MODAL
========================================== */

.portfolio-modal-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.portfolio-modal-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px rgba(41,182,246,.2);

}


/* ==========================================
   BOTÓN CERRAR
========================================== */

.portfolio-modal-close {

    position: absolute;

    z-index: 5;

    top: 15px;

    right: 15px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 50%;

    background:
        rgba(10,15,12,.8);

    color: #ffffff;

    cursor: pointer;

    font-size: 15px;

    transition:
        background .25s ease,
        transform .25s ease;

}


.portfolio-modal-close:hover {

    background: #29b6f6;

    transform: rotate(90deg);

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 850px) {

    .portfolio-section {

        padding: 90px 25px;

    }


    .portfolio-grid {

        grid-template-columns: 1fr;

        max-width: 650px;

    }


    .portfolio-modal-content {

        grid-template-columns: 1fr;

        max-width: 600px;

        max-height: 90vh;

        overflow-y: auto;

    }


    .portfolio-modal-image {

        min-height: 280px;

        max-height: 400px;

    }


    .portfolio-modal-info {

        padding: 30px;

    }

}


@media (max-width: 500px) {

    .portfolio-modal {

        padding: 15px;

    }


    .portfolio-modal-content {

        border-radius: 16px;

    }


    .portfolio-modal-image {

        min-height: 220px;

    }


    .portfolio-modal-info h3 {

        font-size: 26px;

    }

}
/* ==========================================
   EQUIPO
========================================== */

.team-section {

    position: relative;

    width: 100%;

    padding: 120px 6%;

    background:
        linear-gradient(
            135deg,
            #0b0f0d,
            #101713
        );

    box-sizing: border-box;

    overflow: hidden;
}


/* ==========================================
   DECORACIÓN
========================================== */

.team-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41,182,246,.08),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================
   CONTENEDOR
========================================== */

.team-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

}


/* ==========================================
   CONTENIDO
========================================== */

.team-content {

    max-width: 650px;

}


.team-label {

    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.team-content h2 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

}


.team-content h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342,
            #ffc107
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

}


.team-content p {

    max-width: 580px;

    margin: 0 0 30px;

    color: #929c96;

    font-size: 16px;

    line-height: 1.8;

}


/* ==========================================
   BOTÓN
========================================== */

.team-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.team-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(41,182,246,.2);

}


.team-button i {

    transition:
        transform .3s ease;

}


.team-button:hover i {

    transform: translateX(5px);

}


/* ==========================================
   VISUAL
========================================== */

.team-visual {

    position: relative;

    height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* ==========================================
   CÍRCULO CENTRAL
========================================== */

.team-circle {

    position: relative;

    z-index: 2;

    width: 190px;

    height: 190px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(41,182,246,.12),
            rgba(124,179,66,.08)
        );

    border: 1px solid
        rgba(255,255,255,.1);

    box-shadow:
        0 0 80px
        rgba(41,182,246,.08);

}


.team-circle::before {

    content: "";

    position: absolute;

    inset: 15px;

    border-radius: 50%;

    border: 1px solid
        rgba(41,182,246,.18);

}


.team-circle i {

    color: #29b6f6;

    font-size: 70px;

}


/* ==========================================
   TARJETAS
========================================== */

.team-card {

    position: absolute;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 17px;

    border-radius: 12px;

    background:
        rgba(17,24,21,.9);

    border: 1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 15px 35px rgba(0,0,0,.3);

    backdrop-filter:
        blur(10px);

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

}


.team-card i {

    color: #29b6f6;

    font-size: 17px;

}


/* ==========================================
   POSICIONES
========================================== */

.team-card-one {

    top: 65px;

    left: 10px;

}


.team-card-two {

    top: 40px;

    right: 15px;

}


.team-card-three {

    bottom: 65px;

    right: 50px;

}


/* ==========================================
   HOVER
========================================== */

.team-card {

    animation:
        teamFloat 5s ease-in-out infinite;

}


.team-card-two {

    animation-delay: -1.5s;

}


.team-card-three {

    animation-delay: -3s;

}


@keyframes teamFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 850px) {

    .team-section {

        padding: 90px 25px;

    }


    .team-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .team-content {

        max-width: 700px;

        margin: 0 auto;

        text-align: center;

    }


    .team-content p {

        margin-left: auto;

        margin-right: auto;

    }


    .team-button {

        justify-content: center;

    }


    .team-visual {

        height: 360px;

        max-width: 550px;

        width: 100%;

        margin: 0 auto;

    }

}


@media (max-width: 500px) {

    .team-content h2 {

        font-size: 36px;

    }


    .team-visual {

        height: 320px;

    }


    .team-circle {

        width: 150px;

        height: 150px;

    }


    .team-circle i {

        font-size: 55px;

    }


    .team-card {

        font-size: 10px;

        padding: 10px 12px;

    }


    .team-card-one {

        left: 0;

    }


    .team-card-two {

        right: 0;

    }


    .team-card-three {

        right: 10px;

        bottom: 30px;

    }

}

/* ==========================================
   CONTACTO
========================================== */

.contact-section {

    position: relative;

    width: 100%;

    padding: 120px 6%;

    background: #0f1512;

    box-sizing: border-box;

    overflow: hidden;

}


/* ==========================================
   DECORACIÓN DE FONDO
========================================== */

.contact-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    left: -250px;

    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41,182,246,.08),
            transparent 70%
        );

    pointer-events: none;

}


.contact-section::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    right: -200px;

    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124,179,66,.07),
            transparent 70%
        );

    pointer-events: none;

}


/* ==========================================
   CONTENEDOR
========================================== */

.contact-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 90px;

}


/* ==========================================
   CONTENIDO
========================================== */

.contact-content {

    max-width: 560px;

}


.contact-label {

    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.contact-content h2 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.08;

    font-weight: 800;

}


.contact-content h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342,
            #ffc107
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

}


.contact-content > p {

    margin: 0 0 35px;

    color: #929c96;

    font-size: 16px;

    line-height: 1.8;

}


/* ==========================================
   DATOS DE CONTACTO
========================================== */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 16px;

}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 15px;

    width: fit-content;

    text-decoration: none;

}


.contact-detail-icon {

    width: 46px;

    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(41,182,246,.09);

    border: 1px solid
        rgba(41,182,246,.12);

    color: #29b6f6;

    font-size: 18px;

    transition:
        background .3s ease,
        transform .3s ease;

}


.contact-detail:hover
.contact-detail-icon {

    background:
        rgba(41,182,246,.16);

    transform:
        translateY(-2px);

}


.contact-detail span {

    display: block;

    margin-bottom: 3px;

    color: #737d77;

    font-size: 11px;

}


.contact-detail strong {

    display: block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

}


/* ==========================================
   FORMULARIO
========================================== */

.contact-form-wrapper {

    width: 100%;

}


.contact-form {

    padding: 45px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        );

    border: 1px solid
        rgba(255,255,255,.09);

    box-shadow:
        0 25px 70px rgba(0,0,0,.25);

    box-sizing: border-box;

}


/* ==========================================
   TITULO FORMULARIO
========================================== */

.contact-form-title {

    margin-bottom: 30px;

}


.contact-form-title h3 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 24px;

    font-weight: 700;

}


.contact-form-title p {

    margin: 0;

    color: #7f8983;

    font-size: 13px;

    line-height: 1.6;

}


/* ==========================================
   CAMPOS
========================================== */

.contact-field {

    margin-bottom: 20px;

}


.contact-field label {

    display: block;

    margin-bottom: 8px;

    color: #c5ccc8;

    font-size: 12px;

    font-weight: 600;

}


.contact-field input,
.contact-field select,
.contact-field textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid
        rgba(255,255,255,.09);

    border-radius: 9px;

    outline: none;

    background: #0c110f;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    box-sizing: border-box;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


.contact-field input::placeholder,
.contact-field textarea::placeholder {

    color: #59625d;

}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {

    border-color:
        rgba(41,182,246,.55);

    background: #0e1512;

    box-shadow:
        0 0 0 3px
        rgba(41,182,246,.08);

}


.contact-field textarea {

    resize: vertical;

    min-height: 130px;

    line-height: 1.6;

}


/* SELECT */

.contact-field select {

    cursor: pointer;

}


.contact-field select option {

    background: #111815;

    color: #ffffff;

}


/* ==========================================
   BOTÓN ENVIAR
========================================== */

.contact-submit {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 15px 25px;

    border: 0;

    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.contact-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(41,182,246,.2);

}


.contact-submit i {

    transition:
        transform .3s ease;

}


.contact-submit:hover i {

    transform:
        translateX(5px);

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .contact-section {

        padding: 90px 25px;

    }


    .contact-container {

        grid-template-columns: 1fr;

        gap: 60px;

        max-width: 700px;

    }


    .contact-content {

        max-width: 700px;

        text-align: center;

        margin: 0 auto;

    }


    .contact-content > p {

        margin-left: auto;

        margin-right: auto;

    }


    .contact-details {

        align-items: center;

    }

}


@media (max-width: 550px) {

    .contact-content h2 {

        font-size: 38px;

    }


    .contact-form {

        padding: 28px 22px;

        border-radius: 17px;

    }


    .contact-form-title h3 {

        font-size: 21px;

    }

}

/* ==========================================
   STUDIO CREATIVO
========================================== */

.studio-section {

    position: relative;

    width: 100%;

    padding: 120px 6%;

    background: #0b0f0d;

    box-sizing: border-box;

    overflow: hidden;

}


/* ==========================================
   HEADER
========================================== */

.studio-header {

    position: relative;

    z-index: 3;

    max-width: 760px;

    margin: 0 auto 90px;

    text-align: center;

}


.studio-label {

    display: block;

    margin-bottom: 15px;

    color: #29b6f6;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.studio-header h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.08;

    font-weight: 800;

}


.studio-header h2 span {

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342,
            #ffc107
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

}


.studio-header p {

    max-width: 650px;

    margin: 0 auto;

    color: #8f9993;

    font-size: 16px;

    line-height: 1.8;

}


/* ==========================================
   CONTENEDOR
========================================== */

.studio-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    min-height: 600px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    grid-template-rows:
        1fr 1fr;

    gap: 35px;

    align-items: center;

}


/* ==========================================
   TARJETAS
========================================== */

.studio-card {

    position: relative;

    z-index: 4;

    display: flex;

    gap: 18px;

    padding: 25px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    border: 1px solid
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(8px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.studio-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(41,182,246,.25);

    box-shadow:
        0 18px 45px rgba(0,0,0,.3);

}


/* ==========================================
   POSICIONES
========================================== */

.studio-card-left-top {

    grid-column: 1;

    grid-row: 1;

}


.studio-card-left-bottom {

    grid-column: 1;

    grid-row: 2;

}


.studio-card-right-top {

    grid-column: 3;

    grid-row: 1;

}


.studio-card-right-bottom {

    grid-column: 3;

    grid-row: 2;

}


/* ==========================================
   ICONOS
========================================== */

.studio-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(41,182,246,.08);

    border: 1px solid
        rgba(41,182,246,.12);

    color: #29b6f6;

    font-size: 20px;

    transition:
        transform .3s ease,
        background .3s ease;

}


.studio-card:hover .studio-icon {

    transform:
        scale(1.08);

    background:
        rgba(41,182,246,.15);

}


/* ==========================================
   TEXTO TARJETAS
========================================== */

.studio-card h3 {

    margin: 2px 0 8px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

}


.studio-card p {

    margin: 0;

    color: #818b85;

    font-size: 13px;

    line-height: 1.7;

}


/* ==========================================
   VISUAL CENTRAL
========================================== */

.studio-visual {

    position: relative;

    grid-column: 2;

    grid-row: 1 / 3;

    width: 100%;

    height: 100%;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* ==========================================
   BRILLO
========================================== */

.studio-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(41,182,246,.16),
            rgba(124,179,66,.07),
            transparent 70%
        );

    filter: blur(25px);

}


/* ==========================================
   ANILLOS
========================================== */

.studio-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,.08);

}


.studio-ring-one {

    width: 360px;

    height: 360px;

}


.studio-ring-two {

    width: 440px;

    height: 440px;

    border-color:
        rgba(41,182,246,.07);

}


/* ==========================================
   OBJETO CENTRAL
========================================== */

.studio-object {

    position: relative;

    z-index: 3;

    width: 170px;

    height: 210px;

    transform:
        perspective(600px)
        rotateY(-18deg)
        rotateX(8deg)
        rotateZ(-3deg);

    animation:
        studioFloat 5s ease-in-out infinite;

}


/* PARTE SUPERIOR */

.studio-object-top {

    width: 100%;

    height: 45px;

    border-radius: 20px 20px 8px 8px;

    background:
        linear-gradient(
            135deg,
            #29b6f6,
            #7cb342
        );

    transform:
        skewX(-8deg);

}


/* CUERPO */

.studio-object-body {

    width: 145px;

    height: 150px;

    margin-left: 13px;

    padding: 30px 20px;

    box-sizing: border-box;

    border-radius:
        8px 8px 20px 20px;

    background:
        linear-gradient(
            145deg,
            #18211c,
            #0d1210
        );

    border:
        1px solid
        rgba(255,255,255,.1);

    box-shadow:
        15px 25px 50px rgba(0,0,0,.4);

}


/* LÍNEAS DEL OBJETO */

.studio-object-body span {

    display: block;

    height: 8px;

    margin-bottom: 13px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.08);

}


.studio-object-body span:nth-child(1) {

    width: 85%;

}


.studio-object-body span:nth-child(2) {

    width: 65%;

}


.studio-object-body span:nth-child(3) {

    width: 75%;

}


/* ==========================================
   ÓRBITAS
========================================== */

.studio-orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px dashed
        rgba(255,255,255,.12);

}


.orbit-one {

    width: 380px;

    height: 130px;

    transform:
        rotate(-25deg);

    animation:
        orbitRotate 12s linear infinite;

}


.orbit-two {

    width: 300px;

    height: 100px;

    transform:
        rotate(55deg);

    border-color:
        rgba(124,179,66,.15);

    animation:
        orbitRotateReverse 10s linear infinite;

}


/* ==========================================
   ANIMACIONES
========================================== */

@keyframes studioFloat {

    0%,
    100% {

        transform:
            perspective(600px)
            rotateY(-18deg)
            rotateX(8deg)
            rotateZ(-3deg)
            translateY(0);

    }

    50% {

        transform:
            perspective(600px)
            rotateY(-18deg)
            rotateX(8deg)
            rotateZ(-3deg)
            translateY(-12px);

    }

}


@keyframes orbitRotate {

    from {

        transform:
            rotate(-25deg)
            rotate(0deg);

    }

    to {

        transform:
            rotate(-25deg)
            rotate(360deg);

    }

}


@keyframes orbitRotateReverse {

    from {

        transform:
            rotate(55deg)
            rotate(0deg);

    }

    to {

        transform:
            rotate(55deg)
            rotate(-360deg);

    }

}


/* ==========================================
   BOTÓN
========================================== */

.studio-footer {

    position: relative;

    z-index: 5;

    margin-top: 55px;

    text-align: center;

}


.studio-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.studio-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(41,182,246,.2);

}


.studio-button i {

    transition:
        transform .3s ease;

}


.studio-button:hover i {

    transform:
        translateX(5px);

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 950px) {

    .studio-container {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            auto auto auto;

        gap: 20px;

        min-height: auto;

    }


    .studio-visual {

        grid-column: 1 / 3;

        grid-row: 1;

        min-height: 400px;

    }


    .studio-card-left-top {

        grid-column: 1;

        grid-row: 2;

    }


    .studio-card-right-top {

        grid-column: 2;

        grid-row: 2;

    }


    .studio-card-left-bottom {

        grid-column: 1;

        grid-row: 3;

    }


    .studio-card-right-bottom {

        grid-column: 2;

        grid-row: 3;

    }

}


@media (max-width: 600px) {

    .studio-section {

        padding: 90px 25px;

    }


    .studio-header {

        margin-bottom: 50px;

    }


    .studio-container {

        display: flex;

        flex-direction: column;

    }


    .studio-visual {

        order: 1;

        width: 100%;

        min-height: 350px;

    }


    .studio-card {

        width: 100%;

        box-sizing: border-box;

    }


    .studio-card-left-top {

        order: 2;

    }


    .studio-card-left-bottom {

        order: 3;

    }


    .studio-card-right-top {

        order: 4;

    }


    .studio-card-right-bottom {

        order: 5;

    }


    .studio-ring-one {

        width: 280px;

        height: 280px;

    }


    .studio-ring-two {

        width: 330px;

        height: 330px;

    }


    .studio-object {

        transform:
            scale(.85)
            perspective(600px)
            rotateY(-18deg)
            rotateX(8deg)
            rotateZ(-3deg);

    }

}

/* ==========================================
   FOOTER - NAVEGACIÓN
========================================== */

.footer-nav-menu {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

    margin: 0;

    padding: 0;

}


/* ENLACES */

.footer-nav-menu a {

    position: relative;

    display: inline-block;

    padding: 3px 0;

    color: #8f9993;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;

}


/* LÍNEA DEBAJO DEL ENLACE */

.footer-nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #29b6f6,
            #7cb342,
            #ffc107
        );

    transition:
        width .3s ease;

}


/* HOVER */

.footer-nav-menu a:hover {

    color: #ffffff;

    transform:
        translateX(5px);

}


.footer-nav-menu a:hover::after {

    width: 100%;

}
/* ==========================================
   CARACTERÍSTICAS HOSTING
========================================== */

.hosting-features {

    margin: 0;

    padding: 0;

    list-style: none;

}


.hosting-features li {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #929c96;

    font-size: 13px;

    line-height: 1.5;

}


.hosting-features li i {

    flex-shrink: 0;

    color: #7cb342;

    font-size: 15px;

}


/* ==========================================
   VER MÁS
========================================== */

.hosting-more {

    margin-top: 18px;

    padding-top: 15px;

    border-top: 1px solid
        rgba(255,255,255,.07);

}


/* ==========================================
   BOTÓN
========================================== */

.hosting-more summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    cursor: pointer;

    list-style: none;

    color: #29b6f6;

    font-size: 13px;

    font-weight: 700;

    transition:
        color .3s ease;

}


/* Quitar flecha nativa */

.hosting-more summary::-webkit-details-marker {

    display: none;

}


.hosting-more summary::marker {

    display: none;

}


.hosting-more summary:hover {

    color: #7cb342;

}


/* ==========================================
   ICONO
========================================== */

.hosting-more summary i {

    font-size: 14px;

    transition:
        transform .3s ease;

}


/* ==========================================
   ABIERTO
========================================== */

.hosting-more[open] summary i {

    transform:
        rotate(180deg);

}


/* ==========================================
   TEXTOS VER MÁS / VER MENOS
========================================== */

.hosting-more-close {

    display: none;

}


.hosting-more[open]
.hosting-more-open {

    display: none;

}


.hosting-more[open]
.hosting-more-close {

    display: inline;

}


/* ==========================================
   LISTADO EXTRA
========================================== */

.hosting-extra {

    margin-top: 18px;

    padding-top: 5px;

    animation:
        hostingFeaturesIn .3s ease;

}


@keyframes hostingFeaturesIn {

    from {

        opacity: 0;

        transform:
            translateY(-8px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}
/* ==========================================
   VER TODAS / VER MENOS
========================================== */

.hosting-more-open,
.hosting-more-close {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    cursor: pointer;

    color: #29b6f6;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease;

}


/* ==========================================
   SUMMARY
========================================== */

.hosting-more-open {

    list-style: none;

}


.hosting-more-open::-webkit-details-marker {

    display: none;

}


.hosting-more-open:hover,
.hosting-more-close:hover {

    color: #7cb342;

}


/* ==========================================
   ICONOS
========================================== */

.hosting-more-open i,
.hosting-more-close i {

    font-size: 14px;

    transition:
        transform .3s ease;

}


/* ==========================================
   ICONO VER TODAS
========================================== */

.hosting-more[open]
.hosting-more-open i {

    transform:
        rotate(180deg);

}


/* ==========================================
   VER MENOS
========================================== */

.hosting-more-close {

    margin-top: 15px;

    padding-top: 15px;

    border-top: 1px solid
        rgba(255,255,255,.07);

}


/* ==========================================
   HOVER VER MENOS
========================================== */

.hosting-more-close:hover i {

    transform:
        translateY(-2px);

}
/* ==========================================
   BOTÓN VOLVER ARRIBA
========================================== */

.back-to-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #29b6f6,
        #7cb342,
        #ffc107
    );

    color: #ffffff;

    text-decoration: none;

    font-size: 18px;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


/* ACTIVO */

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* HOVER */

.back-to-top:hover {

    color: #ffffff;

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35);

}


/* ICONO */

.back-to-top i {

    transition:
        transform .3s ease;

}


.back-to-top:hover i {

    transform:
        translateY(-2px);

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 768px) {

    .back-to-top {

        right: 18px;

        bottom: 18px;

        width: 44px;

        height: 44px;

        font-size: 16px;

    }

}

/* =========================================================
   SERVICES VISUAL
========================================================= */

.services-visual {
    position: relative;

    width: 100%;
    max-width: 560px;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}


/* =========================================================
   GLOW
========================================================= */

.services-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    pointer-events: none;

    z-index: -1;
}

.services-glow-1 {
    width: 260px;
    height: 260px;

    background: rgba(41, 182, 246, .20);

    top: 80px;
    left: 100px;

    animation: servicesGlow 5s ease-in-out infinite alternate;
}

.services-glow-2 {
    width: 200px;
    height: 200px;

    background: rgba(124, 179, 66, .16);

    right: 60px;
    bottom: 60px;

    animation: servicesGlow 6s ease-in-out infinite alternate-reverse;
}

@keyframes servicesGlow {

    from {
        transform: scale(.85);
        opacity: .45;
    }

    to {
        transform: scale(1.15);
        opacity: .75;
    }

}


/* =========================================================
   DASHBOARD
========================================================= */

.services-dashboard {
    position: relative;

    width: 390px;
    min-height: 350px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(255,255,255,.14);

    box-shadow:
        0 35px 80px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transform:
        perspective(1000px)
        rotateY(-8deg)
        rotateX(3deg);

    transition: .5s ease;
}

.services-dashboard:hover {
    transform:
        perspective(1000px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);

    box-shadow:
        0 45px 90px rgba(0,0,0,.42),
        0 0 40px rgba(41,182,246,.08);
}


/* =========================================================
   TOP BAR
========================================================= */

.dashboard-top {
    height: 48px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.08);

    background: rgba(0,0,0,.18);
}


/* Dots */

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);
}


/* Logo */

.dashboard-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    color: #fff;
}

.dashboard-title span {
    color: #29B6F6;
}


/* Status */

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;

    color: rgba(255,255,255,.55);
}

.dashboard-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #7CB342;

    box-shadow:
        0 0 10px rgba(124,179,66,.8);

    animation: onlinePulse 2s infinite;
}

@keyframes onlinePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.7);
    }

}


/* =========================================================
   CONTENT
========================================================= */

.dashboard-content {
    padding: 30px;
}


/* Heading */

.dashboard-heading small {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #29B6F6;
}

.dashboard-heading h3 {
    margin: 0;

    font-size: 28px;
    line-height: 1.15;

    font-weight: 800;

    color: #fff;
}

.dashboard-heading h3 span {
    color: #7CB342;
}

.dashboard-heading p {
    margin-top: 12px;

    max-width: 250px;

    font-size: 12px;
    line-height: 1.6;

    color: rgba(255,255,255,.48);
}


/* =========================================================
   SERVICE GRID
========================================================= */

.dashboard-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 25px;
}


.dashboard-service {

    height: 65px;

    padding: 12px;

    display: flex;
    align-items: center;

    gap: 10px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.06);

    transition: .3s ease;
}


.dashboard-service:hover {

    transform: translateY(-3px);

    background:
        rgba(255,255,255,.08);

    border-color:
        rgba(41,182,246,.25);

}


.dashboard-service i {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        rgba(41,182,246,.10);

    color: #29B6F6;

    font-size: 16px;
}


.dashboard-service span {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    color: rgba(255,255,255,.72);
}


/* =========================================================
   PROGRESS
========================================================= */

.dashboard-progress {
    margin-top: 24px;
}

.dashboard-progress > div {

    display: flex;

    justify-content: space-between;

    margin-bottom: 7px;

    font-size: 8px;

    letter-spacing: 1px;

    color: rgba(255,255,255,.38);
}

.dashboard-progress strong {

    color: #7CB342;

}


.progress-line {

    display: block;

    width: 100%;
    height: 4px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.08);

    overflow: hidden;
}


.progress-line span {

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #29B6F6,
            #7CB342
        );

    animation:
        progressLoad 2s ease-out;
}


@keyframes progressLoad {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {

    position: absolute;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        rgba(18,18,18,.75);

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:
        0 15px 35px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 5;

    font-size: 21px;

    transition: .3s ease;
}

.floating-card:hover {

    transform:
        scale(1.12)
        translateY(-4px);

}


/* =========================================================
   FLOATING POSITIONS
========================================================= */

.floating-web {

    top: 75px;
    left: 25px;

    color: #29B6F6;

    animation:
        floatingWeb 4s ease-in-out infinite;
}

.floating-domain {

    top: 45px;
    right: 35px;

    color: #7CB342;

    animation:
        floatingDomain 5s ease-in-out infinite;
}

.floating-hosting {

    right: 15px;
    bottom: 80px;

    color: #FFC107;

    animation:
        floatingHosting 4.5s ease-in-out infinite;
}

.floating-design {

    left: 20px;
    bottom: 60px;

    color: #FF7043;

    animation:
        floatingDesign 5.5s ease-in-out infinite;
}


/* =========================================================
   FLOATING ANIMATIONS
========================================================= */

@keyframes floatingWeb {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }

}

@keyframes floatingDomain {

    0%,
    100% {
        transform: translateY(0) rotate(4deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }

}

@keyframes floatingHosting {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

}

@keyframes floatingDesign {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-13px) rotate(3deg);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .services-visual {
        transform: scale(.9);
    }

}


@media (max-width: 768px) {

    .services-visual {

        height: 420px;

        transform: scale(.82);
    }

}


@media (max-width: 480px) {

    .services-visual {

        height: 380px;

        transform: scale(.68);
    }

}
/* =========================================================
   SERVICE MODAL
========================================================= */

.service-modal {

    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


/* =========================================================
   MODAL ACTIVO
========================================================= */

.service-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   BACKDROP
========================================================= */

.service-modal-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(5, 8, 10, .82);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   WINDOW
========================================================= */

.service-modal-window {

    position: relative;

    width: min(900px, 100%);

    max-height: 90vh;

    overflow: hidden;

    border-radius: 25px;

    background:

        linear-gradient(
            145deg,
            rgba(30,35,38,.98),
            rgba(12,15,17,.98)
        );

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:

        0 40px 100px
        rgba(0,0,0,.65),

        0 0 80px
        rgba(41,182,246,.08);

    transform:
        translateY(25px)
        scale(.96);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}


.service-modal.active
.service-modal-window {

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   HEADER
========================================================= */

.service-modal-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        22px 25px;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


.service-modal-label {

    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #29B6F6;
}


.service-modal-title h2 {

    margin: 0;

    color: #fff;

    font-size: 25px;

    font-weight: 800;
}


/* =========================================================
   CLOSE
========================================================= */

.service-modal-close {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.1);

    border-radius: 12px;

    background:
        rgba(255,255,255,.05);

    color:
        rgba(255,255,255,.65);

    cursor: pointer;

    transition: .25s ease;
}


.service-modal-close:hover {

    background:
        rgba(255,255,255,.1);

    color: #fff;

    transform:
        rotate(90deg);
}


/* =========================================================
   CONTENT
========================================================= */

.service-modal-content {

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 30px;

    padding: 30px;
}


/* =========================================================
   IMAGE
========================================================= */

.service-modal-image {

    position: relative;

    min-height: 330px;

    overflow: hidden;

    border-radius: 18px;

    background:

        linear-gradient(
            135deg,
            rgba(41,182,246,.15),
            rgba(124,179,66,.12)
        );

    border:
        1px solid rgba(255,255,255,.08);
}


.service-modal-image img {

    width: 100%;
    height: 100%;

    min-height: 330px;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease;
}


.service-modal.active
.service-modal-image img {

    transform: scale(1.02);
}


/* Overlay */

.service-modal-image-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            transparent 30%,
            rgba(0,0,0,.35)
        );
}


.service-modal-image-overlay i {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        rgba(0,0,0,.35);

    border:
        1px solid rgba(255,255,255,.15);

    color: #fff;

    font-size: 25px;

    backdrop-filter: blur(10px);
}


/* =========================================================
   INFO
========================================================= */

.service-modal-info {

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.service-modal-subtitle {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #7CB342;
}


#serviceModalDescription {

    margin:
        15px 0 25px;

    font-size: 14px;

    line-height: 1.8;

    color:
        rgba(255,255,255,.58);
}


/* =========================================================
   SERVICES
========================================================= */

.service-modal-services-label {

    display: block;

    margin-bottom: 12px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color:
        rgba(255,255,255,.35);
}


.service-modal-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;
}


.service-modal-tag {

    padding:
        7px 11px;

    border-radius: 8px;

    background:
        rgba(41,182,246,.08);

    border:
        1px solid rgba(41,182,246,.15);

    color:
        rgba(255,255,255,.7);

    font-size: 10px;
}


/* =========================================================
   BUTTON
========================================================= */

.service-modal-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding:
        14px 20px;

    border-radius: 12px;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #29B6F6,
            #7CB342
        );

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 10px 30px
        rgba(41,182,246,.15);

    transition: .3s ease;
}


.service-modal-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 35px
        rgba(41,182,246,.25);

    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .service-modal {

        padding: 15px;
    }

    .service-modal-window {

        max-height: 94vh;

        overflow-y: auto;

        border-radius: 20px;
    }

    .service-modal-content {

        grid-template-columns: 1fr;

        padding: 20px;

        gap: 20px;
    }

    .service-modal-image {

        min-height: 200px;

        max-height: 220px;
    }

    .service-modal-image img {

        min-height: 200px;
    }

    .service-modal-header {

        padding: 18px 20px;
    }

    .service-modal-title h2 {

        font-size: 21px;
    }

}

#serviceModalVideo {
    width: 100%;
    height: 100%;
    min-height: 330px;

    display: none;

    object-fit: cover;

    border-radius: 18px;
}

@media (max-width: 700px) {

    #serviceModalVideo {
        min-height: 200px;
    }

}