/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    background: #f8f9fa;
    padding: 20px 0;
}

.banner img {
    max-width: 1200px;
    border-radius: 10px;
	width: 100%;
}

h1, h2, h3 {
    color: #2c3e50;
}

p {
font-size: 1.3em;
text-align: center;
}
.social-icons {
    text-align: center;
    margin: 20px 0;
}

.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: #2c3e50;
}

.description, .services, .schedule, .location, .contact {
    width: 80%;
	padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
	
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.service-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}


.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.service-card img {
    max-width: 100%;
    border-radius: 5px;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.correo-btn {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000000;
    color: white;
}