/* Estilos generales */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

header {
    background-color: #1da334;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffab00;
}

.logo-img {
    height: 50px; /* Altura ajustable según necesidad */
    width: auto; /* Ancho ajustable según necesidad */
    margin-right: 10px; /* Espacio adicional para el texto */
}

.hero-content {
    text-align: center;
    padding: 100px 0;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color: #ffab00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e69500;
}

/* Servicios Section */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;

}

.service {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
 
}

.service i {
    font-size: 2rem;
    color: #1da334;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service h3 i {
    margin-right: 5px;
}

.service p {
    font-size: 1rem;
}

/* Ubicaciones Section */




.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.location {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.location i {
    font-size: 2rem;
    color: #1da334;
    margin-bottom: 10px;
}

.location h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.location h3 i {
    margin-right: 5px;
}

.location p {
    font-size: 1rem;
}

/* Contacto Section */

form {
    margin-top: 40px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form .btn {
    background-color: #1da334;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form .btn:hover {
    background-color: #ffab00;
}

/* Footer */

footer {
    background-color: #1da334;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
    position: relative;
}

footer p {
    margin: 0;
}

/* Media Queries */

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }
}
