/* =========================================
   1. CONFIGURAÇÕES BASE & VARIÁVEIS
   ========================================= */
:root {
    --bg-light: #f7f5f2; 
    --bg-grey: #edeae6;
    --text-dark: #1a1a1a;
    --gold: #b5a48d;
    --white: #ffffff;
    --transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Opcional: remover o contorno azul que alguns browsers metem nos links com imagens */
.logo-link {
    text-decoration: none;
    outline: none;
    display: inline-block; /* Garante que o link envolve bem a imagem */
}

.logo-link img {
    cursor: pointer;
}

body { 
    font-family: 'Montserrat', sans-serif; 
    background: var(--bg-light); 
    color: var(--text-dark); 
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* =========================================
   2. TIPOGRAFIA EDITORIAL
   ========================================= */
.section-number { 
    font-family: 'Libre Baskerville', serif; 
    font-style: italic; 
    color: var(--gold); 
    font-size: 1.5rem; 
    display: block;
    text-align: center;
}

.italic-title { 
    font-family: 'Libre Baskerville', serif; 
    font-size: clamp(2rem, 5vw, 3rem); 
    font-style: italic; 
    font-weight: 300; 
    margin: 20px 0; 
    text-align: center;
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 10px;
    text-align: center;
}

.region-description-text {
    max-width: 750px;
    margin: 60px auto 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* =========================================
   3. HEADER & NAVEGAÇÃO
   ========================================= */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 50px; background: rgba(255,255,255,0.95);
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 5%;
}

.logo { height: 60px; width: auto; object-fit: contain; }

nav a { 
    text-decoration: none; color: var(--text-dark); 
    margin-left: 30px; font-size: 0.7rem; 
    text-transform: uppercase; letter-spacing: 2px; 
    transition: 0.3s;
}

nav a:hover { color: var(--gold); }

.header-utils {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

.lang-selector a {
    text-decoration: none;
    color: #666; /* Cor mais suave para não gritar */
    transition: color 0.3s;
}

.lang-selector .active-lang {
    color: #000;
    font-weight: 600;
}

.lang-selector span {
    margin: 0 5px;
    color: #ccc;
}

.lang-selector a.active-lang, .lang-selector a:hover {
    color: var(--text-dark);
}

.lang-switch-top {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding-bottom: 2px;
}

.lang-switch-top:hover {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.hero-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: 1; filter: brightness(0.95);
}

.hero-container {
    position: relative; z-index: 2; width: 100%; max-width: 1200px;
    padding: 0 5%; display: flex; justify-content: center;
}

.hero-content {
    max-width: 600px; padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #fff; text-align: center;
}

.hero-label {
    text-transform: uppercase; letter-spacing: 0.3em;
    font-size: 0.85rem; font-weight: 600; display: block;
    margin-bottom: 1.2rem; color: #fff;
    text-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-dark); margin-bottom: 20px; font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem; color: #444; margin-bottom: 40px;
    font-weight: 300; line-height: 1.6;
}

.hero-cta {
    display: inline-block; margin-top: 2.5rem; padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1); color: #000; text-decoration: none;
    font-family: 'Montserrat', sans-serif; font-weight: 500;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em;
    border-radius: 2px; transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8); backdrop-filter: blur(5px);
}

