@font-face {
    font-family: 'poppins-thin';
    src: url('/fonts/poppins/poppins-thin.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-extralight';
    src: url('/fonts/poppins/poppins-extralight.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-light';
    src: url('/fonts/poppins/poppins-light.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-regular';
    src: url('/fonts/poppins/poppins-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-medium';
    src: url('/fonts/poppins/poppins-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-semibold';
    src: url('/fonts/poppins/poppins-semibold.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-bold';
    src: url('/fonts/poppins/poppins-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-extrabold';
    src: url('/fonts/poppins/poppins-extrabold.ttf') format('truetype');
}

@font-face {
    font-family: 'poppins-black';
    src: url('/fonts/poppins/poppins-black.ttf') format('truetype');
}

/* Variables */
:root {
    --ppsThin: 'poppins-thin', sans-serif;
    --ppsExtraLight: 'poppins-extralight', sans-serif;
    --ppsLight: 'poppins-light', sans-serif;
    --ppsRegular: 'poppins-regular', sans-serif;
    --ppsMedium: 'poppins-medium', sans-serif;
    --ppsSemiBold: 'poppins-semibold', sans-serif;
    --ppsBold: 'poppins-bold', sans-serif;
    --ppsExtraBold: 'poppins-extrabold', sans-serif;
    --ppsBlack: 'poppins-black', sans-serif;
    /* Color de Texto */
    --black: #000000;
    --white: #FFFFFF;
    --green: #44D62C;
    --blueLight: #0072CE;
    --blueDeep: #081F2C;
    /* Background Color */
    --bgLight: #FFFFFF;
    --bgDark: #000000;
}

.green {
    color: var(--green);
}

.lightBlue{
    color:var(--blueLight);
}

.lightDeep {
    color: var(--blueDeep);
}

body {
    font-family: 'Poppins', sans-serif;
}

.bold01 {
    font-weight: 600;
}

.color-orange {
    color: var(--green);
}

.no-icon-style {
    font-style: unset;
    font-family: var(--popp);
}

.title-app02 {
    display: none;
}

.grid-col-2 {
    grid-column: span 2;
}

/*Elementos Ocultos*/
#cons-image01-hidden {
    width: 300px;
    height: 300px;
    padding: 20px;
    background-image: url(/images/resources/ti-02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    transform: unset;
    display: none;
}

/*BRAND SLIDER*/
@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.brand {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
}

    .brand:hover .brand-slide {
        animation-play-state: paused;
    }

.brand-slide {
    display: inline-block;
    animation: 20s slide infinite linear;
}

    .brand-slide img {
        height: 50px;
        margin: 0 20px;
    }


/*--Start Project--*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--principal_bg);
}

/* MENU SUPERIOR */
header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
    font-family: var(--popp);
}

.logo-algo img {
    margin: 10px;
    width: 150px;
}

.navbar-algo {
    display: flex;
    position: absolute;
    right: 0;
    margin: auto;
    padding-right: 20px;
}

    .navbar-algo li {
        list-style: none;
    }

        .navbar-algo li a {
            margin: 10px;
            color: var(--white);
            text-decoration: none;
            font-size: 1em;
            transition: all .20s ease;
            font-weight: 600;
            position: relative;
        }

            .navbar-algo li a:after {
                content: "";
                position: absolute;
                background-color: var(--green);
                height: 3px;
                width: 0%;
                left: 0;
                bottom: -10px;
                transition: all 0.3s;
            }

            .navbar-algo li a:hover:after {
                width: 100%;
            }

            .navbar-algo li a:hover {
                color: var(--green);
            }

            .navbar-algo li a:is(:link, :active, :visited).active {
                color: var(--green);
            }

header #burger-icon {
    position: relative;
    padding: 0px 20px;
    font-size: 30px;
    color: var(--light01);
    display: none;
}

header.sticky {
    position: fixed;
    background: #151922;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.start-section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: #151922;
    justify-content: center;
    overflow: hidden;
}

.start-content {
    padding: 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: var(--popp02);
}

    .start-content p {
        font-family: var(--popp);
        z-index: 20;
    }

    .start-content .description {
        font-family: var(--popp02);
        font-size: 1.60em;
        color: var(--light02);
        z-index: 20;
    }

/*typed style*/

.typed-title {
    color: var(--white);
    font-family: var(--ppsBold);
    font-size: 4em;
    z-index: 50;
}

.typed i {
    font-style: normal;
    color: var(--green);
}

.typed-cursor {
    color: var(--green);
}

/*CAPAS BACKGROUND*/
.capas {
    position: absolute;
    bottom: 0;
    left: 0;
}

#capa01 {
    transform: translateY(100px);
    width: 100%;
    height: 100%;
}

#capa02 {
    transform: translateY(250px);
    width: 100%;
    height: 100%;
}

#capa03 {
    transform: translateY(250px);
    width: 100%;
    height: 100%;
    z-index: 15;
}

#capa04 {
    transform: translateY(600px);
    width: 100%;
    height: 100%;
    z-index: 30;
}

#capa05 {
    transform: translateY(700px);
    width: 100%;
    height: 100%;
    z-index: 40;
}

/*-------Sections-------*/
#home {
    padding: 40px 25px 0px 25px;
}

    #home #title-h-01 {
        font-family: var(--popp02);
        text-align: center;
        color: var(--dark03);
    }

#sections-home {
    width: 100%;
    height: max-content;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
}

