        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&amp;display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat';
        }
        
        html {
            scroll-behavior: smooth;
        }
        /* *********************/
        /* seccion I N I C I O */
        /* *********************/
        
        .logo{
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .logo img{
            width: 200px;
        }
        #inicio {
            background: linear-gradient( rgba(135, 223, 250, 0.692), rgba(0, 0, 0, 0.418)), url("../img/fondo3.gif");
            background-size: cover;
            background-position: center center;
            height: 100vh;
        }
        
        #inicio .contenido header {
            background-color: rgb(248, 249, 249);
            position: flex;
            width: 100%;
            z-index: 100;
            top: 0;
        }
        
        #inicio .contenido header .contenido-header {
            max-width: 1300px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }
        
        #chat-general {
  position: fixed;
  bottom: 20px;    /* distancia desde el borde inferior */
  right: 20px;     /* distancia desde el borde derecho */
  width: 320px;
  max-height: 400px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  overflow: hidden;
  position: relative
}
        
        #inicio .contenido header .contenido-header h1 {
            text-align: center;
            color: #ff5080;
        }
        
        #inicio .contenido header .contenido-header nav ul {
            list-style: none;
            display: flex;
            align-items: center;
        }
        
        #inicio .contenido header .contenido-header nav ul li a {
            text-decoration: none;
            color: #0c0c0c;
            margin: 0 12px;
            font-weight: 400;
            transition: .5s;
            font-family:'Times New Roman', Times, serif;
        }
        
        #inicio .contenido header .contenido-header nav ul li a:hover {
            color: #32a9ca;
            font-family:'Times New Roman', Times, serif;
        }
        
        #inicio .contenido header .contenido-header .redes a {
            text-decoration: none;
            color: #0a0a0a;
            display: inline-block;
            margin-left: 10px;
            transition: .5s;
        }
        
        #inicio .contenido header .contenido-header .redes a:hover {
            color: #509cff;
        }
        
        #inicio .contenido header .contenido-header .seleccionado {
            color: #359fbd;
        }

        .redes {
            display: flex;
            justify-content: center;            
          }
          
          .redes a {
            display: inline-block;
            position: relative;
            margin: 0 10px;
            text-decoration: none;
          }
          
          .redes a .tooltip {
            visibility: hidden;
            width: 120px;
            background-color: black;
            color: white;
            text-align: center;
            border-radius: 6px;
            padding: 5px 0;
            position: absolute;
            z-index: 1;
            top: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
          }          
          .redes a:hover .tooltip {
            visibility: visible;
            opacity: 1;
          }
          
        
        #inicio .contenido .presentacion {
            max-width: 1100px;
            height: 100vh;
            margin: auto;
            color: #041941;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        #inicio .contenido .presentacion .bienvenida {
            font-size: 40px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-family: 'Times New Roman', Times, serif;
        }

        #inicio .contenido .presentacion h2 {
            font-size: 55px;
            margin-bottom: 25px;
            text-align: center;
        }
        
        #inicio .contenido .presentacion h2 span {
            font-size: 50px;
            color: #fcfcfc;
        }
        
        #inicio .contenido .presentacion .descripcion {
            max-width: 700px;
            margin: 25px auto;
            font-size: 25px;
            text-align: center;
            color: #ffffff;
            font-family: 'Times New Roman', Times, serif;
            text-align: justify;
        }
        
        #inicio .contenido .presentacion a {
            text-decoration: none;
            display: inline-block;
            margin: 25px;
            padding: 20px 25px;
            border: 2px solid #fff;
            border-radius: 50px;
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            transition: .5s;
        }
        
        #inicio .contenido .presentacion a:hover {
            background-color: #ff5080;
        }
        
        #icono-nav {
            color: #fff;
            display: none;
        }
        /* *********************/
        /* seccion S O B R E  M I */
        /* *********************/
        
        #sobremi {
            max-width: 1100px;
            margin: auto;
            padding: 100px 15px;
            color: #111135;
            display: flex;
            text-align: justify;
        }
        
        #sobremi .contenedor-foto {
            max-width: 400px;
            margin-right: 170px;
            margin-top: 80px;
        }
        
        #sobremi .contenedor-foto img {
            padding: 10px;
            width: 600px;
            height: 300px;
            border-radius: 20px;
            background-color: #f3f3f3;
        }
        
        #sobremi .sobremi {
            margin: 0 40px;
        }
        
        #sobremi .sobremi .titulo-seccion {
            font-size: 22px;
            text-transform: uppercase;
            color: #111135;
            text-decoration: underline;
            text-decoration-color: #d3d3d3;
            text-decoration-thickness: 5px;
            text-align: justify;
        }
        
        #sobremi .sobremi h2 {
            font-size: 34px;
            font-weight: bold;
            margin: 20px 0;
            letter-spacing: 2px;
            text-align: justify;
        }
        
        #sobremi .sobremi h2 span {
            color: #50a5ff;
        }
        
        #sobremi .sobremi h3 {
            font-size: 24px;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-align: justify;
        }
        
        #sobremi .sobremi p {
            font-size: 18px;
            line-height: 25px;
            color: #565656;
            margin-bottom: 12px;
            text-align: justify;
        }
        
        #sobremi .sobremi a {
            display: inline-block;
            text-decoration: none;
            color: #000;
            border-radius: 30px;
            border: 1px solid #000;
            padding: 10px 20px;
            margin-top: 30px;
            transition: .5s;
        }
        
        #sobremi .sobremi a:hover {
            background-color: #ff5080;
            color: #fff;
        }
        /* *********************/
        /* seccion S E R V I C I O S */
        /* *********************/

        #servicios {
            background: linear-gradient( #5aebddcc, rgba(33, 16, 16, 0.8)), url("img/fondo.html");
            padding: 10px 10px;
            text-align: center;
            background-color: #f3f3f3;
        }

        #servicios .titulo-seccion {
            text-align: center;
            font-size: 22px;
            text-transform: uppercase;
            color: #111135;
            text-decoration: underline;
            text-decoration-color: #d3d3d3;
            text-decoration-thickness: 5px;
        }
        
        #servicios .fila {
            display: flex;
            justify-content: space-between;
            max-width: 1150px;
            margin: 30px auto;
        }
        
        #servicios .fila .servicio {
            max-width: 350px;
            background-color: #fff;
            padding: 30px;
            margin: 0 5px;
            border-radius: 5px;
            transition: .5s;
        }
        
        #servicios .fila .servicio:hover {
            box-shadow: 5px 5px 10px #565656, -5px -5px 10px #8a8a8a;
        }
        
        #servicios .fila .servicio .icono {
            display: inline-block;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #d3d3d3;
            padding: 20px;
            margin-bottom: 25px;
        }

        #servicios .fila .servicio img {
            height: 190px;
        }
        
        #servicios .fila .servicio h4 {
            font-size: 22px;
            margin-bottom: 25px;
            margin-top: 70px;
            text-align: justify;
        }
        
        #servicios .fila .servicio hr {
            width: 30%;
            margin: auto;
            color: #000;
            margin-bottom: 25px;
        }
        
        #servicios .fila .servicio ul {
            list-style: none;
            display: flex;
            justify-content: space-around;
            margin-bottom: 10px;
        }
        
        #servicios .fila .servicio p {
            font-size: 14px;
            line-height: 22px;
            text-align: justify;
        }

        /* *********************/
        /* seccion E N L A C E S */
        /* *********************/

        p a {
            text-decoration: none;
            color: #000;
        }

        /* *********************/
        /* seccion V I S I O N - M I S I O N */
        /* *********************/

        

        #vision-mision {
            background: linear-gradient( #5f5c62cc, rgba(57, 81, 109, 0.8)), url("img/oceano.html");
            padding: 100px 15px;
            text-align: center;
            background-color: #f3f3f3;
        }

        .vision{
            text-align: center;
            width: 100%;
        }

        .space-vision{
            margin-bottom: 5px;
        }

        .class-vision{
            display: inline-block;
            vertical-align: top;
            margin: 0 10px;
            width: 200px;
        }
        

        .imagen-centrada {
            display: block;
            margin: 0 auto; /* Esto centra la imagen horizontalmente */
            width: 100%;
        }
        
        
        #vision-mision .titulo-seccion {
            text-align: center;
            font-size: 22px;
            text-transform: uppercase;
            color: #111135;
            text-decoration: underline;
            text-decoration-color: #d3d3d3;
            text-decoration-thickness: 5px;
            text-align: justify;
        }
        
        #vision-mision .fila {
            display: flex;
            justify-content: space-between;
            max-width: 1150px;
            margin: 30px auto;
        }

        #vision-mision .fila1 {
            display: flex;
            justify-content: center;
            max-width: 1150px;
            margin: 30px auto;
            background-color: #fff;
        }
        
        #vision-mision .fila .servicio {
            max-width: 550px;
            background-color: #fff;
            padding: 30px;
            margin: 0 5px;
            border-radius: 5px;
            transition: .5s;
        }
        
        #vision-mision .fila .servicio:hover {
            box-shadow: 5px 5px 10px #071141, -5px -5px 10px #36096d;
        }
        
        #vision-mision .fila .servicio .icono {
            display: inline-block;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #d3d3d3;
            padding: 20px;
            margin-bottom: 25px;
        }
        
        #vision-mision .fila .servicio h4 {
            font-size: 22px;
            margin-bottom: 25px;
            text-align: justify;
        }
        
        #vision-mision .fila .servicio hr {
            width: 30%;
            margin: auto;
            color: #000;
            margin-bottom: 25px;
        }
        
        #vision-mision .fila .servicio ul {
            list-style: none;
            display: flex;
            justify-content: space-around;
            margin-bottom: 10px;
        }
        
        #vision-mision .fila .servicio p {
            font-size: 14px;
            line-height: 22px;
            text-align: justify;
        }
        
        /* *********************/
        /* seccion S K I L L S */
        /* *********************/
        
        .contenedor-skills {
            background: linear-gradient( #34d5d5cc, rgba(33, 32, 32, 0.8)), url("img/fondo-skills.html");
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-size: cover;
            color: #fdfefd;
            background-position: center center;
            padding: 100px 0;
            text-align: center;
        }
        
        .contenedor-skills .skill {
            max-width: 800px;
            margin: 40px auto;
            margin-bottom: 40px;
        }
        
        .contenedor-skills .skill .info {
            display: flex;
            justify-content: space-between;
        }
        
        .contenedor-skills .skill .lista {
            display: inline-block;
            margin-right: 20px;
            height: 10px;
            width: 10px;
            background-color: #fff;
        }
        
        .contenedor-skills .skill .barra {
            background-color: #919191;
            width: 100%;
            height: 6px;
            margin: 10px 0px;
        }
        
        .contenedor-skills .skill .barra .barra-progreso1 {
            background-color: #fff;
            width: 95%;
            height: 6px;
            animation: progreso1 2s forwards;
        }
        
        .contenedor-skills .skill .barra .barra-progreso2 {
            background-color: #fff;
            width: 90%;
            height: 6px;
            animation: progreso2 2s forwards;
        }
        
        .contenedor-skills .skill .barra .barra-progreso3 {
            background-color: #fff;
            width: 90%;
            height: 6px;
            animation: progreso3 2s forwards;
        }
        
        .contenedor-skills .skill .barra .barra-progreso4 {
            background-color: #fff;
            width: 85%;
            height: 6px;
            animation: progreso4 2s forwards;
        }


        /* *********************/
        /* Quienes Somos

Eurotuna S.A., Industria Atunera del Ecuador */
        /* *********************/

        #identidad {
            background: linear-gradient( rgba(58, 190, 213, 0.7), rgba(29, 42, 26, 0.7)), url("img/fondo-inicio.html");
            background-size: cover;
            background-position: center center;
            height: 60vh;
        }

        #identidad .contenido .presentacion .quienes-somos {
            font-size: 40px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-family: 'Times New Roman', Times, serif;
            text-align: center;
            margin-top: -60px;
            text-align: justify;
        }

        #identidad .contenido .presentacion .descripcion {
            max-width: 100%;
            margin: 20px ;
            font-size: 25px;
            text-align: left;
            color: white;
            text-align: justify;
        }

        /* *********************/
        /* seccion C A R R U S E L */
        /* *********************/

        #carousel {
            height: 800px; /* Ajusta este valor según sea necesario */
            overflow: hidden; /* Evita que el contenido del carrusel sobresalga del contenedor */
        }
        
        #carousel .titulo-seccion {
            text-align: center;
            font-size: 22px;
            text-transform: uppercase;
            color: #111135;
            text-decoration-thickness: 5px;
            text-align: justify;
           
            background: linear-gradient( #5aebddcc, rgba(255, 255, 255, 0.8));
        }
        .carousel-item {
            margin: 10px; /* Espacio externo */
            padding: 10px; /* Espacio interno */
            box-sizing: border-box; /* Asegura que el padding no afecte el ancho y alto total del elemento */
            transition: none;
        }
        

        .home .carousel-item{
            min-height: 100vh;
            background-position: center;
            background-size: cover;
            position: relative;
            z-index: 1;
            padding: 8px;
            width: 100%;
        }
        .home .carousel-item:before{
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;            
            z-index: -1;
        }
        .home .carousel-item .container{
            position: absolute;
            left: 50%;
            top:50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .home .carousel-item h2{
            font-family: 'Times New Roman', Times, serif;
            font-size: 80px;
            color: #fff;
            margin: 0 0 10px;
            opacity: 0;
            text-align: justify;
        }
        .home .carousel-item p{
            font-family: 'Times New Roman', Times, serif;
            font-size: 24px;
            margin: 0;
            color: #eee;
            opacity: 0;
            text-transform: uppercase;
            text-align: justify;
        }
        .home .carousel-item.active h2{
            animation: fadeInLeft 0.5s ease forwards;
        }
        .home .carousel-item.active p{
            animation: fadeInRight 0.5s ease forwards;
        }
        
        /*********************** Arrow Indication *************************/
        .home .carousel-controls{
            position: absolute;
            left: 50%;
            bottom: 40px;
            z-index: 10;
            transform: translate(-50%);
        }
        .home .carousel-indicators{
            position: relative;
            margin: 0;
        }
        .home .carousel-indicators li{
            width: 70px;
            height: 70px;
            margin: 0 5px;
            border-radius: 50%;
            background-position: center;
            background-size: cover;
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .home .carousel-control-next img,
        .home .carousel-control-prev img{
            width: 30px;
        }
        .home .carousel-control-next{
            right: -90px;
        }
        .home .carousel-control-prev{
            left: -90px;
        }
        .home .carousel-indicators li.active{
            border-color:#fff;
            transform: scale(1.2);
        }
        .home .carousel-control-next,
        .home .carousel-control-prev{
            width: 60px;
            height: 60px;
            opacity: 1;
            z-index: 3;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .home .carousel-control-next:hover,
        .home .carousel-control-prev:hover{
            box-shadow: 0 0 10px #fff;
        }

        @keyframes progreso1 {
            0% {
                width: 0;
            }
            100% {
                width: 95%;
            }
        }
        
        @keyframes progreso2 {
            0% {
                width: 0;
            }
            100% {
                width: 90%;
            }
        }
        
        @keyframes progreso3 {
            0% {
                width: 0;
            }
            100% {
                width: 90%;
            }
        }
        
        @keyframes progreso4 {
            0% {
                width: 0;
            }
            100% {
                width: 85%;
            }
        }
        /* *********************/
        /* seccion P O R T F O L I O */
        /* *********************/
        
        #portfolio {
            max-width: 1100px;
            padding: 100px 0;
            margin: auto;
            margin-top: 10px;
        }
        
        #portfolio .titulo-seccion {
            text-align: center;
            font-size: 22px;
            text-transform: uppercase;
            color: #2a97ea;
            text-decoration: underline;
            text-decoration-color: #2a97ea;
            text-decoration-thickness: 5px;
            text-align: justify;
        }
        
        #portfolio .fila {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
        }
        
        #portfolio .fila .proyecto {
            max-width: 450px;
            border: 1px solid #5cc072;
            margin: 0 10px;
            position: relative;
            overflow: hidden;
        }

        #portfolio .fila .proyecto1 {
            max-width: 550px;
            border: 1px solid #5cc072;
            margin: 0 10px;
            position: relative;
            overflow: hidden;
        }

        #portfolio .fila .proyecto .tamanio-img {
            max-width: 450px;
            border: 1px solid #5cc072;
            margin: 0 px;
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        #portfolio .fila .proyecto img {
            width: 350px;
            height: 100%;            
            /* filter: grayscale(1); */
            object-fit: cover;
            transition: .5s;
        }

        #portfolio .fila .proyecto1 img {
            width: 540px;
            height: 200px;            
            /* filter: grayscale(1); */
            object-fit: cover;
            transition: .5s;
        }
        
        #portfolio .fila .proyecto:hover img {
            filter: grayscale(0);
        }

        #portfolio .fila .proyecto1:hover img {
            filter: grayscale(0);
        }
        
        #portfolio .fila .proyecto .info {
            position: absolute;
            left: 0px;
            background-color: rgba(255, 255, 255, 0.8);
            color: #ff5080;
            width: 100%;
            padding: 10px;
            opacity: 0;
            bottom: -40px;
            transition: .5s;
        }

        #portfolio .fila .proyecto1 .info {
            position: absolute;
            left: 0px;
            background-color: rgba(255, 255, 255, 0.8);
            color: #ff5080;
            width: 100%;
            padding: 10px;
            opacity: 0;
            bottom: -40px;
            transition: .5s;
        }
        
        #portfolio .fila .proyecto:hover .info {
            opacity: 1;
            bottom: 0;
        }

        #portfolio .fila .proyecto1:hover .info {
            opacity: 1;
            bottom: 0;
        }
        /* *********************/
        /* seccion C O N T A C T O */
        /* *********************/
        
        #contacto {
            padding: 100px 15px;
            background-color: #f3f3f3;
        }
        
        #contacto .titulo-seccion {
            margin-bottom: 20px;
        }
        
        #contacto .contenedor-form {
            max-width: 1100px;
            margin: auto;
        }
        
        #contacto .contenedor-form .fila {
            margin-bottom: 15px;
        }
        
        #contacto .contenedor-form .mitad {
            display: flex;
            justify-content: space-between;
        }
        
        #contacto .contenedor-form input,
        #contacto .contenedor-form textarea {
            padding: 20px;
            border-radius: 20px;
            border: none;
            border: 1px solid #919191;
        }
        
        #contacto .contenedor-form .mitad input {
            width: 48%;
        }
        
        #contacto .contenedor-form .input-full {
            width: 100%;
        }
        
        #contacto .titulo-seccion {
            text-align: center;
            font-size: 22px;
            text-transform: uppercase;
            color: #111135;
            text-decoration: underline;
            text-decoration-color: #d3d3d3;
            text-decoration-thickness: 5px;
        }
        
        #contacto .btn-enviar {
            display: block;
            margin: auto;
            cursor: pointer;
            transition: .5s;
            padding: 10px 15px !important;
        }
        
        #contacto .btn-enviar:hover {
            background-color: #ff5080;
            color: #fff;
        }


        .texto-informacion {
            max-width: 800px; /* Ancho máximo para el bloque de texto */
            margin: 0 auto; /* Centra el bloque de texto horizontalmente */
        }
        
        .texto-informacion h3 {
            margin-top: 20px; /* Espaciado entre títulos y texto */
        }
        
        .texto-informacion ul {
            padding-left: 20px; /* Indentación para la lista de noticias */
        }
        
        .texto-informacion p {
            line-height: 1.6; /* Espaciado entre líneas */
            margin-bottom: 20px; /* Espaciado entre párrafos */
        }
               
        /* SECCION CONTACTO */
        .contacto {
            background-color: #202020;
            padding: 0px 0 100px 0;
            color: white;
            text-align: center;
            margin-top: 5px;
        }
        
        .contacto .contenido-seccion {
            max-width: 1000px;
            margin: auto;
            padding: 0 20px; /* Ajustado para dar más espacio al contenido */
        }
        
        .contacto .contenido-seccion h3 {
            text-transform: uppercase;
            font-size: 30px;
            margin-bottom: 30px; /* Agrega espacio debajo del título */
        }
        
        .contacto .contenido-seccion .fila {
            display: flex;
            flex-wrap: wrap; /* Permite que los elementos se ajusten en varias líneas */
            justify-content: space-between; /* Distribuye los elementos equitativamente */
        }
        
        .contacto .contenido-seccion .fila .col {
            flex-basis: calc(33.33% - 20px); /* Establece el ancho de cada columna */
            margin-top: 50px;
            padding: 20px;
            box-sizing: border-box; /* Incluye el relleno en el tamaño del elemento */
            background-color: #227895; /* Fondo oscuro para resaltar cada columna */
            text-align: left; /* Alinea el texto a la izquierda */
        }
        
        .contacto .contenido-seccion .fila .col h2 {
            color: #0a1f4f;
            margin-bottom: 20px; /* Agrega espacio debajo del título */
        }

        .contacto .contenido-seccion .fila .col h2 .icono{
            color: #071639;
            margin-bottom: 20px; /* Agrega espacio debajo del título */
            text-decoration: none;
            margin-left: 5px;
        }
        
        .contacto .contenido-seccion .fila .col h2 i {
            margin-right: 10px; /* Añade espacio entre el ícono y el texto */
        }
        
        .contacto .contenido-seccion .fila .col .info-contacto {
            display: block; /* Configura los spans como elementos en bloque */
            margin-top: 5px; /* Agrega un margen entre los elementos */
        }

        /* *********************/
        /* seccion V A L O R E S */
        /* *********************/

        #valores {
            background-color: #f2f4f4;
            padding: 50px 0;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .titulo-valores {
            text-align: center;
            font-size: 36px;
            color: #1da3eb;
            margin-bottom: 30px;
        }
        
        .valores-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .valor-icono {
            flex: 0 0 100px;
            margin-right: 20px;
        }
        
        .valor-icono img {
            max-width: 100%;
        }
        
        .valor-info {
            flex: 1;
        }
        
        .valor-nombre {
            font-size: 24px;
            color: #080808;
            margin-bottom: 10px;
        }
        
        .valor-descripcion {
            font-size: 18px;
            color: #399de9;
        }
        
        /* *********************/
        /* seccion U B I C A T I O N */
        /* *********************/

        .ubicacion {
            background-color: #f9f9f9;
            padding: 50px 0;
        }
        
        .contenido-seccion {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .titulo-seccion {
            font-size: 36px;
            color: #333;
        }
        
        .mapa {
            margin-top: 30px;
            border: 1px solid #846c6c; /* Añade un borde alrededor del mapa */
            border-radius: 10px; /* Añade bordes redondeados al mapa */
            overflow: hidden; /* Evita que el mapa sobresalga del contenedor */
        }

        /* *********************/
        /* seccion F O R M U L A R I O */
        /* *********************/

        #wrapper {
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            background-color: #b7d5f6;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        h2 {
            margin-bottom: 20px;
            font-size: 24px;
            text-align: center;
        }
        
        form {
            display: flex;
            
        }
        
        label {
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        input[type="text"],
        input[type="email"],
        textarea {
            padding: 8px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        
        input[type="submit"] {
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }
        
        input[type="submit"]:hover {
            background-color: #0056b3;
        }
        

        /* new styles */
        .container-contacto {
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
        }
        
        input,
        textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        button {
            display: block;
            width: 100%;
            padding: 10px;
            background-color: #2976c8;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 10px;
        }
        
        button:hover {
            background-color: #185ba1;
        }
    
        .container-form{
            width: 100%;
            max-width: 1100px;
            margin: auto;
            grid-gap: 50px;
            margin-top: 90px;
        }

        .container-form h2{
            margin-bottom: 15px;
            font-size: 35px;
        }

        .container-form p{
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .container-form a{
            font-size: 17px;
            display: inline-block;
            text-decoration: none;
            width: 100%;
            margin-bottom: 15px;
            color: black;
            font-weight: 700;
        }

        .container-form a i{
            color: rgb(76, 146, 207);
            margin-right: 10px;
        }
        .container-form form .campo, textarea{
            width: 100%;
            padding: 15px 10px;
            font-size: 15px;
            border: 1px solid #dbdbdb;
            margin-bottom: 20px;
            border-radius: 3px;
            outline: 0px;
        }

        .container-form form textarea{
            max-width: 530px;
            min-width: 16px;
            min-height: 140px;
            max-height: 150px;
        }

        .container-form .btn-enviar{
            padding: 15px;
            font-size: 16px;
            border: none;
            outline: 0px;
            background: #3f6f80;
            color: white;
            border-radius: 3px;
            cursor: pointer;
            transition: all 300ms ease;
            margin-bottom: 10px;
        }

        /* *********************/
        /* seccion V E N T A N A */
        /* *********************/

        .ventana {
            background: rgb(86, 119, 141);
            width: 50%;
            color: rgb(255, 255, 255, 1);
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            text-align: center;
            padding: 33px;
            min-height: 250px;
            border-radius: 22px;
            position: fixed; /* Cambiado a fixed para que sea relativo a la ventana del navegador */
            top: 48%;
            left: 50%;
            transform: translate(-50%, -40%); /* Centra vertical y horizontalmente */
            display: none;
        }

        .imagen-contenedor {
            flex: 1; /* Ocupa el 50% del espacio disponible */
            margin-right: 20px; /* Espacio entre la imagen y el formulario */
        }

        .formulario-contenedor {
            flex: 1; /* Ocupa el 50% del espacio disponible */
            margin-left: 20px; /* Espacio entre la imagen y el formulario */
        }

        .contenedor-formulario{
            display: flex;
            flex-direction: row;
            align-items: center; /* Centrar verticalmente */
            justify-content: space-around; /* Espaciado equitativo */
        }
        
        .img-contenedor{
            width: 350px;
            height: 460px;
        }

        #cerrar{
            position: absolute;
            right: 5px;
            top: 1px;
        }

        .estilo-cerrar{
            width:20px
        }

        .estilo-conte-flot{
            margin:30%;
            text-decoration: none;
            color: #1aa2c4;
            font-weight: bold;
        }

        .estilo-conte-flot:hover {
            color: #080808;
        }

        .color-button{
            background-color:rgba(62, 182, 116, 0.692)
        }

        .formulario-categorizacion{
            width: 220px;
            background-color: white;
            height: 30px;
            margin-bottom: 20px;
        }

        .titulo-denuncia{
            color: #ff9100;
            font-size: 18px;
        }

        .checkbox{
            margin-bottom: 8px;
        }

          /* End of styles */

        /* *********************/
        /* seccion F O O T E R */
        /* *********************/
        
        /* footer {
            background-color: #3f6f80;
            color: #fff;
            text-align: center;
            padding: 30px 0;
        }
        
        footer a {
            text-decoration: none;
            color: #fff;
            display: inline-block;
            margin: 5px;
            font-size: 26px;
        } */

        footer {
            background-color: #3f6f80;
            color: #fff;
            padding: 20px;
            text-align: center;
        }
        
        footer p {
            margin-bottom: 10px;
        }
        
        .redes {
            margin-top: 10px;
        }
        
        .redes a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .redes a:hover {
            color: #ccc;
        }
        
        /* *********************/
        /* seccion R E S P O N S I V E */
        /* *********************/
        
        @media screen and (max-width: 800px) {
             #vision-mision {
        padding: 60px 10px; /* Reduce el espacio vertical en móviles */
    }
             .container-form {
        grid-template-columns: 1fr; /* Una sola columna */
        grid-gap: 30px; /* Menor separación */
        margin-top: 50px; /* Menor espacio superior en móviles */
        padding: 0 20px; /* Añade padding horizontal */
    }
 

    .formulario-contenedor form input,
    .formulario-contenedor form textarea,
    .formulario-contenedor form button {
        font-size: 18px;
    }     
    #identidad {
        height: 120vh; /* o incluso 100vh según el efecto que desees */
    }
            .redes {
                display: none;
            }
            nav {
                display: none;
            }
            nav.responsive {
                display: block;
                background-color: rgba(109, 172, 212, 0.8);
                width: 100%;
                position: absolute;
                top: 48px;
                left: 0;
                padding: 1px 0;
            }
            nav.responsive ul {
                display: block !important;
                text-align: center;
            }
            nav.responsive ul li {
                margin: 1px 0;
            }
            #icono-nav {
                display: block;
            }
            #inicio .contenido .presentacion h2 {
                width: 100%;
                font-size: 30px;
            }
            
             #inicio .contenido .presentacion .descripcion{
                width: 100%;
                font-size: 16px;
            }
            /* seccion SOBRE MI */
            #sobremi {
                padding: 10px 0;
                display: block;
                
            }
          #sobremi .contenedor-foto {
    max-width: 500px;
    margin: 50px auto;
    width: 100%;
}

