* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100px;
    background-color: #000000;
    padding: 0 5%;

}
nav .logo { 
    float: left;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #fff;
}
nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
nav .links li {
font-family: monospace;
    list-style: none;
}
nav .links a {

    display: block;
    padding: 1em;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    position: relative;
}
nav .links a:hover {
    color: white;
}
nav .links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}
nav .links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
    color: white;
}
#nav-toggle {
     position: absolute;
     top: -100px;
}
nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}
nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}
@media screen and (max-width: 768px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0, 0, 0, .8);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    nav .links a {
        font-size: 15px;
    }
    nav :checked ~ .links {
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}























/* Estilo del header */
.header-imagen {
    position: relative;
    
    height: 85vh; /* Mantiene la imagen grande */
    background-image: url(../img/Banner\ Horizontal.jpg);
    background-position: center;
    background-size: 105%; /* Asegura que la imagen cubra todo el banner */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(111, 64, 64);
    text-align: center;
}

@media (max-width: 768px) {
    .header-imagen {
        height: 50vh; /* Ajusta la altura en pantallas más pequeñas */
    }
    
    
    
}
@media (max-width: 576px) {
    .header-imagen {
        height: 50vh; /* Ajusta la altura en pantallas más pequeñas */
    }

}
@media (max-width: 576px) {
    .header-imagen {
        height: 40vh; /* Ajusta la altura en pantallas más pequeñas */
    }

}



/* Capa oscura para mejorar la legibilidad del texto */