.container-sec {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .container-sec a {
        height: -webkit-fill-available;
        position: relative;
        text-decoration: none;
        color: black;
        border-radius: 20px;
        padding: 25px;
        margin: 25px;
        background: linear-gradient( 150deg, /* Diagonal (de esquina inferior izquierda a superior derecha) */
        rgba(68, 214, 44, 0.1) 0%, /* Verde muy tenue (10% opacidad) */
        rgba(68, 214, 44, 0.2) 20%, /* Verde semi-tenue */
        rgba(0, 114, 206, 0.2) 50%, /* Azul semi-tenue */
        rgba(0, 114, 206, 0.1) 100% /* Azul muy tenue */
        );
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }

.header-content {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
}

.container-sec h1 {
    font-weight: 600;
    font-family: var(--popp);
    padding: 0px 50px 0px 0px;
}

.body-content p {
    color: var(--dark02);
    font-size: 1.3em;
    font-family: var(--popp02);
    font-weight: 600;
}

.homeCard-icon {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    background: var(--light03);
}

.txt-orange-info i {
    font-style: unset;
    transition: all 1.2s ease;
}

.info-sec:hover .txt-orange-info i {
    color: var(--blueLight);
}

.homeCard-icon i {
    color: var(--dark03);
    font-size: 30px;
    padding: 10px 20px;
    transition: all .5s;
}

.info-sec:hover .homeCard-icon i {
    color: var(--green);
}

#va-startCard {
    grid-column: span 2;
}


/*Card Contact*/
#contact-section-h {
    width: 91%;
    height: max-content;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 45px;
    background: linear-gradient( 160deg, #44D62C 0%, /* --green (100%) */
    #3BD64A 7%, /* Verde con un toque de azul */
    #32D668 15%, /* Transición verde-azul */
    #28D686 27%, /* Dominio mixto */
    #1FD6A4 36%, /* Azul-verdoso */
    #16D6C2 50%, /* Punto medio */
    #0DC6D8 64%, /* Azul con toque verde */
    #04B6EE 76%, /* Azul claro dominante */
    #018CE6 99%, /* Casi --blueLight */
    #0072CE 100% /* --blueLight (100%) */
    );
    border-radius: 25px;
    font-family: var(--popp);
    transform-style: preserve-3d;
    perspective: 1000px;
}

    #contact-section-h h1 {
        font-weight: 600;
        color: white;
        transform: translateZ(35px);
    }

    #contact-section-h p {
        font-size: 1.2em;
        font-family: var(--popp02);
        color: var(--light02);
        letter-spacing: 1px;
    }

.contact-options-h {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

    .contact-options-h .option-h {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform-style: preserve-3d;
        perspective: 10000px;
    }

    .contact-options-h i {
        color: var(--light02);
        font-size: 23px;
        transition: all .5s;
    }

    .contact-options-h a {
        text-decoration: none;
        padding: 5px 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        backdrop-filter: blur(50px);
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        border-right: 2px solid rgba(255, 255, 255, 0.2);
        transform: translateZ(40px);
        transform-origin: center center;
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        transition: all .2s;
    }

    .contact-options-h #option-h__icon-phone {
        transform: translateZ(30px) translateX(20px);
    }

    .contact-options-h #option-h__icon-mail {
        transform: translateZ(30px) translateX(-20px);
    }

    .contact-options-h a:hover {
        background: rgba(1, 1, 1, 0.15);
    }

        .contact-options-h a:hover i {
            color: var(--light01);
            text-shadow: 0px 0px 5px rgba(255,255,255,0.30);
        }

/*-----SECTIONS-----*/

/*DESARROLLO*/
.sections {
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

#desarrollo {
    background-image: linear-gradient( 0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3) ),url('/images/bgs/developers.jpg');
}

.text-orange-h1 {
    font-family: var(--popp);
    padding-bottom: 40px;
    font-size: 6em;
}

    .text-orange-h1 i {
        font-style: unset;
        color: var(--green);
    }

.sections-title {
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .sections-title p {
        font-weight: 600;
        font-family: var(--popp02);
        color: var(--light01);
    }

.typed-sections {
    font-size: 1.5em;
}

.devTyped i {
    font-style: normal;
}

/*Desarrollo Body*/
#dev-section-01 {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    font-family: var(--popp02);
    padding: 30px 50px;
    background: linear-gradient( 180deg, rgba(68, 214, 44, 0.10) 70%, /* Verde semi-transparente (15% opacidad) */
    rgba(248, 252, 245, 1) 100% /* Blanco con un toque verde (fondo limpio) */
    );
}

.list-dev-01 ul {
    margin: auto;
    padding: initial;
}

    .list-dev-01 ul li {
        list-style: none;
        margin: 20px 0px;
        padding: 8px;
        border-radius: 10px;
        background-color: rgba(1,1,1,.09);
        color: var(--dark02);
        font-weight: 600;
    }

#dev-sec-02 {
    width: 100%;
    height: max-content;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    #dev-sec-02 #dev-title01 {
        font-family: var(--popp02);
    }

.dev-section-02 {
    width: 100%;
    height: max-content;
    display: flex;
    gap: 40px;
    position: relative;
    padding: 50px 50px 0px 50px;
    margin: auto;
}

.sec-02-content {
    padding: 20px;
}

.dev-section-02 h1 {
    font-family: var(--popp);
    font-weight: 600;
}

.dev-section-02 p {
    font-family: var(--popp02);
    color: var(--dark02);
    font-weight: 600;
}

.dev-section-02 {
    color: var(--light05);
}

