@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    justify-content: center;
    width: 100%;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* .whatsapp-icon {
    background-color: #1A53E9;
    border-radius: 999%;
} */

.wsp-link img {
    width: 150px;
    height: auto;
}

.whatsapp-icon a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A53E9;
    padding: 10px 20px;
    border-radius: 25%;
    height: 40px;
    width: fit-content; /* Se ajusta al contenido sin deformarse */
    gap: 10px; /* Espacio entre el icono y el número */
}

.whatsapp-icon img {
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
}

.wsp-number {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.nav-links a:hover {
    color: #1A53E9;
}

body {
    font-family: 'holly-groove', sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: #ffffff;
}
header {
    background: #000000;
    color: #FFFFFF;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header a.logo {
    display: flex;
    align-items: center;
}
header .logo img {
    max-height: 60px;
    width: auto;
}
header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header img {
    max-height: 80px; /* Limita la altura de la imagen */
    width: auto; /* Ajusta el ancho automáticamente */
    object-fit: contain; /* Asegura que la imagen se vea correctamente */
    margin: 0 auto; /* Centra la imagen si es necesario */
    display: block; /* Garantiza el centrado si el contenedor no es flex */

}

.about-us {
    padding: 0px 20px;
    margin: 20px auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    text-align: center;

}

.section {
    padding: 40px 20px;
    margin: 20px auto;
   /* background-color: #FFFFFF; */
    border-radius: 12px;
   /* box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); */
    max-width: 1200px;
    text-align: center;
}
h2 {
    color: #1A53E9;
    text-align: center;
    margin-bottom: 20px;
}
h3 {
    color: #1A53E9;
    background-color: #DCD539;
    background-position-x: center;
    margin-top: 10px;
}
/*   .name-container {
    background-color: #000000;
    width: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
} */
p {
    line-height: 1.6;
    margin: 10px 0;
}
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.team-member {
    background-color: #1A53E9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    color: white;
    position: relative; /* Necesario para posicionar el texto */
    overflow: hidden; /* Evita que el texto se salga del div */
}
.team-member:hover {
    transform: scale(1.05);
}
.team-member img {

    width: 100%;
    max-width: 350px;
    height: 350px;
    border-radius: 0%;
    margin-bottom: -40px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #1A53E9;
    display: block;
    margin-left: auto;
    margin-right: auto;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.team-member h3 {
    color: white;
    position: relative;
    z-index: 2; /* Asegura que el texto esté sobre la imagen */
    background: rgba(0, 0, 0, 0.6); /* Fondo oscuro semitransparente */
    padding: 10px;
    margin-top: -50px; /* Superpone el texto sobre la imagen */
    display: inline-block;
    border-radius: 8px;
    font-family: poppins;
}

.team-member p {
    font-size: 13px;
    font-family: poppins;
}

footer {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
footer p {
    margin: 0;
    font-size: 0.9rem;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.title {
    font-size: 2.5em;
    font-weight: bold;
    color: #1A53E9;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card, .service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h2, .service-card h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #FF6226;
}

.card:hover, .service-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.form {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.form input, .form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.form textarea {
    height: 120px;
}

.btn {
    background: #FF6226;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #DCD539;
}

.contact-info {
    margin-top: 20px;
    font-size: 1.1em;
}

.contact-info a {
    color: #FF6226;
    font-weight: bold;
    text-decoration: none;
}

/* Sección de Nosotros */
.content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: justify;
    margin-top: 20px;
}

.text {
    max-width: 900px;
    font-size: 1.2em;
    line-height: 1.6;
}

.image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
