body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Entrada_original.png') no-repeat center center/cover;
    height: 40vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
}

.main {
    padding: 0;
}

.section {
    padding: 60px 20px;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section p, .section ul {
    font-size: 1.2rem;
}

.section:nth-of-type(1) {
    background-color:white;
	color: black;
}

.section:nth-of-type(2) {
    background-color:white;
}

.section:nth-of-type(3) {
    background-color: #28a745;
	color: white;
}

.section:nth-of-type(4) {
    background-color: white;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.business-section {
    background-color: #6c757d;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.business-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.business-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.business-section a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.business-section a:hover {
    background-color: #0056b3;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ffcc00;
}