﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Open+Sans:wght@300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;
}

:root {
    --text-color: #F2F2F2;
    --hover-color: #12f7ff;
    --hover-color-green: #09FF47;
    --hover-color-red: #FF2415;
    --bg-color: #292e33;
    --secon-bg-color: #1f2327;
    --three-bg-color: #282E33;
    --four-bg-color: #3C454D;
    --big-font: 3.5rem;
    --norma-font: 2.5rem;
    --neon-box-shadow: 0 0 .5rem #12f7ff;
    --neon-box-shadow-green: 0 0 .5rem #09FF47;
    --neon-box-shadow-red: 0 0 .5rem #FF2415;
    --h2-font: 3rem;
    --blue: #0097FC;
    --light-blue: #7AC1FE;
    --dark-blue: #008CEA;
    --grey: #828282;
    --font-neon-text-shadow: 0 0 10px rgba(18, 247, 255, 0.3), 0 0 20px rgba(18, 247, 255, 0.3), 0 0 30px rgba(18, 247, 255, 0.3), 0 0 40px rgba(18, 247, 255, 0.3), 0 0 70px rgba(18, 247, 255, 0.3), 0 0 80px rgba(18, 247, 255, 0.3), 0 0 100px rgba(18, 247, 255, 0.3), 0 0 150px rgba(18, 247, 255, 0.3);









 --color-brand-primary: hsl(var(--color-brand-primary-h), 43%, 43%);
  --color-brand-primary-h: 251;
  --color-brand-primary-s: 43%;
  --color-brand-primary-l: 43%;
  --color-brand-accent: hsl(var(--color-brand-accent-h), 96%, 61%);
  --color-brand-accent-h: 16;
  --color-brand-accent-s: 96%;
  --color-brand-accent-l: 61%;
  --color-brand-accent-bg: hsl(calc(var(--color-brand-accent-h) + 17), 100%, 96%);
  --ratio: 1.4;
  --s-6: calc(var(--s-5) / var(--ratio));
  --s-5: calc(var(--s-4) / var(--ratio));
  --s-4: calc(var(--s-3) / var(--ratio));
  --s-3: calc(var(--s-2) / var(--ratio));
  --s-2: calc(var(--s-1) / var(--ratio));
  --s-1: calc(var(--s0) / var(--ratio));
  --s0: calc(1.05rem + 0.333vw);
  --s1: calc(var(--s0) * var(--ratio));
  --s2: calc(var(--s1) * var(--ratio));
  --s3: calc(var(--s2) * var(--ratio));
  --s4: calc(var(--s3) * var(--ratio));
  --s5: calc(var(--s4) * var(--ratio));
  --s6: calc(var(--s5) * var(--ratio));




}


/* Barra de desplazamiento */
::-webkit-scrollbar {
    height: 0;
    width: .5rem; /* Ancho de la barra */
    background-color: #333; /* Color de fondo */
}

/* Track (pista) de la barra de desplazamiento */
::-webkit-scrollbar-track {
    background: var(--secon-bg-color); /* Color de fondo */
}

/* Handle (agarre) de la barra de desplazamiento */
::-webkit-scrollbar-thumb {
    background: var(--hover-color); /* Color del agarre */
    border-radius: 5rem; /* Radio de borde del agarre */
}



body {
    font-family: Lato, sans-serif;
    background-color: var(--four-bg-color);
    color: var(--text-color);
    width: 100%;
    height: 100%;
}

.loader-section {
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secon-bg-color);
    z-index: 999;
    transition: all 1s 1s ease-out;
    opacity: 1;
}

.loaded {
    opacity: 0;
    z-index: -1;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--hover-color-red);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

header {
    position: relative;
    top: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 10%;
    z-index: 3;
    background: var(--bg-color);
}


.logo img {
    width: 120px; /* Ajusta el ancho deseado */
    height: auto;
}