.sec-02-content h2 {
    font-family: var(--popp);
    padding-bottom: 15px;
    font-weight: 600;
}

#bg-dev-01 {
    width: 300px;
    height: 300px;
    position: relative;
    background: url("/images/resources/app-web.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#bg-dev-02 {
    width: 300px;
    height: 300px;
    position: relative;
    background-image: url('/images/resources/app-service-01.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

#bg-dev-03 {
    width: 300px;
    height: 300px;
    position: relative;
    background-image: url('/images/resources/chat-contact-03.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

/*Dev Sec 02*/
#dev-section-02 {
    width: 100%;
    height: max-content;
    position: relative;
    font-family: var(--popp);
    padding: 0px 40px 40px 40px;
}

.sec02-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 35px;
    margin-top: 30px;
}

    .sec02-services h2 {
        font-weight: 600;
    }

.serv-box {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient( 180deg, rgba(68, 214, 44, 0.10) 70%, /* Verde semi-transparente (15% opacidad) */
    rgba(248, 252, 245, 1) 100% /* Blanco con un toque verde (fondo limpio) */
    );
}

    .serv-box h2 {
        position: relative;
        font-weight: 600;
    }

        .serv-box h2:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            background: var(--blueLight);
            bottom: -5px;
            left: 0;
        }

    .serv-box p {
        font-family: var(--popp02);
        font-weight: 600;
        color: var(--dark02);
    }

.serv-h {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

    .serv-h i {
        color: var(--blueLight);
        font-size: 1.3em;
        position: absolute;
        top: 10px;
        right: 20px;
    }

#integraciones {
    grid-column: span 2;
}

#int-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

    #int-list li {
        list-style: none;
        color: var(--dark02);
        font-weight: 600;
    }

        #int-list li:before {
            content: "•";
            color: var(--blueLight);
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

/*Consultoria*/
#consultoria {
    background-image: linear-gradient( 0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3) ),url('/images/bgs/consultoria-ti.jpg');
}

.consTyped i {
    font-style: normal;
}

.cons-sec01 {
    font-family: var(--popp);
    height: max-content;
    position: relative;
    margin-top: 20px;
    padding: 20px 40px;
    border-radius: 15px;
}

    .cons-sec01 #cons-txt01 {
        font-family: var(--popp02);
        color: var(--dark02);
    }

#txt-marker {
    display: inline-flex;
    position: relative;
}

    #txt-marker p {
        font-family: var(--popp02);
        color: var(--dark02);
        margin: auto;
        font-weight: 600;
        padding: 0px 0px 0px 15px;
    }

    #txt-marker:after {
        content: "";
        position: absolute;
        width: 5px;
        height: -webkit-fill-available;
        background: var(--green);
        border-radius: 10px;
    }

#cons-sec02 {
    width: 100%;
    height: max-content;
    padding: 20px 40px;
    font-family: var(--popp);
}

    #cons-sec02 h4 {
        font-weight: 600;
        align-self: center;
        margin-bottom: 15px;
    }

    #cons-sec02 #cons-services li {
        font-family: var(--popp02);
        font-weight: 600;
        color: var(--dark02);
        margin-left: 10px;
        list-style: none;
    }

        #cons-sec02 #cons-services li:before {
            content: "•";
            color: var(--orange02);
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }


#cons-services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
}

.cons-serv-box {
    border-radius: 15px;
    background: linear-gradient( 180deg, rgba(68, 214, 44, 0.10) 70%, /* Verde semi-transparente (15% opacidad) */
    rgba(248, 252, 245, 1) 100% /* Blanco con un toque verde (fondo limpio) */
    );
    border-left: 5px solid var(--green);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
}

    .cons-serv-box ul {
        padding: 0 0 0 10px;
        margin: 0;
    }

#cons-sec03-container {
    width: 100%;
    height: max-content;
    position: relative;
    padding: 0px;
}

#cons-sec03 {
    width: 90%;
    height: max-content;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
    font-family: var(--popp02);
    background: linear-gradient( 200deg, /* Dirección: de abajo hacia arriba */
    rgba(68, 214, 44, 0.1) 23%, /* Verde muy tenue (10% opacidad) */
    rgba(0, 114, 206, 0.25) 74% /* Azul claro semi-transparente (25% opacidad) */
    );
}

    #cons-sec03 p {
        font-family: var(--popp02);
        margin: 30px 0;
        font-size: 1.3em;
        color: var(--dark02);
    }

    #cons-sec03 #cons-btn a {
        font-family: var(--popp02);
        width: max-content;
        text-decoration: none;
        color: var(--dark01);
        padding: 1px 5px;
        display: flex;
        align-items: center;
        background: var(--white);
        border-radius: 10px;
        font-weight: 600;
        font-size: 1.05em;
        transition: all .3s;
    }

        #cons-sec03 #cons-btn a:hover {
            background: var(--green);
            padding: 0px 10px 0px 10px;
            color: var(--light01);
        }

            #cons-sec03 #cons-btn a:hover i {
                transform: translateX(10px);
            }

    #cons-sec03 #cons-btn i {
        font-size: 1.5em;
        transition: all .3s;
    }


#cons-image01 {
    width: 300px;
    height: 300px;
    position: relative;
    padding: 20px;
    background-image: url('/images/resources/ti-02.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    transform: translateZ(30px);
}

/*DISEÑO GRAFICO*/
#diseño {
    background-image: linear-gradient( 0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3) ),url('/images/bgs/graphic-design.jpg');
}