#sobremi .contenedor-foto img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}
            #sobremi .sobremi .titulo-seccion {
                text-align: center;
            }
          #sobremi .sobremi h2 {
                font-size: 25px;
                text-align: center;
            }
            
            /* seccion MIS SERVICIOS */
            #servicios {
                padding: 50px 15px;
            }
            #servicios .fila {
                display: block;
            }
            #servicios .fila .servicio {
                margin: 10px auto;
            }
            /* seccion HABLIDADES MI */
            .contenedor-skills {
                padding: 50px 20px;
            }
            /* seccion PORTFOLIO */
            #portfolio {
                padding: 50px 0;
            }
            #portfolio .fila {
                display: block;
            }
            #portfolio .fila .proyecto {
                margin: 10px auto;
            }
            /* seccion CONTACTO */
            #contacto {
                padding: 50px 15px;
            }
            #contacto .contenedor-form .mitad {
                margin-bottom: 15px;
                display: block;
            }
            #contacto .contenedor-form .mitad input {
                width: 100%;
                margin-bottom: 15px;
            }
            #identidad .contenido .presentacion .descripcion {
        margin: 10px 15px;
        font-size: 18px;
        text-align: center;
    }
        }
       
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
          }
          
          .header {
            background-color: #007bff;
            color: white;
            padding: 15px;
            text-align: center;
            position: relative; /* Arreglado: 'flex' no es un valor válido para position */
          }
          
          .menu-btn {
            position: absolute;
            left: 15px;
            top: 15px;
            font-size: 24px;
            cursor: pointer;
            display: block; /* El display dinámico se debe manejar con JS/React, no en CSS */
          }
          
          /* El menú desplegable */
          .dropdown {
            display: none; /* Se muestra dinámicamente con clases JS o React */
            flex-direction: column;
            background-color: white;
            border-top: 1px solid #ccc;
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            z-index: 1000;
          }
          
          .dropdown a {
            padding: 15px;
            text-decoration: none;
            color: #333;
            border-bottom: 1px solid #eee;
          }
          
          .dropdown a:hover {
            background-color: #f1f1f1;
          }
          
          /* Oculta el menú hamburguesa en pantallas más grandes */
          @media (min-width: 600px) {
            .menu-btn {
              display: none;
            }
            .dropdown {
              display: none !important; /* Este display aún será sobreescrito dinámicamente en JS/React si se quiere mostrar */
            }
          }
          
          
         #chat-widget {
  position: fixed;
  bottom: 80px;    /* distancia desde el borde inferior */
  right: 20px;     /* distancia desde el borde derecho */
  width: 320px;
  max-height: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: none;   /* se activa con JavaScript */
  flex-direction: column;
  z-index: 10000;
}



  #chat-header {
    background: #4a90e2;
    color: white;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
  }

  #chat-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f9f9f9;
  }

  #messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
  }

  #messages .message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 75%;
    word-wrap: break-word;
  }

  #messages .user {
    background: #4a90e2;
    color: white;
    align-self: flex-end;
  }

  #messages .bot {
    background: #e1e1e1;
    color: #333;
    align-self: flex-start;
  }

  #chat-form {
    display: flex;
    border-top: 1px solid #ccc;
  }

  #chat-input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    outline: none;
  }

  #chat-form button {
    background: #4a90e2;
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  #chat-form button:hover {
    background: #357ABD;
  }

  #chat-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4a90e2;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    z-index: 10000;
    transition: background 0.3s ease;
  }

  #chat-toggle-btn:hover {
    background: #357ABD;
  }

  @keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }
        