* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'open sans';
    background-image: url(../img/body-bg.jpg);
    
}

.contenedor {
    padding: 60px 0;
    width: 100%;
    height: 600px;
    margin: auto;
    overflow: hidden;
}

.titulo {
    color: #642a73;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

/* Header */

header {
    width: 100%;
    height: 600px;
    background: #bc4e9c;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG1\ \(2\).jpg);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,  hsla(160, 100%, 34%, 0.664), hsla(138, 87%, 24%, 0.664)), url(../img/IMG1\ \(2\).jpg);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

nav{
    text-align: right;
    padding: 30px 50px 0 0;
}

nav > a{
    color:#fff;
    font-weight: 300;
    text-decoration: none;
    margin-right: 10px;
}

nav > a:hover{
    text-decoration: underline;
}

header .textos-header{
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.textos-header h1{
    font-size: 50px;
    color:#fff;
}

.textos-header h2{
    font-size: 48px;
    font-weight: 300;
    color:#fff;
}
.textos-header h3{
  font-size: 30px;
  font-weight: 300;
  color:#fff;
}

.wave{
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* About us */


main .sobre-nosotros {
    padding: 30px 0 60px 0; 
     
}
.contenedor-sobre-nosotros {
    display: flex;
    justify-content: space-evenly;
    width: 85%; /* ancho del contenedor */
    margin: 20px auto; /* margen superior e inferior de 40px y centrado */
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    background: -webkit-linear-gradient(to right,  hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,   hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    border: 1px solid #ddd; /* borde gris claro */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* sombra leve */ 

}

.imagen-about-us {
    width: 38%;
    padding: 20px;
}

.sobre-nosotros .contenido-textos {
    width: 900px;
    
}

.contenido-textos h3 {
    margin-bottom: 25px;
}

.contenido-textos h3 span {
    background:  hsla(138, 66%, 50%, 0.664);
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    padding: 2px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
    margin-right: 5px;  
}
.contenido-textos p {
    padding: 0px 0px 30px 15px;
    font-weight: 300;
    text-align: justify;  
}
/* cajas */

  .contenedor2 {
    width: 100%; /* ancho del contenedor */
    margin: 0px auto; /* margen superior e inferior de 40px y centrado */
    padding: 20px; /* padding interior de 20px */
    background: -webkit-linear-gradient(to right,  hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,   hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
  }
  
  .fila {
    display: flex; /* display flex para alinear las cajas */
 /* permitir que las cajas se ajusten en varias filas */
  }
  
  .caja {
    width: 30%; /* ancho de cada caja */
    margin: 20px; /* margen superior e inferior de 20px */
    padding: 20px; /* padding interior de 20px */
    background-color: #ffffff;

  }
  
  .caja h3 {
    margin-top: 0; /* quitar margen superior del título */
    text-align: center;
  
  }
  
  .caja p {
    margin-bottom: 20px; /* margen inferior del párrafo */
    text-align: center;
   
  }
  h1
  {
    text-align: center;
    color: #080808;
  }

  .signupFrm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form {
    background-color: #016311;
    width: 350px;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #0a0c11;
    width: 550px;
   
}

.title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.inputContainer {
    position: relative;
    height: 65px; /* Increased height for better label positioning */
    width: 100%;
    margin-bottom: 20px;
}

/* Style the inputs */
.input {
    background-color: #ffffff;
    color: #000000;
    height: 100%;
    width: 100%;
    border: 2px solid #000000;
    border-radius: 5px;
    font-size: 16px;
    padding: 0 10px;
    outline: none;
    z-index: 1;
    padding-top: 20px; /* Padding top to avoid overlap with label */
}

/* Styling text labels */
.label {
    position: absolute;
    top: 5px; /* Positioned above the input */
    left: 10px;
    color: #050303;  /* White text */
    font-size: 18px;  /* Larger font size */
    font-family: 'Arial', sans-serif;  /* Aesthetic font */
    transition: 0.2s ease-out; /* Smooth transition */
    z-index: 0;
    padding: 0 5px;  /* Spacing for the background */
}

.input:focus + .label,
.input:not(:placeholder-shown) + .label {
    top: -20px;
    font-size: 14px;
    color: #ffffff;
    background-color: #016311;
}

.input:focus {
    border: 2px solid #000000;
}

.submitBtn {
    display: block;
    margin-left: auto;
    padding: 10px 20px;
    border: 2px solid #000000;
    background-color: #ffffff;
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.submitBtn:hover {
    background-color: #000000;
    color: #ffffff;
}

  /* Clients */

  .contenedor3{
    width: 100%; /* ancho del contenedor */
    margin: 0px auto; /* margen superior e inferior de 40px y centrado */
    padding: 20px; /* padding interior de 20px */
    background: -webkit-linear-gradient(to right, hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,   hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
  
    
}
.titulo {
    color:  hsla(0, 0%, 4%, 0.664);
    font-size: 35px;
    text-align: center;
    margin-bottom: 60px;
}
.nom
{
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
    
}


.cards {
    width: 100%; /* ancho del contenedor */
    margin: 20px auto; /* margen superior e inferior de 40px y centrado */
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
   
}
.card-list {
    list-style: none;
    padding: 0;
}

.cards .card {
    background: #ffffff;
    display: flex;
    width: 70%;
    height: 250px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}
.card {
    margin: 20px; /* Agregamos un margen de 20px entre cada tarjeta */
    width: calc(33.33% - 40px); /* Calculamos el ancho de cada tarjeta para que se ajusten a 3 columnas */
  }
.cards .card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 60%;
    display: block;
    padding: 1px;
    
  

}

.cards .card>.contenido-texto-card {
    width: 70%;
    color: #0c0c0c;
    
}

.cards .card>.contenido-texto-card p {
    font-weight: 300;
    padding-top: 5px;
}

 
/*  nuestro servicio  */

.contenedor4
{
  padding: 90px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.about-services {
    background: #ffffff;
    padding-bottom: 40px; 
   
}

.servicio-cont {
    display: flex;
    align-items: center;
}

.servicio-ind {
    width: 30%;
    padding: 5px;
    margin: 6px;
    border: 2px solid #dbdbdb;
    border-radius: 5px;
    text-align: center;
   
}

.servicio-ind img {
    width: 100%;
    height: auto;
    border-radius: 10px;
      
}

.servicio-ind h3 {
    margin: 0px 0;
}

.servicio-ind p {
    margin-top: 20px;
   
}



/* footer */

footer {
    
    padding: 60px 0 30px 0;
    margin: auto;
    overflow: hidden;
    background: -webkit-linear-gradient(to right, hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,   hsla(160, 100%, 34%, 0.664),  hsla(138, 87%, 24%, 0.664)), url(../img/IMG2\ \(2\).jpg);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    
}

.contenedor-footer {
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    padding-bottom: 50px;
    border-bottom: 2px solid #0c0c0c;
}
.content-foo {
    text-align: center;
}

.content-foo h4 {
    color: #0a0a0a;
    border-bottom: 3px solid#080808;
    padding-bottom: 5px;
    margin-bottom: 10px;
    
}

.content-foo p {
    color: #131212;
   
}

.titulo-final {
    text-align: center;
    font-size: 24px;
    margin: 20px 0 0 0;
    color: #080808;
}