.language {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

span {
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navlist {
    display: flex;
}

.language-item {
    display: block;
    cursor: pointer;
}

    .language-item img {
        width: 25px; /* Ajusta el tamaño de los iconos según tus necesidades */
    }

    /*navbar2*/

/*-------------MEGA MENU*/














    /*HOME------------------------*/





/*----------------------------*/
#titulo, #servicios, #timeline {
    padding: 50px 10%;
}
.home-contect {
    max-width: 600px;
}

    .home-contect h1 {
        font-size: 5rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .home-contect p {
        font-size: 1.1rem;
        margin-top: 20px;
        align-content: center;
        text-align: justify;
        font-weight: 300;
        letter-spacing: 1px;
        line-height: 1.6;
    }

.whatsapp-icon {
    position: fixed;
    bottom: 70px;
    right: 70px;
    font-size: 50px;
    color: #fff;
    z-index: 9999;
    color: #4cff00;
}

    .whatsapp-icon:hover {
        color: #97ff00;
    }
.contact-text {
    display: none;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #1f2327;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 4px;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}


.whatsapp-icon:hover .contact-text {
    border: 2px solid #97ff00;
    background: #97ff00;
    box-shadow: var(--success);
    display: block;
}



/*BOTONES----------------------*/



.btn-box .btn {
    width: 220px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--success);
    color: var(--bg-color);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 900;
    transition: .6s;
    box-shadow: var(--bg-color);
    border: 2px solid var(--bg-color);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 25px;
}

.btn:hover {
    color: var(--blue);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    width: 0;
    height: 100%;
    z-index: -1;
    transition: .4s;
}

.btn:hover::before {
    width: 100%;
}

.btn:nth-child(1) {
    background: var(--bg-color);
    color: var(--success);
}

    .btn:nth-child(1):hover {
        color: var(--bg-color);
        border: 2px solid var(--success);
        box-shadow: var(--success);
    }

    .btn:nth-child(1)::before {
        background: var(--success);
    }

    /*home*/


    .home-section{
        background: var(--bg-color);
    }

.home {
    display: flex;
    width: auto;
    height: 700px;
    background: var(--bg-color);
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin: 10px;
}
.container-home{
    display:flex;
    padding-top:20px;
}

.card-home {
    display: grid;
    width: 780px;
    height: 600px;
    margin-right: 9px;
    border-radius: 20px;
    align-items: center;
    align-content: center;
    justify-items: center;
}

 span {
    font-family: Lato;
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    text-transform:uppercase;
    color: var(--h2-font);
    font-weight: 900;
    font-size: var(--big-font);
    margin-bottom: 20px;
}

.card-home.with-background {
    background: url('../img/A2_Nosotros/nosotros1.jpg') center/cover; /* Ajusta la ruta de la imagen */
}


/*carrusel home*/

.carrusel {
    position: relative;
    width: 780px;
    height: 600px;
    border-radius: 15px;
}

.imagen {
    position: absolute;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}
    .imagen img {
        height: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius:20px;
        opacity:1;
    }

.texto {
    position: absolute;
    width: 100%;
    text-align: left;
    left: 70px;
    top: 75%;
    font-weight: bold;
}

.sub-texto {
    position: absolute;
    width: 100%;
    text-align: left;
    left: 70px;
    top: 80%;
}

.contenedor a {
    position: absolute;
    text-decoration: none;
    color: white;
    font-size: 36px;
    top: 50%;
    transform: translateY(-50%);
}

.siguiente {
    left: 97%;
}

.boton {
    position: absolute;
    top: 5%;
    left: 95%;
}

.puntos {
    position: absolute;
    top: 93%;
    width: 100%;
    text-align: center;
}

.punto {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    margin-right: 5px;
}

    .punto:hover {
        cursor: pointer;
        background-color: var(--success);
    }

.contenedor a:hover {
    color: var(--success);
}

.actual {
    visibility: visible;
    opacity: 1;
    transition: ease-in-out all 2s;
}

.activo {
    background-color: var(--success);
}


/*nuestra compañia*/

.section-compañia {
    height: auto;
}

.titulo_compañia {
    text-align: center !important;
    justify-content: center !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.header-compañia {
    margin-top:35px;
    margin-bottom: 35px;
}

.title_header {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    position:relative;
    top:12px;
}

.title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 35px;
}

    .title:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 1px;
        background-color: var(--success);
    }

    .title:after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 3px;
        background-color: var(--success);
    }

    .title span {
        color: #f70037;
    }

.sobre {
    display: grid;
    justify-items: center;
    padding-bottom: 50px;
}


.fondo-compañia {
    align-content: center;
    align-items: center;
    width: 1200px;
    height: 388px;
    background: var(--secon-bg-color);
    border-radius: 20px;
    padding: 20px;
}

.partes {
    text-align: left;
    display: flex;
    position: relative;
    padding: 20px;
}
.part1 {
    margin: 20px;
    text-align: justify;
}


    .part1 i {
        color: var(--success);
        padding-bottom: 20px;
        font-size: 35px;
        position: relative;
        display: flex;
        justify-content: center;
        justify-items: center;
        align-items: center;
    }



    /*Mision y Vision*/

.section-services {
    background: var(--bg-color);
}