.hero-cta:hover { background: #fff; color: var(--gold); }

/* =========================================
   5. A CASA & ALOJAMENTO (MOSAICO)
   ========================================= */
.casa-gallery-section { padding: 120px 5%; background-color: var(--white); }
.casa-intro { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.casa-description { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; font-weight: 300; }

.casa-mosaic { display: flex; gap: 15px; }

.mosaic-item { position: relative; overflow: hidden; background: var(--bg-grey); }
.mosaic-item img { transition: transform var(--transition); display: block; width: 100%; height: 100%; object-fit: cover; }
.mosaic-item:hover img { transform: scale(1.05); }

/* =========================================
   SECÇÃO EXPERIÊNCIAS
   ========================================= */
.experiencias-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.experiencias-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.experiencias-description {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
}

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.exp-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.exp-card:hover {
    transform: translateY(-10px);
}

.exp-image {
    height: 250px;
    overflow: hidden;
}

.exp-image img {
    transition: transform 1.5s ease;
}

.exp-card:hover .exp-image img {
    transform: scale(1.1);
}

.exp-content {
    padding: 30px;
}

.exp-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.exp-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.exp-content strong {
    color: var(--gold);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .experiencias-section {
        padding: 60px 0;
    }
}

/* =========================================
   6. REGIÃO & TAROUCA
   ========================================= */
.region-section { padding: 120px 0; }
.grey-bg { background-color: var(--bg-grey); }
.explore-header { text-align: center; margin-bottom: 80px; }

.tarouca-mosaic { margin-top: 60px; display: flex; flex-direction: column; gap: 20px; }
.mosaic-top-split { display: flex; gap: 20px; height: 600px; }
.mosaic-top-split .mosaic-item.vertical { flex: 1.2; }
.mosaic-top-split .mosaic-item.large { flex: 2; }
.mosaic-bottom-trio { display: flex; gap: 20px; height: 350px; }
.mosaic-bottom-trio .mosaic-item { flex: 1; }

.grid-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.grid-bottom-trio { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

.region-card { 
    display: flex; align-items: center; gap: 80px; 
    margin-bottom: 120px; max-width: 1400px; 
    margin-left: auto; margin-right: auto; padding: 0 5%; 
}
.region-card.reverse { flex-direction: row-reverse; }
.region-img { flex: 1.3; height: 500px; overflow: hidden; box-shadow: 15px 15px 0px var(--white); }
.region-img img { transition: var(--transition); }
.region-card:hover .region-img img { transform: scale(1.05); }
.region-info { flex: 1; }
.region-info h3 { font-family: 'Libre Baskerville', serif; font-size: 2.5rem; margin-bottom: 20px; font-weight: 400; }

.douro-highlight { margin-top: 50px; padding: 0 5%; }
.douro-img-container { position: relative; width: 100%; height: 600px; overflow: hidden; }
.douro-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s ease; }
.douro-img-container:hover img { transform: scale(1.05); }
.douro-overlay-text {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px; background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white); text-align: center;
}
.douro-overlay-text p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; font-weight: 300; letter-spacing: 1px; }

/* =========================================
   7. CAMINHO DOS MONGES
   ========================================= */
.monges-section { background-color: var(--white); padding: 100px 0 0 0; }
.monges-intro { text-align: center; margin-bottom: 60px; padding: 0 5%; }

.monges-split { display: flex; height: 80vh; gap: 5px; }
.monges-img-fw { flex: 1; position: relative; overflow: hidden; transition: var(--transition); }
.monges-img-fw:hover { flex: 1.3; }

.monges-caption { position: absolute; bottom: 30px; left: 30px; color: white; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px; }
.monges-caption span { display: block; font-size: 0.6rem; opacity: 0.7; margin-bottom: 5px; }

.monges-mosaic-container { display: flex; flex-direction: column; gap: 10px; padding: 0 10px; }
.monges-main-row { display: flex; gap: 10px; height: 600px; }
.monges-secondary-row { display: flex; gap: 10px; height: 400px; }
.monges-secondary-row .monges-item { flex: 1; }

.monges-item { overflow: hidden; position: relative; background: var(--bg-grey); }
.monges-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; display: block; }
.monges-item:hover img { transform: scale(1.05); }
.monges-item.large { flex: 2; }
.monges-item.side { flex: 1; }

.monges-text-full { padding: 100px 15%; text-align: center; line-height: 2; font-weight: 300; font-size: 1.1rem; margin-top: 60px; }

.monges-mosaic-adaptive { display: flex; flex-direction: column; gap: 15px; padding: 0 5%; max-width: 1400px; margin: 0 auto; }
.monges-row { display: flex; gap: 15px; }
.landscapes .monges-item { flex: 1; aspect-ratio: 3 / 2; }
.mixed .portrait { flex: 1; aspect-ratio: 2 / 3; }
.mixed .landscape-focus { flex: 2; aspect-ratio: 3 / 2; }

/* =========================================
   8. RESERVAS & CONTACTO
   ========================================= */
