@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Prata&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sevillana&family=Truculenta:opsz,wght@12..72,100..900&display=swap');

*{
    margin: 0;
   padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Roboto", sans-serif;
}
main{
    text-align: center;
    width: 98%;
    margin: 60px auto 0px;
    
}

main p{
    text-align: justify;
    width: 94%;
    max-width: 900px;
    margin: auto;
    font-weight: 300;
}
section{
    width: 95%;
    margin: auto;
    position: relative;
}
.section-mapa{
    width: 100%;
}
.section-mapa img{
    width: 100%;
}
.cabanas{
    position: absolute;
    top: 15%;
    left: 10%;
}
.cabanas a{
    font-size: 1em;
}

.botones-filtro-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-filtro {
    border-radius: 8px;
    background-color: #047857;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-filtro:hover {
    background-color: #065f46;
}
.btn-filtro:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #10b981;
}

/* Contenedor Grid de Cards */
.grid-cabanas {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    justify-items: center;
    gap: 24px;
}
@media (min-width: 640px) {
    .grid-cabanas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-cabanas {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Estilos de la Card */
.card-hospedaje {
    width: 100%;
    max-width: 280px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.card-hospedaje-img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}
.card-hospedaje-body {
    padding: 16px;
}
.card-hospedaje-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.375;
    letter-spacing: -0.025em;
    color: #0f172a;
}
.card-hospedaje-text {
    margin-top: 8px;
    font-size: 14px;
    color: #334155;
}
.card-hospedaje-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

/* Botones dentro de la Card */
.btn-card-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #047857;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-card-primary:hover {
    background-color: #065f46;
}
.btn-card-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background-color: #10b981;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-card-whatsapp:hover {
    background-color: #059669;
}
.btn-card-whatsapp svg {
    height: 16px;
    width: 16px;
}

/* Modal Overlay y Contenedor */
.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 16px;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    position: relative;
    width: 100%;
    max-width: 512px;
    border-radius: 16px;
    background-color: #ffffff;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Modal Close Button */
.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    height: 32px;
    width: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #475569;
    transition: all 0.2s;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.modal-close-btn:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

/* Modal Elementos */
.modal-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 16px;
}
.modal-img {
    height: 224px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.modal-text {
    margin-top: 16px;
    font-size: 14px;
    color: #334155;
}
.modal-text-sm {
    margin-top: 4px;
    font-size: 14px;
    color: #334155;
}
.modal-list {
    margin-top: 12px;
    list-style-type: disc;
    padding-left: 24px;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}
.modal-list li {
    margin-top: 6px;
}

/* Modal Botones */
.btn-modal-whatsapp {
    margin-top: 16px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background-color: #10b981;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
    text-decoration: none;
}
.btn-modal-whatsapp:hover {
    background-color: #059669;
}
.btn-modal-whatsapp svg {
    height: 20px;
    width: 20px;
}

.btn-modal-web {
    margin-top: 12px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background-color: #047857;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
    text-decoration: none;
}
.btn-modal-web:hover {
    background-color: #065f46;
}

/* Footer Custom */
.footer-custom {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}
.footer-custom p {
    margin: 8px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.footer-custom strong {
    color: #0f172a;
    font-size: 16px;
}

/* Info Turistas */
.info-turistas {
    margin: 40px auto 0;
    width: 100%;
    max-width: 768px;
    border-radius: 12px;
    border-left: 4px solid #047857;
    background-color: #ffffff;
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.info-turistas p {
    margin-top: 8px;
}
.info-title {
    font-weight: 600;
    color: #0f172a;
    margin-top: 0 !important;
}
.info-highlight {
    font-weight: 600;
    color: #0f172a;
}

 /*-----------------845--------------
 @media (min-width: 845px) {

                        
}
            
    --------------------*/       
            









