/*
Theme Name: Hotel Imaculada
Author: [Seu Nome]
Description: Tema personalizado para o Hotel Imaculada, baseado em HTML, CSS e Tailwind CSS.
Version: 1.0
*/

/* --- CSS do index.html --- */
.hero-bg {
    background-image: url('logo1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.animate-fadeIn {
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- CSS do sobre.html --- */
.btn-custom-width {
    width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #8b5cf6, #ec4899, #ef4444);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-custom-width:hover {
    background: linear-gradient(to right, #7c3aed, #db2777, #dc2626);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- CSS do quartos.html --- */
.room-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.swiper-button-next, .swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.5rem !important;
}

/* --- CSS do contato.html --- */
.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}