.dsn-sec-01 {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dgn-title-01 {
    text-align: center;
    font-family: var(--popp);
    background: var(--black);
    margin: 15px;
    padding: 5px 10px;
    position: absolute;
    color: var(--light01);
    font-size: 1.3em;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.dsn-sec-01 video {
    width: 80em;
}


#dsn-sec-02 {
    margin-top: 20px;
    width: 100%;
    height: max-content;
    font-family: var(--popp);
    padding: 20px 40px;
}

#dsn-services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

#imgCop__h2 {
    text-align: center;
}

#img-cop {
    grid-column: span 3;
    text-align: center;
}

#img-cop-table {
    display: flex;
    margin-top: 20px;
    justify-content: space-evenly;
    align-items: center;
}

    #img-cop-table li {
        font-family: var(--popp02);
        color: var(--dark02);
        font-weight: 600;
        list-style: none;
    }

        #img-cop-table li:before {
            content: "•";
            color: var(--blueLight);
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

.dsn-services {
    height: -webkit-fill-available;
    position: relative;
    border-radius: 15px;
    padding: 10px 50px 25px 25px;
    background: linear-gradient(180deg, rgba(68, 214, 44, 0.10) 70%, /* Verde semi-transparente (15% opacidad) */ rgba(248, 252, 245, 1) 100% /* Blanco con un toque verde (fondo limpio) */ );
}

    .dsn-services li {
        font-family: var(--popp02);
        color: var(--dark02);
        font-weight: 600;
        list-style: none;
    }

        .dsn-services li:before {
            content: "•";
            color: var(--blueLight);
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }


    .dsn-services h2 {
        margin: 15px 0;
        font-weight: 600;
    }

    .dsn-services i {
        position: absolute;
        top: 0;
        right: 0;
        color: rgba(255,255,255,.80);
        border-bottom: 3px solid var(--blueDeep);
        border-left: 3px solid var(--blueDeep);
        background-color: var(--blueLight);
        padding: 2px 14px;
        font-size: 1.5em;
        border-radius: 0px 15px;
    }

    .dsn-services p {
        color: var(--dark02);
        font-weight: 600;
    }

#dsn-sec-03 {
    width: 93%;
    margin: auto;
    margin-bottom: 42px;
    padding: 30px;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 50px;
    border-radius: 20px;
    color: #f8f5fc;
    background-color: var(--blueDeep);
}


    #dsn-sec-03 #txt-transform {
        font-weight: 900;
        color: var(--green);
        text-shadow: 0px 0px 20px rgb(53 211 50);
    }

#dsn-sec03-txt #txt-transform-span {
    color: var(--light01);
    font-size: .8em;
    font-weight: 600;
}

#dsn-sec03-txt #dsn-sec03-txt02 {
    font-family: var(--popp02);
    font-weight: 600;
    color: var(--light02);
    width: 100%;
    padding: 0px 50px 0px 20px;
    margin: 40px 10px 0px 10px;
    position: relative;
}

    #dsn-sec03-txt #dsn-sec03-txt02:before {
        content: "";
        width: 5px;
        height: -webkit-fill-available;
        position: absolute;
        left: 0;
        top: 0;
        background: var(--green);
        border-radius: 10px;
    }

#dsn-img-01 {
    width: 55em;
    height: 20em;
    background-image: url('/images/resources/graphicDesign04.jpg');
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
}

#dsn-sec03-txt {
    font-family: var(--popp);
}

#dsn-sec-03-icon {
    position: absolute;
    top: 0;
    right: 0;
}

#dsn-sec-04 {
    width: 90%;
    height: max-content;
    padding: 20px;
    margin: auto;
    margin-bottom: 40px;
    overflow: hidden;
}

    #dsn-sec-04 p {
        font-family: var(--popp);
        text-align: center;
        color: var(--dark03);
        margin-bottom: 40px;
    }

#mark-tools {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-content: space-evenly;
}

    #mark-tools img {
        width: 50px;
        margin: auto;
    }

.pricing-section {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px;
    font-family: var(--popp);
}

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

.pricingCard .cash-price {
    font-size: 2em;
    font-family: 'kameron',serif;
}

.pricing-cards .pricingCard {
    border-radius: 15px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.pricingCard__marketing {
    background: linear-gradient( 160deg, rgba(68, 214, 44, 0.5) 0%, 
    rgba(59, 214, 74, 0.5) 7%, rgba(50, 214, 104, 0.5) 15%, rgba(40, 214, 134, 0.5) 27%, rgba(31, 214, 164, 0.5) 36%, rgba(22, 214, 194, 0.5) 50%, rgba(13, 198, 216, 0.5) 64%, rgba(4, 182, 238, 0.5) 76%, rgba(1, 140, 230, 0.5) 99%, rgba(0, 114, 206, 0.5) 100% 
    );
}

.mark-pricing-last-p {
    color: var(--dark02);
}

.pricing-cards .pricingCard p {
    font-family: var(--popp02);
    font-weight: 600;
}

.middle-p-card {
    transform: translateY(-30px);
    padding: 20px;
    background: linear-gradient(339deg, rgba(195,0,252,0.804359243697479) 10%, rgba(202,12,221,0.7959558823529411) 29%, rgba(220,41,147,0.804359243697479) 54%, rgba(239,71,69,0.8015581232492998) 70%, rgba(255,98,0,0.7987570028011204) 85%);
    color: var(--light01);
}

#middle-p-card__marketing {
    background: linear-gradient( 160deg, #44D62C 0%, /* --green (100%) */
    #3BD64A 7%, /* Verde con un toque de azul */
    #32D668 15%, /* Transición verde-azul */
    #28D686 27%, /* Dominio mixto */
    #1FD6A4 36%, /* Azul-verdoso */
    #16D6C2 50%, /* Punto medio */
    #0DC6D8 64%, /* Azul con toque verde */
    #04B6EE 76%, /* Azul claro dominante */
    #018CE6 99%, /* Casi --blueLight */
    #0072CE 100% /* --blueLight (100%) */
    )
}