.services-section2 {
   
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.container-services {
    flex-wrap: nowrap;
    justify-content: center;
    display: flex;
    padding-top: 20px;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    margin-right: 100px;
    width: 530px;
}

    .service-card:last-child {
        margin-right: 0; /* Elimina el espacio a la derecha de la última tarjeta */
    }

    .service-card img {
        width: 100%;
        height: auto;
    }

.card-content {
    padding: 20px;
}

    .card-content h3 {
        text-align: justify;
        color: var(--success);
        font-family: Lato;
        font-size: 1.3rem;
        font-weight: 800;
        margin: 20px;
    }

    .card-content h {
        font-family: Lato;
        color: #fff;
        font-size: 16px;
        margin-bottom: 15px;
        text-align: justify;
    }

    /*politica de calidad*/

.interes {
    position: relative;
    background-image: url("../img/A3_Fibra Optica/interes.jpg");
    background-size: cover; /* Ajusta según sea necesario */
    background-position: center center; /* Ajusta según sea necesario */
    height: 300px; /* Ajusta según sea necesario */
    /* Estilo del cuadro negro con opacidad */
}

.container-interes {
    display: flex;
    flex-direction: column;
    padding: 50px;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 1; /* Asegura que el contenido de texto esté por encima del cuadro negro */
}


.interes::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.6; /* Opacidad del cuadro negro */
    z-index: 0; /* Coloca el cuadro negro detrás del contenido de texto */
}

.todopolitica {
    left: 900px;
    width: 570px;
    position: relative;
}



.Ititle {
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    font-family: Lato;
    font-weight: 900;
}

    .Ititle span {
        text-align: center;
        text-transform: uppercase;
        font-size: 50px;
        font-family: Lato;
        font-weight: 900;
        color: var(--success);
    }

.container-interes img {
    width: 25%;
    left: 200px;
    border-radius: 20px;
    display: flex;
    position: absolute;
}


/*footer*/
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.container-footer {
    margin: 5px;
    padding: 50px;
    display: flex;
    justify-content: space-evenly;
    text-align: justify;
    align-items: center;
}

.footer-row {
    width:430px;
    height:300px;
    align-items: center;
    margin: 20px;
    padding: 20px;
}

.container-logo{
    width:auto;
    height:auto;
    align-items:center;
}

.logo2 {
    width: 70%; 
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    width: 220px;
    height: 40px;
}

    .social-icons a {
        display: inline-flex;
        width: 50px;
        height: 100%;
        justify-content: center;
        align-items: center;
        background: var(--bg-color);
        color: var(--success);
        border: 2px solid var(--success);
        transition: .6s;
        box-shadow: 0 0 0.3rem #12f7ff;
        border-radius: 5px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        opacity: 0.5;
    }

        .social-icons a i {
            font-size: 1.5rem;
            opacity: 1;
        }

        .social-icons a:hover {
            color: var(--bg-color);
            opacity: 2;
        }

        .social-icons a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: var(--success);
            transition: .6s;
            z-index: -1;
        }

        .social-icons a:hover::before {
            width: 100%;
        }

    .social-icons img {
        width: 20px; /* Ajusta el tamaño de los iconos sociales según sea necesario */
    }

.Stitle {
    text-align: left;
    font-size: 30px;
    padding-bottom: 25px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--success);
}

.services-item{
    width:280px;
    height:280px;
}

    .services-item ul {
        list-style-type: none;
        padding: 0;
    }

    .services-item li {
        text-align: left;
        position: relative;
        padding-left: 30px; /* Incrementé el espacio a la izquierda para dejar espacio para el círculo */
        margin-bottom: 10px;
    }

        .services-item li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px; /* Tamaño del círculo */
            height: 12px; /* Tamaño del círculo */
            border: 2px solid var(--success); /* Borde del círculo */
            border-radius: 50%; /* Hace que el borde sea redondo */
            box-sizing: border-box; /* Asegura que el tamaño total sea el especificado (incluyendo el grosor del borde) */
        }

    .services-item ul li a {
        font-family: Lato;
        color: #6f6f71;
        font-size: 16px;
        margin-bottom: 10px
    }

    .services-item ul li a:hover {
        color: #fff;
        text-decoration:none;
        transition: ease 2s;

    }



    /*footer 2*/


.copy {
    padding: 0.8rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secon-bg-color);
}

    .copy h {
        color: #bdbdbd;
    }



    .copy a {
        display: inline-flex;
        justify-content: center;
        color: var(--text-color);
        background: var(--success);
        padding: .6rem;
        border-radius: 5px;
    }

        .copy a i {
            font-size: 1rem;
            color: var(--secon-bg-color);
        }




