html {
    font-family: monospace;
}

body {
    margin: 0;
}

.navbar {
    background-color: white;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    white-space: nowrap;
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    white-space: nowrap;
    justify-content: center;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: black;
    text-decoration: none;
    padding: 8px 12px;
    transition: background-color 0.3s;
    font-size: 20px;
    border-radius: 10px;
}

nav ul li a:hover {
    background-color: #54545470;
    border-radius: 10px;
}

.hero {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
    background-color: #f4f4f4;
    gap: 20px;
    justify-content: center;
}

.hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    margin: 5px;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.cta-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.5rem;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #555;
    transform: scale(1.2);
    transition: 0.3s;
}

.square {
    width: 70%;
    background-color: #f4f4f4;
}

.square img {
    border-radius: 50px;
    width: 100%;
    object-fit: fill;
}

.second-hero {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
    background-color: #ffffff;
    gap: 20px;
    justify-content: center;
}

.second-hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.second-hero-content h1 {
    margin: 0;
    font-size: 2.8rem;
    text-align: center;
    color: #000000;
}

.second-square {
    width: 70%;
    background-color: #ffffff;
}

.second-square img {
    border-radius: 50px;
    width: 100%;
    object-fit: fill;
}

.cta-button-2 {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.5rem;
    transition: 0.3s;
}

.cta-button-2:hover {
    background-color: #555;
    transform: scale(1.2);
    transition: 0.3s;
}

.services-hero {
    background-color: #f4f4f4;
    display: flex;
    flex: row;
    padding: 10px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.service-content {
    padding: 10px;
    background-color: #c1c0c0;
    margin: 15px;
    border-radius: 25px;
    transition: 0.3s;
}

.service-content:hover { 
    transition: 0.3s;
    transform: scale(1.1); 
}

.service-content img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
}

.service-content p {
    text-align: center;
    font-size: 2rem;
    color: #333;
}

.service-content a {
    text-decoration: none;
}

.service-title {
    text-align: center;
    font-size: 2.5rem;
}

.services-gallery {
    width: 100%;
    align-items: center;
    justify-items: center;
}

.services-gallery-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    filter: drop-shadow(0 0 0.75rem #636363);
}

.service-item {
    margin: 15px; 
    background-color: #545454;
    color: white;
    text-align: center;
    font-size: 1.5rem; 
    border-radius: 15px;
    width: 250px;
    height: 300px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-radius: 10px; 
    object-position: center bottom; 
}

.contact-hero {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #f4f4f4;
}

.contact-title h1 {
    color: black;
    padding-top: 20px;
    text-align: center;
    font-size: 2.5rem;
    width: 100%;
}

.contact-info {
    display: flex;
    flex: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: rgb(145, 145, 145);
}

.contact-form iframe {
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    height: 1300px;
    border: none;
}

.contact-data {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.contact-data a {
    text-decoration: none;
    color: inherit;
}

.contact-data p:hover {
    text-decoration: none;
    color: inherit;
    background-color: #000;
    color: white;
    transition: 0.3s;
}

.contact-data p {
    background-color: #b0b0b0;
    text-align: center;
    font-size: 2rem;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s;
}

.map {
    height: 300px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    filter: drop-shadow(0 0 0.75rem #636363);
}

.careers-hero {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 40px;
    background-color: #f4f4f4;
    gap: 20px;
    justify-content: center;
}

.careers-textbox {
    width: 100%;
    background-color: #545454ce;
    border-radius: 25px;
}

.careers-bg img {
    width: 100%;
    border-radius: 25px;
}

.careers-text {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 10px;
}

@media (max-width: 850px) {
    .careers-hero {
        flex-wrap: wrap;
    }
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-contact, .footer-legal {
    flex: 1;
    min-width: 100px; 
    margin: 10px;
}

.footer-contact h2, .footer-legal h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-contact p, .footer-legal p {
    font-size: 1.5rem;
    margin: 5px 0;
}

.footer-contact a, .footer-legal a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover, .footer-legal a:hover {
    color: #ddd; /* Color de texto al pasar el ratón */
}

.footer-bottom {
    text-align: center;
    padding: 10px 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}