.pricing-section .middle-p-card p {
    color: var(--light01);
    font-weight: 600;
}

#middle-p-card .plan-beneficios p {
    color: var(--light01);
}

.pricingCard ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.pricingCard .plan-beneficios {
    display: flex;
    gap: 10px;
}

/*MARKETING*/
#marketing {
    background-image: linear-gradient( 0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3) ),url('/images/bgs/marketing02.png');
}

#mark-sec01 {
    width: 100%;
    height: 80vh;
    font-family: var(--popp);
    position: relative;
    background-image: url(/images/resources/marketing01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: self-start;
    padding: 20px;
    overflow: hidden;
}

#mark-sec01-icons {
    width: 20em;
    height: 20em;
    position: relative;
    transform: translate(-48px, -10px);
}

#mark-sec01 img {
    position: absolute;
    width: 40px;
    opacity: 0;
}

/*Icons*/

/*Like*/
#mark-sec01 #mark-icon-like01 {
    top: -.5em;
    left: 5.5em;
}

#mark-sec01 #mark-icon-like02 {
    top: 4.3em;
    left: 13em;
}

#mark-sec01 #mark-icon-like03 {
    top: 6em;
    left: 3em;
}

/*Heart*/
#mark-sec01 #mark-icon-heart01 {
    top: 7.5em;
    left: 17.5em;
}

#mark-sec01 #mark-icon-heart02 {
    top: 10em;
    left: 6em;
}

#mark-sec01 #mark-icon-heart03 {
    top: 0em;
    left: 11.2em;
}

/*second-heart*/
#mark-icon-secondHeart01 {
    top: 16em;
    left: 14em;
}

#mark-icon-secondHeart02 {
    top: -1.2em;
    left: 17em;
}

/*FaceLove*/
#mark-icon-loveFace01 {
    top: 2.3em;
    left: 2em;
}

#mark-icon-loveFace02 {
    top: 8em;
    left: 11.3em;
}

/*Massenger*/
#mark-icon-mess01 {
    top: 11.8em;
    left: 16em;
}

#mark-icon-mess02 {
    top: 4em;
    left: 7em;
}

/*Hug*/
#mark-icon-hug01 {
    top: -7px;
    left: -23px;
}

#mark-icon-hug02 {
    top: 12.4em;
    left: 11.4em;
}

#mark-icon-hug03 {
    top: 1.6em;
    left: 17.2em;
}

@keyframes mark-icon01 {
    0% {
        opacity: 0;
        transform: translate(50px, 50px);
    }

    100% {
        opacity: 1;
    }
}

@keyframes mark-icon01-unset {
    0% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    100% {
        opacity: 0;
        transform: translate(50px, 50px);
    }
}


@keyframes mark-icon02 {
    0% {
        opacity: 0;
        transform: translate(50px, 50px);
    }

    100% {
        opacity: 1;
        width: 48px;
    }
}

@keyframes mark-icon02-unset {
    0% {
        opacity: 1;
        width: 48px;
    }

    100% {
        opacity: 0;
    }
}


@keyframes mark-icon03 {
    0% {
        opacity: 0;
        transform: translate(50px, 50px);
    }

    100% {
        opacity: 1;
        width: 55px;
    }
}

@keyframes mark-icon03-unset {
    0% {
        opacity: 1;
        width: 55px;
    }

    100% {
        opacity: 0;
    }
}

@keyframes mark-icon04 {
    0% {
        opacity: 0;
        transform: translate(50px, 50px);
    }

    100% {
        opacity: 1;
        width: 60px;
    }
}

@keyframes mark-icon04-unset {
    0% {
        opacity: 1;
        width: 60px;
    }

    100% {
        opacity: 0;
    }
}

@keyframes mark-icon05 {
    0% {
        opacity: 0;
        transform: translate(50px, 50px);
    }

    100% {
        opacity: 1;
        transform: rotate(-20deg);
    }
}

@keyframes mark-icon05-unset {
    0% {
        opacity: 1;
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(0deg);
        opacity: 0;
    }
}

@keyframes mark-icon06 {
    0% {
        opacity: 0;
        transform: translate(50px, 50px);
    }

    100% {
        opacity: 1;
        transform: rotate(-20deg);
        width: 48px;
    }
}

@keyframes mark-icon06-unset {
    0% {
        opacity: 1;
        transform: rotate(-20deg);
        width: 48px;
    }

    100% {
        opacity: 0;
        transform: rotate(0deg);
    }
}


@keyframes mark-icon07 {
    0% {
        opacity: 0;
        transform: translate(50px, 50px);
    }

    100% {
        opacity: 1;
        transform: rotate(-20deg);
        width: 55px;
    }
}

@keyframes mark-icon07-unset {
    0% {
        opacity: 1;
        transform: rotate(-20deg);
        width: 55px;
    }

    100% {
        opacity: 0;
        transform: rotate(0deg);
    }
}

/*Icons Hover*/
#mark-icon-loveFace02 {
    animation: mark-icon03-unset .5s;
}

