


.hero h1, .hero h2 {
    margin: 0;
    padding: 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

/* Carrusel */
#lugares .carousel-item {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#lugares .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#lugares .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#lugares .card-title {
    font-size: 1.25rem;
    color: #E63946;
    font-weight: bold;
}

#lugares .btn-outline-primary {
    border-color: #E63946;
    color: #E63946;
}

#lugares .btn-outline-primary:hover {
    background-color: #E63946;
    color: #FFF;
    border-color: #E63946;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}
.card {
    border: 4px solid #F2994A; /* Naranja vibrante */
    border-radius: 20px; /* Esquinas redondeadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9); /* Sombra para resaltar */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05); /* Efecto de zoom al pasar el cursor */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.9); /* Sombra más intensa al pasar el cursor */
}
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.9); /* Sombra suave */
    height:100%;
}

.card h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #E63946;
}

.card p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.card .btn-primary {
    background-color: #F2994A; /* Naranja */
    border: none;
}

.card .btn-primary:hover {
    background-color: #6FCF97; /* Verde */
}
/* Estilo general para las tarjetas */



/* Imagen de fondo en las tarjetas */
#buscador .card-custom cards {
    height: auto;
}
.card-custom img {
    width: 100%;
    height:400px;
    object-fit: cover; /* Ajusta la imagen al tamaño de la tarjeta sin distorsión */
     border-radius: 20px 20px 0 0; /* Esquinas redondeadas solo en la parte superior */
}



/* Texto en las tarjetas */
.card-custom .overlay h5 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}

.card-custom .overlay p {
    font-size: 0.9rem;
    margin: 5px 0;
    font-family: roboto;
}

/* Botón en las tarjetas */
.card-custom .btn-primary {
    margin-top: 10px;
    background-color: #F2994A; /* Naranja */
    border: none;
}

.card-custom .btn-primary:hover {
    background-color: #E63946; /* Rojo */
}
@media (max-width: 768px) {
    #lugares .card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    #lugares .card {
        flex: 0 0 100%;
    }
}
