
/* Sobre Nosotros */
#about-us {
    display: flex;
    justify-content: center;
    justify-content: space-around;
    padding-bottom: 5%;
    padding-top: 5%;
    padding-left: 5%;
}


#about-us img{
    padding-left: 100px;
    width: 200%;
    max-width: 900px;
}

@media (max-width: 1570px) {
    #about-us img{
        display: none;
    }

    #about-us {
        display: flex;
        justify-content: center;
        justify-content: space-around;
        padding-top: 5%;
        padding-bottom: 10%;
        padding-right: 5%;
        padding-left: 5%;
    }

    #about-us-container{
        padding: 0%;
    }

}

#about-us-container{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(60px);
    animation: subirTexto 1s ease-out forwards;

}

/* Animación */
@keyframes subirTexto {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


#about-us-container h2{
    /*font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: "Bebas Neue", sans-serif;   /* MODIFICACION DE LA LETRA */
    font-size: 50px;
}

#about-us-container p{
    font-family: "Yanone Kaffeesatz", sans-serif;
    font-size: 30px;
    text-align: justify;
    line-height: 1.5;
}

/* Servicios y trabajos */
#services-jobs {
    position: relative;
    background: #d6e2f0;
    height: auto;
}

.bottom-wave {
    position: relative;
    height: 60px;
    width: 100%;
    background: #d6e2f0;
    bottom: 0;
}

.bottom-wave::before, .bottom-wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50% 100%;
}

.bottom-wave::before {
    width: 55%;
    height: 100%;
    background-color: #d6e2f0;
    right: -1.5%;
    top: 40%;
}
.bottom-wave::after {
    width: 55%;
    height: 109%;
    background-color: #fff;
    left: -1.5%;
    top: 60%;
}


.top-wave {
    position: relative;
    height: 40px;
    width: 100%;
    background: #d6e2f0;
    bottom: 0;
    transform: scaleY(-1); /* Esto invierte la ola verticalmente */
}

.top-wave::before, .top-wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
}

.top-wave::before {
    width: 55%;
    height: 109%;
    background-color: #fff;
    right: -1.5%;
    top: 60%;
}

.top-wave::after {
    width: 55%;
    height: 100%;
    background-color: #d6e2f0;
    left: -1.5%;
    top: 40%;
}


#tab-services {
    display: block; 
}


.tab {
    display: flex;
    justify-content: space-around;
    align-items: start;
    background-color: #d6e2f0;
    border-radius: 5;
    padding-top: 15px;
    padding-bottom: 15px;

}

.tab button {
    background-color: inherit;
    color: #0d3c66;
    font-weight: 600;
    padding: 12px 24px;
    border: hidden;
    outline: none;
    font-size: 30px;
}

.tabcontent {
    display: none;
    width: 100%;
    padding: 20px 0;
    background-color: #d6e2f0;    
    border-radius: 5;
}

.tab button:hover {
    text-decoration: none;
}

.tab button.active {
    border-color: #000;
    color: #fff;
    background-color: #0d3c66;
    border: solid #0d3c66;
    border-width: 2px;
    border-radius: 25px;
}

.row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 25px 10%;
    gap: 20px;
}

.column{
    width: 30%;
    display: flex;
    min-width: 250px;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 300px;
    min-height: 220px; /* ✅ altura común para todas */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-sizing: border-box;
}




.card h3{
    color: #0d3c66;
    font-weight: 600;
}

.circle {
    display: grid;
    align-content: center;
    justify-items: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #0d3c66;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.circle img{
    width: 60%;
}


.btn-see-more {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms;
    overflow: hidden;
}

.btn-see-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 500ms
}


.btn-see-more:hover {
    color: #e8e8e8;
    
}

.btn-see-more:hover::before {
    width: 100%;
}

.see-more{
    display: flex;
    justify-content: end;
    gap: 20px;
    padding-right: 75px;
    padding-bottom: 20px;
}

/* CONTACTO */
.container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-around;
    align-content: center;
    padding-bottom: 30px;
}

.container-contact p{
    font-size: 25px;
}

.container-contact{
    padding-bottom: 5%;
}

#form-title{
    display: none;
}

.contact-data p{
    margin-top: 0;
    font-size: 26px;
    font-weight: 400;
    text-align: justify;
    font-family: "Yanone Kaffeesatz", sans-serif;
    line-height: 1.5;

}

.contact-data p strong{
    font-size: 26px;    
    font-family: "Barlow Condensed", sans-serif;

}

@media (max-width: 768px) {

    .container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .container-contact,
    .container-contact-form {
        width: 100%;
        padding-bottom: 10%;
    }

    #profile-data {
        flex-direction: column;
    }

    #contact-form input, select, textarea {
        font-size: 16px;
        width: 100%;
    }

    #send-button {
        width: 100%;
        padding: 1em;
        font-size: 16px;
    }

    .container-contact p {
        font-size: 20px;
    }

    #contact h2 {
        font-size: 36px;
        padding-bottom: 50px;
    }

    .form-group {
        width: 100%;
    }

    #form-title {
        display: block;
        text-align: center;
        font-size: 50px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

}

#contact{   
    padding: 100px;
}


.contact-title{
    display: flex;
    justify-content: center;
    font-size: 50px;    
    font-family: "Barlow Condensed", sans-serif;
    padding-top: 50px;
    padding-bottom: 5%;
    margin: 0%;
}

#contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


#contact-form input, select, textarea {
    
    font-size: 20px;
    font-weight: 400;
    text-align: justify;
    font-family: "Yanone Kaffeesatz", sans-serif;
    line-height: 1.5;
    
    border: none;
    padding: 16px;
    border-radius: 1rem;
    background: #e8e8e8;
    transition: 0.3s;
    box-sizing: border-box;
    width: 100%;
}




#profile-data{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group{
    display: flex;
    flex-direction: column;

}

.form-group label{
    font-size: 20px;    
    font-family: "Barlow Condensed", sans-serif;

}

.contact-details:hover{
    text-decoration: underline;
    text-decoration-color: #3B7EA1;
    text-underline-offset: 10px;
}

#send-button  {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

#send-button:hover {
    background-color: #245283;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    color: #fff;
    transform: translateY(-7px);
    
    }

#send-button:active {
    transform: translateY(-1px);
}


p{
    font-size: 25px;
 
}

h1{
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    
}

h3{
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    font-family: "Yanone Kaffeesatz", sans-serif;
    line-height: 1.5;

}

body{
    margin: 0%;
}

a{
    text-decoration: none;
    color: black;
}


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

















