/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #208775; /* Azul */
    color: #fff;
    padding: 10px 20px;
}

.header-container {
    display: flex;
    align-items: center;
}
.logo {
    flex: 0 0 auto;
    margin-right: 20px;
}
.header-center {
    flex: 1;
    text-align: center;
}

/* Navegación */

nav {
    background-color: #333;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #208775; /* Azul */
}

.container {
    padding: 20px;
}

/* Secciones */
.section {
    margin-bottom: 40px;
}

h2 {
    border-bottom: 2px solid #208775; /* Azul */
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: #208775; /* Azul */
}

/* Tarjetas de producto y servicio */
.products, .services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    flex: 1 1 calc(33% - 40px);
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card h3 {
    margin-top: 0;
    color: #208775; /* Azul */
}

.card-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Estilos para secciones de contacto, ubicación y horario */
.contact-info, .hours, .location {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 5px 0;
    }
    
    .header-container {
    flex-direction: column;
    }
    .header-center {
    text-align: center;
    margin-top: 10px;
    }
      
}

/* Responsive para móviles */
@media (max-width: 480px) {
    header {
        padding: 10px;
    }
    .header-container {
        flex-direction: column;
        align-items: center;
    }
    .logo img {
        height: 80px;
        margin-bottom: 10px;
    }
    .header-center h1 {
        font-size: 1.5rem;
    }
    .header-center p {
        font-size: 0.9rem;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 5px 0;
    }
    .card {
        flex: 1 1 100%;
    }
    .section-img {
        width: 100%;
        height: auto;
    }
    iframe {
        width: 100%;
        height: 300px;
    }
}