#mark-sec01:hover #mark-icon-loveFace02 {
    animation: mark-icon03 1.3s forwards;
}

#mark-icon-loveFace01 {
    animation: mark-icon02-unset .5s;
}

#mark-sec01:hover #mark-icon-loveFace01 {
    animation: mark-icon02 1.2s forwards;
}


#mark-icon-mess01 {
    animation: mark-icon02-unset .5s;
}

#mark-sec01:hover #mark-icon-mess01 {
    animation: mark-icon02 1.3s forwards;
}


#mark-icon-mess02 {
    animation: mark-icon03-unset .5s;
}

#mark-sec01:hover #mark-icon-mess02 {
    animation: mark-icon03 1.3s forwards;
}


#mark-icon-secondHeart01 {
    animation: mark-icon02-unset .5s;
}

#mark-sec01:hover #mark-icon-secondHeart01 {
    animation: mark-icon02 1.3s forwards;
}


#mark-icon-hug02 {
    animation: mark-icon02-unset .5s;
}

#mark-sec01:hover #mark-icon-hug02 {
    animation: mark-icon02 1.3s forwards;
}

#mark-icon-hug03 {
    animation: mark-icon07-unset .5s;
}

#mark-sec01:hover #mark-icon-hug03 {
    animation: mark-icon07 1.3s forwards;
}

#mark-icon-hug01 {
    animation: mark-icon03-unset .5s;
}

#mark-sec01:hover #mark-icon-hug01 {
    animation: mark-icon03 1.3s forwards;
}


#mark-icon-heart01 {
    animation: mark-icon07-unset .5s;
}

#mark-sec01:hover #mark-icon-heart01 {
    animation: mark-icon07 1.5s forwards;
}

#mark-icon-heart02 {
    animation: mark-icon03-unset .5s;
}

#mark-sec01:hover #mark-icon-heart02 {
    animation: mark-icon03 1.3s forwards;
}

#mark-icon-heart03 {
    animation: mark-icon06-unset .5s;
}

#mark-sec01:hover #mark-icon-heart03 {
    animation: mark-icon06 1.3s forwards;
}


#mark-icon-like01 {
    animation: mark-icon03-unset .5s;
}

#mark-sec01:hover #mark-icon-like01 {
    animation: mark-icon03 1.3s forwards;
}

#mark-icon-like02 {
    animation: mark-icon07-unset .5s;
}

#mark-sec01:hover #mark-icon-like02 {
    animation: mark-icon07 1.3s forwards;
}

#mark-icon-like03 {
    animation: mark-icon06-unset .5s;
}

#mark-sec01:hover #mark-icon-like03 {
    animation: mark-icon06 1.3s forwards;
}



#mark-sec01-info {
    width: max-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    font-weight: 600;
}

#mark-sec01-txt01 {
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

    #mark-sec01-txt01 p {
        color: var(--light01);
        font-size: 1.8em;
        margin: 0;
    }

        #mark-sec01-txt01 p span {
            color: var(--green);
        }

#mark-sec01-txt02 {
    width: 400px;
    color: var(--light02);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

    #mark-sec01-txt02 p {
        margin: 0;
    }

#mark-sec01-txt03 {
    width: 600px;
    color: var(--light02);
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

    #mark-sec01-txt03 p {
        margin: 0;
    }

        #mark-sec01-txt03 p span {
            color: var(--green);
        }

.txt-transform {
    width: 100%;
    height: max-content;
    margin: auto;
    padding: 40px 80px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

    .txt-transform p {
        color: var(--dark02);
        text-align: center;
        font-size: 2em;
        font-family: var(--popp02);
        font-weight: 600;
        margin: 0;
    }

    .txt-transform i {
        text-shadow: 0px 0px 20px #FFEE2E;
        color: rgba(255, 185, 24, 1);
        font-size: 3em;
    }

#mark-sec02 {
    width: 100%;
    height: max-content;
    padding: 0px 40px 40px 40px;
    font-family: var(--popp);
}

#campaña-container {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 15px;
    gap: 20px;
}

#campaña-child01 {
    padding: 30px;
}

#campaña-container h1, #campaña-container h3, #campaña-container p {
    text-align: center;
}

#campaña-container h3 {
    font-family: var(--popp02);
    color: rgba(2, 40, 246, 0.7);
}

#campaña-container p {
    margin-top: 10px;
    color: var(--dark01);
}

#campaña-table {
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

    #campaña-table li {
        font-family: var(--popp02);
        color: var(--dark02);
        font-weight: 600;
        list-style: none;
    }

        #campaña-table li:before {
            content: "•";
            color: #445df9;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

#campaña-child02 {
    position: relative;
    background-image: url(/images/bgs/facebook-bussines.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
    overflow: hidden;
    border-radius: 0 15px 15px 0;
}

    #campaña-child02::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 100em;
        background: linear-gradient(to right, #f6f4fe, transparent);
        left: 0;
    }

/*Virtual Assistant*/
#VA {
    background-image: linear-gradient( 0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3) ),url('/images/bgs/VA.jpg');
}

#VA-sec01 {
    width: 100%;
    height: max-content;
    padding: 40px;
}

    #VA-sec01 h1 {
        font-family: var(--popp);
    }

#VA-services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    gap: 40px;
}

    #VA-services #clasificacion {
        grid-column: span 3;
    }

.VA-serv-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 15px;
}

#VA-services i {
    font-size: 35px;
}

#VA-services p {
    font-family: var(--popp02);
    font-weight: 600;
}