.booking-section { padding: 120px 5%; background: var(--white); text-align: center; border-top: 1px solid #eee; }
.booking-section-clean { padding: 100px 5%; background: #fff; }

.booking-intro { font-size: 1.1rem; color: #666; margin-bottom: 80px; font-weight: 300; max-width: 800px; margin-left: auto; margin-right: auto; }

.booking-grid-layout {
    display: grid;
    grid-template-columns: 450px 200px 300px;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    justify-content: center;
}

.col-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 4px; color: var(--gold);
    margin-bottom: 55px; display: block;
}

.small-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; text-transform: uppercase;
    color: #999; letter-spacing: 1px;
    display: block; margin-bottom: 5px;
}

.contact-value {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem; font-style: italic;
    color: var(--text-dark); text-decoration: none;
    transition: 0.3s;
}
.contact-value:hover { color: var(--gold); }

.platforms-list { display: flex; flex-direction: column; }

.btn-platform-link, .btn-booking {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0; text-decoration: none;
    color: var(--text-dark); font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 2px; border-bottom: 1px solid #eee;
    transition: 0.3s ease;
}
.btn-platform-link:hover, .btn-booking:hover { color: var(--gold); border-bottom-color: var(--gold); padding-left: 10px; }

/* Contact Cards Extras */
.direct-contact-large { display: flex; flex-direction: column; gap: 25px; margin-top: 20px; }
.contact-card {
    display: flex; align-items: center; gap: 20px; padding: 20px;
    background: #fdfdfd; border: 1px solid #eee; text-decoration: none; color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border-radius: 4px;
}
.contact-card:hover { background: #fff; transform: translateX(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--gold); }
.contact-icon { font-size: 2.5rem; color: #444; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: #f9f9f9; border-radius: 50%; transition: color 0.3s ease; }
.contact-card:hover .contact-icon { color: var(--gold); background: #fff; }
.contact-info { display: flex; flex-direction: column; }
.contact-info .small-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: #888; margin-bottom: 4px; }
.contact-info .contact-value { font-size: 1.1rem; font-weight: 500; font-family: 'Montserrat', sans-serif; }

/* Awards Section */
.awards-row { display: flex; justify-content: center; align-items: center; gap: 40px; margin: 40px auto 60px auto; max-width: 900px; flex-wrap: wrap; }
.award-badge { transition: transform 0.3s ease; }
.award-badge:hover { transform: scale(1.03); }
.award-badge.booking { width: 25%; max-width: 180px; min-width: 140px; }
.award-badge.airbnb { width: 60%; max-width: 500px; min-width: 300px; }
.award-badge img { width: 100%; height: auto; filter: grayscale(10%); transition: filter 0.3s ease; }
.award-badge:hover img { filter: grayscale(0%); }

/* =========================================
   9. FULLCALENDAR (OTIMIZAÇÃO BOUTIQUE)
   ========================================= */
.booking-col-calendar { width: 100%; max-width: 450px; display: block; overflow: visible !important; }

#calendar-luxury { font-family: 'Montserrat', sans-serif; opacity: 0; transition: opacity 0.6s ease; height: auto !important; }
#calendar-luxury.is-ready { opacity: 1; }

.fc-theme-standard td, .fc-theme-standard th, .fc-theme-standard .fc-scrollgrid, .fc-day-today { border: none !important; background: transparent !important; }

.fc .fc-toolbar-title { font-family: 'Montserrat', sans-serif; font-size: 1rem !important; letter-spacing: 5px; text-transform: uppercase; font-weight: 500; color: var(--gold) !important; }
.fc .fc-button-primary { background: none !important; border: none !important; color: #bbb !important; box-shadow: none !important; transition: color 0.3s; }
.fc .fc-button-primary:hover { color: var(--gold) !important; }

.fc-col-header-cell-cushion { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; color: #999 !important; text-transform: uppercase; letter-spacing: 1px; text-decoration: none !important; }

/* Prevenção de Scroll e Layouts Quebrados */
.fc-scroller, .fc-scroller-harness { overflow: visible !important; height: auto !important; }
.fc-daygrid-day { position: relative; height: auto !important; min-height: 65px !important; }

/* Limpar Barras do Airbnb / Ocultar Eventos Padrão */
.fc-daygrid-event-harness, .fc-event, .fc-event-title, .fc-event-time { display: none !important; }

/* Dias e Lógica de Bolinhas */
.fc-daygrid-day-number { font-family: 'Montserrat', sans-serif; font-weight: 300; color: var(--text-dark); font-size: 0.9rem; padding: 12px !important; text-decoration: none !important; display: block; width: 100%; text-align: center; position: relative; z-index: 5; }
.fc-daygrid-day-number::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background-color: #2ecc71; transition: background 0.3s ease; }
.fc-daygrid-day.is-occupied .fc-daygrid-day-number::after { background-color: #e74c3c !important; }
.fc-day-other { opacity: 0.2; }
.fc-day-past .fc-daygrid-day-number::after { background-color: #ddd; }

/* =========================================
   10. FOOTER
   ========================================= */
footer { background-color: #000; color: #fff; padding: 80px 40px; border-top: 1px solid #111; }
.footer-container-horizontal { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-column-logo { flex: 0 0 300px; }
.footer-main-illustration { width: 100%; height: auto; display: block; filter: brightness(1.1); }
.footer-column-text { flex: 1; text-align: left; }
.footer-column-text .label { display: block; color: #d4af37; text-transform: uppercase; letter-spacing: 3px; font-size: 0.7rem; margin-bottom: 15px; }
.footer-column-text h2 { font-size: 1.8rem; margin: 0 0 5px 0; color: #fff; }
.footer-column-text p { color: #ccc; font-size: 0.9rem; line-height: 1.6; margin: 0; }
.footer-column-text .italic-title { text-align: left !important; margin-left: 0 !important; margin-right: auto !important; display: block; }
.footer-tagline { color: #888 !important; font-size: 0.8rem !important; letter-spacing: 1px; }
.footer-bottom-wide { max-width: 1300px; margin: 60px auto 0 auto; padding-top: 30px; border-top: 1px solid #111; text-align: center; font-size: 0.75rem; color: #444; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.footer-illustration { width: 120px; height: auto; margin-bottom: 10px; opacity: 0.9; transition: opacity 0.3s ease; }
.footer-illustration:hover { opacity: 1; }

/* Utilitários */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================
   11. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================= */
/* Tablet & Desktop Pequeno */
@media (max-width: 1100px) {
    .footer-container-horizontal { flex-direction: column; text-align: center; gap: 40px; }
    .footer-column-text { text-align: center; }
    .footer-column-logo { flex: 0 0 250px; }
}

@media (min-width: 900px) {
    .casa-mosaic { height: 600px; }
    .mosaic-item.large { flex: 2; }
    .mosaic-column { flex: 1; display: flex; flex-direction: column; gap: 15px; }
    .mosaic-item.vertical { flex: 1; }
}

/* Tablet & Mobile Avançado */
@media (max-width: 1024px) {
    .booking-grid-layout { grid-template-columns: 1fr; gap: 40px; padding: 0 10px; text-align: center; overflow-x: hidden; width: 100%; }
    .booking-col-calendar { max-width: 100%; margin: 0 auto; }
    #calendar-luxury { width: 100% !important; }
    .fc-daygrid-day { min-height: 50px !important; }
    .fc-daygrid-day-number { font-size: 0.8rem !important; padding: 8px 0 !important; }
    .fc-daygrid-day-number::after { bottom: 4px; width: 3px; height: 3px; }
    .fc .fc-toolbar-title { font-size: 0.9rem !important; letter-spacing: 2px; }
    .platforms-list, .booking-col.info { text-align: center; align-items: center; }
    .btn-platform-link { max-width: 100%; justify-content: center; gap: 15px; }
    .col-label { margin-bottom: 30px; }
}

@media (max-width: 900px) {
    .casa-mosaic { flex-direction: column; height: auto; }
    .mosaic-column { display: flex; flex-direction: row; gap: 10px; }
    .mosaic-item { width: 100%; }
    .mosaic-item.large img { aspect-ratio: 4/3; height: auto; }
    .mosaic-column .mosaic-item img { aspect-ratio: 1/1; height: auto; }
    .mosaic-item.vertical img { aspect-ratio: 3/4; height: auto; }
    
    .mosaic-top-split, .mosaic-bottom-trio { flex-direction: column; height: auto; }
    .mosaic-top-split .mosaic-item, .mosaic-bottom-trio .mosaic-item { height: 350px; }
    .mosaic-bottom-trio:has(> :last-child:nth-child(2)) { display: grid; grid-template-columns: 1fr 1fr; }
    
    .douro-img-container { height: 400px; }
    .douro-overlay-text { position: relative; background: var(--text-dark); padding: 30px 20px; }
    
    .monges-main-row, .monges-secondary-row { flex-direction: column; height: auto; }
    .monges-item { height: 350px; }
    .monges-text-full { padding: 60px 8%; }
}

/* Mobile Standard */
@media (max-width: 768px) {
    .nav-container { padding: 10px 5%; }
    .menu-toggle { display: flex; margin-left: auto; z-index: 10000; position: relative; }
    nav { display: none; }
    
    .nav-menu { display: flex !important; position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: #ffffff !important; flex-direction: column; justify-content: center; align-items: center; gap: 40px; transition: right 0.4s ease-in-out; z-index: 9999; }
    .nav-menu.active { right: 0 !important; }
    .nav-menu a { display: block !important; color: #1a1a1a !important; font-size: 1.5rem !important; text-decoration: none !important; text-transform: uppercase; letter-spacing: 3px; opacity: 1 !important; visibility: visible !important; }
    
    .lang-switch-top { font-size: 0.75rem; }
    .lang-selector { margin-left: 0 !important; margin-top: 20px; justify-content: center; }
    
    .hero-content { padding: 40px 20px; margin: 0 20px; }
    
    .monges-row { flex-direction: column; }
    .mixed .landscape-focus { order: -1; }
    .monges-item.landscape, .monges-item.landscape-focus { aspect-ratio: 3 / 2; }
    .monges-item.portrait { aspect-ratio: 2 / 3; max-height: 500px; }
    
    .awards-row { gap: 30px; margin: 30px auto; flex-direction: column; }
    .award-badge.booking, .award-badge.airbnb { width: 80%; max-width: 350px; }
    
    .footer-brand { align-items: center; text-align: center; }
    .footer-illustration { width: 100px; }
}

@media (max-width: 480px) {
    .contact-card { padding: 15px; }
    .contact-icon { font-size: 2rem; width: 50px; height: 50px; }
    .contact-info .contact-value { font-size: 0.95rem; }
    .contact-value { font-size: 1.1rem; }
    #calendar-luxury { font-size: 0.75rem; }
}

/* Mobile Extra Pequeno */
@media (max-width: 360px) {
    .fc-col-header-cell-cushion { font-size: 0.55rem !important; }
    .contact-value { font-size: 1rem !important; word-break: break-all; }
}

/* --- HEADER NAV --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: transparent; /* Começa transparente */
    transition: var(--transition);
}

/* Classe que podes adicionar via JS quando o scroll > 50px */
.main-header.scrolled {
    background: rgba(247, 245, 242, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(181, 164, 141, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.lang-switch {
    border-left: 1px solid var(--gold);
    padding-left: 15px;
    color: var(--gold) !important;
}

.btn-book {
    background: var(--gold);
    color: white !important;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.75rem !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: var(--transition);
    border: 1px solid rgba(181, 164, 141, 0.2);
}

.whatsapp-float svg {
    width: 20px;
    height: 20px;
    fill: var(--gold); /* Em vez de verde, usamos o teu dourado */
}

.whatsapp-float span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: var(--gold);
    color: var(--white);
}

.whatsapp-float:hover svg {
    fill: var(--white);
}

/* Esconder texto em ecrãs muito pequenos para não ocupar espaço */
@media (max-width: 480px) {
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 350px; /* Largura fixa para parecer uma bolha */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: none; /* Escondido por padrão */
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.cookie-content a {
    color: #000;
    text-decoration: underline;
    font-weight: 400;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-start;
}

.cookie-btn {
    padding: 8px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cookie-btn.accept {
    background: #000;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #444;
    transform: translateY(-1px);
}

/* Ajuste para mobile */
@media (max-width: 480px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
}

/* Fundo escurecido e desfocado */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

/* Caixa do texto */
.modal-content {
    background: #fff;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Botão de fechar */
.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.modal-text h2 { font-family: 'Libre Baskerville', serif; margin-bottom: 20px; }
.modal-text h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; margin-top: 20px; }
.modal-text p { font-size: 0.9rem; color: #555; line-height: 1.6; }