:root {
    /* Cores principais */
    --primary-color: #556B2F;
    --secondary-color: #E2E8D5;
    --accent-color: #7C9043;
    --text-color: #333;
    --light-bg: #F5F7F0;
    --white: #fff;
    --dark: #3A4A28;
    --success: #556B2F;

    /* Gradientes */
    --gradient-start: rgba(85, 107, 47, 0.85);
    --gradient-end: rgba(124, 144, 67, 0.75);
    --gradient-white: linear-gradient(to top, var(--white), transparent);
    --gradient-weather: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-overlay: rgba(0, 0, 0, 0.5);

    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, .2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .15);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);

    /* Transições */
    --transition-base: all .3s ease;
    --transition-slow: all .5s ease;
    --transition-modal: all .3s ease-in-out;

    /* Z-index */
    --z-modal: 1000;
    --z-overlay: 999;
    --z-nav: 998;
    --z-trigger: 997;
    --z-gallery-nav: 2;

    /* Bordas */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 25px;
    --border-radius-full: 50px;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 4rem;

    /* Tamanhos de fonte */
    --font-size-sm: 0.9rem;
    --font-size-base: 1rem;
    --font-size-md: 1.1rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-size-huge: 3rem;

    /* Larguras máximas */
    --max-width-md: 800px;
    --max-width-lg: 1200px;
    --max-width-xl: 1400px;

    /* Alturas */
    --gallery-height: 600px;
    --room-gallery-height: 300px;

    /* Opacidades */
    --opacity-overlay: 0.5;

    /* Cores adicionais */
    --border-color: #eee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Tipografia e elementos básicos */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all .3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Classes utilitárias */
.section-padding {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grids e Layouts */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Cards e elementos de conteúdo */
.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform .3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-info {
    padding: 1.5rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.room-features span {
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.room-price {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
}

/* Formulários */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all .3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(124, 144, 67, 0.1);
}

/* Seções */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.section-title p {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Links e interações */
.place-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
}

.place-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Estados e animações */
.active {
    opacity: 1;
    visibility: visible;
}

.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* ===== BANNER DE NATAL ===== */
.christmas-banner {
    background: linear-gradient(135deg, #0f4d0f 0%, #1a5928 25%, #c41e3a 75%, #8b0000 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #FFD700;
}

.christmas-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: snow 20s linear infinite;
    pointer-events: none;
}

@keyframes snow {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.christmas-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.christmas-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.christmas-title {
    font-size: 2.5rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.christmas-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.christmas-message {
    font-size: 1rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.christmas-decorations {
    font-size: 1.5rem;
    margin: 1rem 0;
    letter-spacing: 10px;
    animation: twinkle 1.5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Responsivo */
@media (max-width: 768px) {
    .christmas-banner {
        padding: 1.5rem 1rem;
    }
    
    .christmas-icon {
        font-size: 2rem;
    }
    
    .christmas-title {
        font-size: 1.8rem;
    }
    
    .christmas-subtitle {
        font-size: 1.1rem;
    }
    
    .christmas-message {
        font-size: 0.9rem;
    }
    
    .christmas-decorations {
        font-size: 1.2rem;
        letter-spacing: 5px;
    }
}
.about-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.about-contact-link {
    font-size: 1.6rem;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.about-contact-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Tooltip para mostrar informação de contacto */
.about-contact-link::after {
    content: attr(aria-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    font-weight: 500;
}

/* Seta do tooltip */
.about-contact-link::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.about-contact-link:hover::after,
.about-contact-link:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Cores específicas para cada ícone */
.about-contact-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.about-contact-link:has(.fa-facebook-f):hover {
    background: #1877f2;
}

.about-contact-link:has(.fa-phone):hover {
    background: #34c759;
}

.about-contact-link:has(.fa-envelope):hover {
    background: #ff3b30;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-contacts {
        gap: 1rem;
    }
    
    .about-contact-link {
        width: 34px;
        height: 34px;
        font-size: 1.4rem;
    }
    
    /* Ajustar tooltip para mobile */
    .about-contact-link::after {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .about-contact-link {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    /* Em telas muito pequenas, mostrar tooltip em cima */
    .about-contact-link::after {
        bottom: auto;
        top: calc(100% + 10px);
    }
    
    .about-contact-link::before {
        bottom: auto;
        top: calc(100% + 4px);
        border-top-color: transparent;
        border-bottom-color: rgba(0, 0, 0, 0.9);
        transform: translateX(-50%) rotate(180deg);
    }
}