#VA-sec02 {
    width: 90%;
    margin: auto;
    height: max-content;
    padding: 50px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: var(--popp);
    background: linear-gradient( 160deg, rgba(0, 114, 206, 0.1) 0%, /* 10% opacidad */
    rgba(0, 114, 206, 0.2) 50%, /* 20% opacidad */
    rgba(0, 114, 206, 0.05) 100% /* 5% opacidad */
    );
}

#VA-sec02-title {
    text-align: center;
    width: 50%;
}

#VA-sec02-items li {
    font-family: var(--popp02);
    color: var(--dark02);
    font-weight: 600;
    list-style: none;
    margin: 10px;
}

#VA-sec02-items {
    width: 50%;
}

    #VA-sec02-items i {
        color: var(--green);
        font-size: 20px;
    }

#VA-markPlans-footer {
    margin-top: 50px;
}

    #VA-markPlans-footer li {
        justify-content: center;
        color: var(--dark02);
        font-weight: 600;
        display: flex;
        gap: 10px;
    }

        #VA-markPlans-footer li p {
            text-align: center;
        }

        #VA-markPlans-footer li i {
            font-size: 18px;
            color: var(--purple01);
        }

#middle-p-card__va {
    background: linear-gradient( 160deg, #0072CE 0%, /* --blueLight (100%) */
    #1A7FD6 17%, /* Azul claro +10% brillo */
    #338FDE 36%, /* Azul claro +20% brillo */
    #4D9EE6 67%, /* Azul claro +30% brillo */
    #66AEEE 87%, /* Azul claro +40% brillo */
    #80BDF5 100% /* Azul claro +50% brillo */
    );
}

.pricingCard__va {
    background: linear-gradient( 160deg, rgba(0, 114, 206, 0.30) 0%, /* Azul al 15% opacidad */
    rgba(77, 158, 230, 0.24) 17%, /* Tonos progresivamente */
    rgba(128, 189, 245, 0.20) 36%, /* más transparentes */
    rgba(179, 218, 255, 0.16) 67%, rgba(204, 230, 255, 0.10) 87%, rgba(230, 243, 255, 0.10) 100% /* Casi blanco */
    );
}

/*CONTACT SECTION*/
#contact-sec01 {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #151922;
    color: var(--light01);
    font-family: var(--popp);
    overflow: hidden;
    padding: 50px;
}

#contact_capa01 {
    width: 100%;
    height: inherit;
    transform: translateY(400px);
    z-index: 0;
}

#contact_capa02 {
    width: 100%;
    height: inherit;
    transform: translateY(450px);
    z-index: 30;
}

#contact_capa03 {
    width: 100%;
    height: inherit;
    transform: translateY(500px);
    z-index: -40;
}

.contact-title {
    font-size: 4em;
    margin-bottom: 30px;
    font-weight: 600;
}

    .contact-title i {
        font-style: normal;
        color: var(--green);
    }

#contact-start {
    z-index: 20;
}

    #contact-start p {
        color: var(--light04);
        font-size: 1.09em;
        position: relative;
        font-weight: 600;
    }

#contactBody {
    font-family: var(--popp);
    width: 100%;
    height: max-content;
    display: flex;
    padding: 40px;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.contact-group-options {
    display: flex;
    gap: 10px;
}

    .contact-group-options p {
        color: var(--dark02);
        font-size: 1.1em;
        margin: 0 0 10px 0;
        font-weight: 600;
    }

.contact-options-i {
    background: rgba(1,1,1,.05);
    height: max-content;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 21px;
}

.contact-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

    .contact-options p {
        font-family: var(--popp02);
        text-align: initial;
    }

    .contact-options h3 {
        text-align: initial;
    }


.contact-btn-options {
    font-family: var(--popp02);
    width: fit-content;
    border-radius: 7px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--green);
    cursor: pointer;
    border: 1px solid;
    text-decoration: none;
    padding: 0 5px;
    font-weight: 600;
    transition: all .10s ease;
}

.contact-btn-i {
    transition: all .10s ease;
}

.contact-btn-options:hover .contact-btn-i {
    transform: translateX(10px);
}

.contact-btn-options:hover {
    background: var(--green);
    color: var(--light01);
    padding: 0 20px 0 5px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    border: none;
}

.contact-btn-options i {
    font-size: 20px;
}

#contact-area {
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(1,1,1,.20);
    background: rgba(255,255,255,1);
}

    #contact-area p {
        font-family: var(--popp02);
        font-size: 1.23em;
        color: var(--dark02);
        font-weight: 600;
    }

form span {
    font-family: var(--popp02);
    font-weight: 600;
    color: var(--dark03);
}

.contact-form .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

    .contact-form .inputBox input,
    .contact-form .inputBox textarea {
        width: 100%;
        padding: 10px;
        font-size: 1em;
        margin: 10px 0;
        border: 1px solid var(--blueLight);
        background: transparent;
        border-radius: 15px;
        outline: none;
        resize: none;
    }

        .contact-form .inputBox input:focus,
        .contact-form .inputBox textarea:focus {
            border: 2px solid var(--blueLight);
        }

        .contact-form .inputBox input[type='submit'] {
            width: auto;
            margin: auto;
            border: none;
            border-radius: 10px;
            padding: 10px 30px;
            justify-content: center;
            align-items: center;
            display: flex;
            background-color: var(--white);
            border: 1.5px solid var(--blueLight);
            transition: all .3s ease;
            font-weight: 600;
        }

            .contact-form .inputBox input[type='submit']:hover {
                color:var(--white);
                background-color: var(--blueLight);
                box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
            }