/* Contenido del header */
.contenido-header {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.titulo {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transform: translateY(10px); /* Sube el texto 20px */
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
}

.subtitulo {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transform: translateY(10px); /* Sube el texto 20px */
    color: #000000;

    font-size: 1.3rem;
    font-weight: 300;
    animation: fadeIn 3s ease-in-out;
}

/* Animación de opacidad */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Estilo responsivo */
@media (max-width: 1200px) {
    .titulo {
        font-size: 1.5rem;
    }

    .subtitulo {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .titulo {
        font-size: 1.5rem;
    }

    .subtitulo {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .titulo {
        font-size: 0.8rem;
    }

    .subtitulo {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .titulo {
        font-size: 0.70rem;
    }

    .subtitulo {
        font-size: 0.8em;
    }
}


.boton-deslizar {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transform: translateY(130px); /* Sube el texto 20px */
    display: inline-block;
    background-color: rgb(80, 48, 48);
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s;
    animation: fadeIn 2s ease-in-out;

  }
  
  .boton-deslizar:hover {
    background-color: #333;
  }









































/* Estilo del subencabezado */
.subencabezado {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;    
    
    text-align: center;
    background-color: #000000;
    padding: 40px 20px;
}

.subencabezado h2 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;    
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.subencabezado p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;    

    font-size: 1rem;
    color: #fffefe;
}

/* Sección de servicios */
.servicios {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0px 0px;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.915),
        rgba(255, 255, 255, 0.864)), 
        url(../img/text.jpg);
}


.servicio {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background-color: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.servicio:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Imagen de cada servicio */
.imagen-servicio {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.servicio:hover .imagen-servicio {
    transform: scale(1.1);
}

/* Títulos y descripciones */
.servicio h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.servicio p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-size: 1rem;
    color: #666;
}

.servicio ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

/* Estilo responsivo */
@media (max-width: 992px) {
    .servicios {
        flex-direction: column;
        align-items: center;
    }

    .servicio {
        width: 80%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .servicio {
        width: 90%;
    }

    .servicio h3 {
        font-size: 1.4rem;
    }

    .servicio p {
        font-size: 0.9rem;
    }

    .imagen-servicio {
        width: 170px;
        height: 170px;
    }
}




















/* Sección 'Why Choose Us' */
.why-choose-us {
    padding: 50px 20px;
}

.why-choose-us h2 {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000000;
}

.why-choose-us p {
    text-align: center;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 50px;
}

/* Estilos de las características (features) */
.features {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background-color: #1c1c1c;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 30%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Iconos */
.icon {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.icon img {
    width: 50px;
    height: 50px;
}

/* Títulos y descripciones de las características */
.feature h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature p {
    font-size: 1rem;
    color: #ccc;
}

/* Estilo responsivo */
@media (max-width: 992px) {
    .feature {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .feature {
        width: 100%;
    }
}













.testimonial-section {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.674),
        rgba(13, 13, 13, 0.859)), 
        url(../img/pexels-photo-7210754.jpeg);
}

.testimonial-heading {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    color: #000000;
}

.testimonial-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
}

.testimonial-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 400px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 15px;
}

.quote-icon img {
    width: 30px;
    height: 30px;
}

.testimonial-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.testimonial-position {
    font-size: 14px;
    color: #999;
}

.testimonial-section h2 {
    font-size: 35px;
    color: #fff;
  
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-box {
        width: 80%;
        margin: 20px 0;
    }
}

.stars {
    font-size: 24px;
    color: #f57c00; /* Color de las estrellas */
}










.testimonial-container, .testimonial-box, .testimonial-section {
    margin-bottom: 0;
    padding-bottom: 0;
}
    
    
    
    
    
    
    
    


.contact {
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(
        rgba(167, 165, 165, 0.371),
        rgba(225, 225, 225, 0.737)), 
        url(../img/pexels-photo-7210754.jpeg);
    background-size: cover;
  }
  .contact .content {
    max-width: 800px;
    text-align: center;
  }
  .contact .content h2 {
    font-size: 36px;
    font-weight: 500;
    color: #000000;
  }
  .contact .content p {
    font-weight: 300;
    color: #000000;
  }
  .container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  .container .contactInfo {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .container .contactInfo .box {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    position: relative;
    padding: 20px 0;
    display: flex;
  }
  .container .contactInfo .box .icon {
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
  }
  .container .contactInfo .box .text {
    display: flex;
    margin-left: 20px;
    color: #fff;
    font-size: 16px;
    flex-direction: column;
    font-weight: 300;
  }
  .container .contactInfo .box .text h3 {
    font-weight: 500;
    color: #000000;
  }
  .contactForm {
    width: 40%;
    padding: 40px;
    background: #fff;
  }
  .contactForm h2 {
    font-size: 30px;
    color: #333;
    font-weight: 500;
  }
  .contactForm .inputBox {
    position: relative;
    width: 80%;
    margin-top: 10px;
  }
  .contactForm .inputBox input,
  .contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
  }
  .contactForm .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
  }
  .contactForm .inputBox input:focus ~ span,
  .contactForm .inputBox input:valid ~ span,
  .contactForm .inputBox textarea:focus ~ span,
  .contactForm .inputBox textarea:valid ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
  }
  .contactForm .inputBox input[type="submit"] {
    width: 100px;
    background: #000000;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
  }
  @media (max-width: 991px) {
    .contact {
      padding: 50px;
    }
    .container {
      flex-direction: column;
    }
    .container .contactInfo {
      margin-bottom: 40px;
    }
    .container .contactInfo,
    .contactForm {
      width: 100%;
    }
  }
































  .footer{
        background:#000000;
        padding:10px 0px;
        font-family: 'Play', sans-serif;
        text-align:center;
        }
        
        .footer .row{
        width:100%;
        margin:1% 0%;
        padding:0.6% 0%;
        color:gray;
        font-size:0.8em;
        }
        
        .footer .row a{
        text-decoration:none;
        color:gray;
        transition:0.5s;
        }
        
        .footer .row a:hover{
        color:#fff;
        }
        
        .footer .row ul{
        width:100%;
        }
        
        .footer .row ul li{
        display:inline-block;
        margin:0px 30px;
        }
        
        .footer .row a i{
        font-size:2em;
        margin:0% 1%;
        }
        
        @media (max-width:720px){
        .footer{
        text-align:left;
        padding:5%;
        }
        .footer .row ul li{
        display:block;
        margin:10px 0px;
        text-align:left;
        }
        .footer .row a i{
        margin:0% 3%;
        }
        }






























        .wrapper {
            background: rgb(0, 0, 0);
            height: 390px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-flow: row nowrap;
            -webkit-box-align: end;
            align-items: flex-end;
            -webkit-box-pack: center;
            justify-content: center;
            
        }
        .mainSlider {
            position: absolute;
            top: 10px;
            left: 0;
            width: 500%;
            height: auto;
            transition: left 0.4s;
            display: flex;
            flex-flow: row nowrap;
        }
        .content {
            height: 100%;
            text-align: center;
            display: flex;
            -webkit-box-flex: 1;
            flex: 1;
            flex-flow: column nowrap;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
        }
        .content h2 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 18px;
            color: #fff;
            font-family: montserrat;
        }
        .content p {

            font-size: 15px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #fff;
            margin-top: -10px;
            margin-bottom: 10px;
            max-width: 330px;
        }
        .img-area img {
            width: 100%;
        }
        .img-area {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            overflow: hidden;
            display: inline-block;
            margin-bottom: 40px;
            border: 5px solid #fff;
        }
        .dots {
            width: 12px;
            height: 12px;
            margin: 15px 10px;
            z-index: 10;
            outline: 8px solid rgb(153, 68, 68); /* Color inicial del contorno */
            outline-offset: -6px;
            cursor: pointer;
            appearance: none;
            backface-visibility: hidden;
            border-radius: 100%;
            background-color: white; /* Color inicial del fondo */
        }
        
        /* Cambiar color al estar seleccionado (checked) */
        .dots:checked {
            background-color: rgb(0, 255, 0); /* Cambiar el fondo al estar seleccionado */
            outline-color: rgb(255, 255, 255); /* Cambiar el color del contorno */
        }
        
        /* Cambiar la posición del slider cuando se selecciona cada punto */
        .dots:checked:nth-of-type(1)~.mainSlider {
            left: -33.4%;
        }
        .dots:checked:nth-of-type(2)~.mainSlider {
            left: -200%;
        }
        .dots:checked:nth-of-type(3)~.mainSlider {
            left: -366.5%;
        }
        
       
        

























        .cards-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 120vh;
        }
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 80px;
            padding: 20px;
            width: 90%;
            max-width: 1500px;
        }
        
        .card {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease-in-out;
            position: relative;
            font-size: 1.2rem;
        }
        
        .card:hover {
            transform: scale(1.01); /* Cambio de 1.1 a 1.05 para un zoom más sutil */
        }
        
        .card-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        h3 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            font-size: 1rem;
            color: #555;
        }
        
        .toggle-info {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #000000;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 22px;
            margin-top: 15px;
            width: 50px;
            height: 50px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }
        
        .more-info {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: none;
            margin-top: 20px;
            font-size: 1rem;

        }
        
        .more-info p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1rem;
            color: #333;
        }
        
        /* Responsiveness */
        @media (max-width: 1200px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        
            .card {
                padding: 20px;
            }
        
            h3 {
                font-size: 1.7rem;
            }
        
            p {
                font-size: 1rem;
            }
        }