/*FOOTER*/
footer a {
    text-decoration: none;
}

.footer-container {
    background: linear-gradient( 180deg, /* Dirección: de abajo hacia arriba */
    rgba(68, 214, 44, 0.1) 23%, /* Verde muy tenue (10% opacidad) */
    rgba(0, 114, 206, 0.25) 74% /* Azul claro semi-transparente (25% opacidad) */
    );
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 30px 0 30px;
    font-family: var(--popp);
}


.social-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .social-container i {
        width: 60px;
        height: 60px;
        color: black;
        font-size: 20px;
        background: rgba(1,1,1,.04);
        border-radius: 10px;
        margin: auto;
        line-height: 60px;
        transition: all .30s;
    }

.social-btn {
    position: relative;
    text-align: center;
}

    .social-btn a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: black;
    }

        .social-btn a:hover i {
            color: #fff;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        }

    .social-btn #facebook:hover i {
        background: #0866ff;
        text-shadow: 0px 0px 10px rgba(255,255,255,0.40);
    }

    .social-btn #linkedin:hover i {
        background: #0173b2;
        text-shadow: 0px 0px 10px rgba(255,255,255,0.40);
    }

    .social-btn #instagram:hover i {
        background: #c43386;
        text-shadow: 0px 0px 10px rgba(255,255,255,0.40);
    }

    .social-btn #tiktok:hover i {
        background: #000;
        text-shadow: 0px 0px 10px rgba(255,255,255,0.40);
    }

    .social-btn .lateral-hr:before {
        content: "";
        width: 2px;
        height: 100%;
        background: rgba(1,1,1,.3);
        position: absolute;
        right: 0;
    }

.name-social h6 {
    font-weight: 600;
}

.name-social p {
    font-family: var(--popp02);
    color: var(--dark03);
    font-weight: 600;
}

.footer-02 {
    width: 100%;
    height: max-content;
    position: relative;
    display: grid;
    grid-template-columns: 50% 50%;
    margin-top: 30px;
    padding: 0 100px;
    font-family: var(--popp);
}

    .footer-02 img {
        margin: auto;
    }

    .footer-02 .contact {
        color: black;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .footer-02 .contact a {
            font-family: var(--popp02);
            color: var(--blueLight);
        }

.a-footer {
    font-family: var(--popp02);
    display: flex;
    gap: 10px;
}

#footer__presupuesto {
    background: rgba(1,1,1,.04);
    padding: 5px 10px;
    border-radius: 10px;
    transition: all .5s;
}

    #footer__presupuesto:hover {
        background: rgba(1,1,1,.15);
    }

#copyright {
    font-family: var(--popp02);
    font-size: 1em;
    color: var(--dark02);
}

#modalAvisoPrivacidad {
    font-family: var(--popp);
    font-weight: 600;
}

    #modalAvisoPrivacidad #modal-header {
        display: flex;
        justify-content: space-between;
        padding: 20px 20px 0px 20px;
    }

    #modalAvisoPrivacidad #head-title {
        background-image: linear-gradient( 300deg, rgba(0, 128, 0, .7), /* Verde puro */
        rgba(0, 0, 255, .7) /* Azul puro */
        );
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 1.5em;
    }

#content_Pv {
    padding: 20px;
}


.txt-lightColor {
    color: var(--dark02);
}

.modal-txt-violet {
    color: var(--blueLight);
}

#footer-Pv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    #footer-Pv ul {
        padding: 0;
        display: flex;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
    }

        #footer-Pv ul li {
            list-style: none;
        }

/*Mensaje enviado View*/
#send-mess-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#send-mess-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--popp);
    padding: 40px;
}

#send-mess-container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50vh;
    background: linear-gradient(0deg, rgba(248,245,252,1) 21%, rgba(206,192,228,1) 40%, rgba(146,115,193,1) 62%, rgba(101,58,167,1) 79%, rgba(56,0,140,1) 98%);
    top: 0;
}

#send-mess-container i {
    color: var(--dark01);
    font-size: 30px;
    padding: 10px 18px;
    background: rgba(1,1,1,.07);
    border-radius: 50%;
}

#send-mess-container h1 {
    color: var(--dark01);
    margin: 40px 0;
    z-index: 50;
}

#send-mess-container h5 {
    color: var(--dark02);
    z-index: 50;
}



/*GRAPE JS PRUEBA*/
/* Let's highlight canvas boundaries */
/*#gjs {
    border: 3px solid #444;
}*/

/* Reset some default styling */
/*:root {
    --gjs-primary-color: #78366a;
    --gjs-secondary-color: rgba(1, 1, 1, 0.7);
    --gjs-tertiary-color: #ec5896;
    --gjs-quaternary-color: #ec5896;
}

.gjs-cv-canvas {
    top: 0;
    width: 100%;
    height: 100%;
}

.gjs-block {
    width: auto;
    height: auto;
    min-height: auto;
}

.panel__top {
    padding: 0;
    width: 100%;
    display: flex;
    position: initial;
    justify-content: center;
    justify-content: space-between;
}

.panel__basic-actions {
    position: initial;
}

.editor-row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    height: 300px;
}

.editor-canvas {
    flex-grow: 1;
}

.panel__right {
    flex-basis: 230px;
    position: relative;
    overflow-y: auto;
}

.panel__switcher {
    position: initial;
}
.panel__devices {
    position: initial;
}*/
