/* ========================================
   Reset e Variáveis - Baseado no Design Figma
   ======================================== */
:root {
    /* Cores principais do design - padronizadas */
    --primary-color: #171717; /* Preto acinzentado */
    --secondary-color: #D8A14ADE; /* Dourado com alpha */
    --accent-color: #C41E3A; /* Vermelho opcional */
    --dark-color: #171717; /* Preto acinzentado */
    --dark-gray: #171717; /* Preto acinzentado */
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --text-color: #1a1a1a; /* Texto escuro */
    --text-light: #666666;
    --text-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 5px 20px rgba(216, 161, 74, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    
    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Tipografia
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* ========================================
   Botões
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-slow);
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-slow);
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--secondary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========================================
   Header e Navegação - Design Escuro
   ======================================== */
.header {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
}

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

.navbar-brand h1 {
    font-size: 1.8rem;
    color: var(--secondary-color); /* Logo dourado */
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--text-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--secondary-color); /* Dourado no hover */
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
}

/* ========================================
   Hero Banner - Com Imagem de Fundo
   ======================================== */
.hero-banner {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    z-index: 0;
}

/* Remover padding padrão do hero para não criar barra branca */
.hero-banner {
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Fallback caso a imagem não carregue */
.hero-slide:not([style*="background-image"]) {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-gray) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-content .btn {
    animation: fadeInUp 1.2s ease-out 0.9s both;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.hero-content .btn:hover {
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

/* ========================================
   Seções
   ======================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   Seção Texto e Imagem
   ======================================== */
.text-image-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.text-image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-image-text h2 {
    color: var(--dark-color);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-image-text h3 {
    color: var(--dark-color);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-image-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-image-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.text-image-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.text-image-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.text-image-image:hover::before {
    opacity: 1;
}

.text-image-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.95) contrast(1.05);
}

.text-image-image:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

/* ========================================
   Destaques
   ======================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:nth-child(1) { transition-delay: 0.1s; }
.highlight-card:nth-child(2) { transition-delay: 0.2s; }
.highlight-card:nth-child(3) { transition-delay: 0.3s; }
.highlight-card:nth-child(4) { transition-delay: 0.4s; }

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold);
    border-top: 3px solid var(--secondary-color);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition-slow);
    display: inline-block;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.2) rotateY(360deg);
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.highlight-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
}

/* ========================================
   Quartos
   ======================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    position: relative;
}

.room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.room-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.room-card:nth-child(1) { transition-delay: 0.1s; }
.room-card:nth-child(2) { transition-delay: 0.2s; }
.room-card:nth-child(3) { transition-delay: 0.3s; }
.room-card:nth-child(4) { transition-delay: 0.4s; }
.room-card:nth-child(5) { transition-delay: 0.5s; }
.room-card:nth-child(6) { transition-delay: 0.6s; }

.room-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.room-card:hover::after {
    opacity: 1;
}

.room-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--dark-color);
}

.room-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
    z-index: 1;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

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

.room-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.room-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-info h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
}

.room-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color); /* Preço em dourado */
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.room-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.room-actions .btn {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.room-card-large {
    grid-column: span 1;
}

/* ========================================
   Página de Detalhes do Quarto
   ======================================== */
.room-details-page {
    padding: 5rem 0;
}

.room-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.room-details-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.room-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-details-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.room-details-header h2 {
    color: var(--dark-color);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.room-type-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.room-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.room-details-description h3,
.room-details-features h3 {
    color: var(--dark-color);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.room-details-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--light-color);
    border-radius: 5px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-item span {
    color: var(--text-color);
    font-weight: 500;
}

.room-details-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.room-details-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.room-details-actions .btn i {
    margin-right: 0.5rem;
}

.related-rooms {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.related-rooms h3 {
    color: var(--dark-color);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.no-results {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 10px;
    grid-column: 1 / -1;
}

.no-results p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ========================================
   Depoimentos
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: var(--font-display);
    color: var(--secondary-color);
    opacity: 0.1;
    line-height: 1;
    transform: rotate(-10deg);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0.2s; }
.testimonial-card:nth-child(2) { transition-delay: 0.4s; }

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-gold);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-rating span {
    margin-left: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

/* ========================================
   CTA Section - Design Escuro
   ======================================== */
/* CTA Final - sem gap inferior entre CTA e footer */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 8rem 0 3rem; /* mais respiro acima e um espaço controlado antes do rodapé */
    position: relative;
    margin: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    color: var(--light-color);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    font-weight: 300;
}

.cta-content .btn {
    margin: 0.5rem;
}

/* ========================================
   Page Header - Design Escuro
   ======================================== */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 300;
}

/* ========================================
   Filtros
   ======================================== */
.filters {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

/* ========================================
   Formulários
   ======================================== */
.reservation-content,
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.reservation-form,
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.reservation-info,
.contact-info {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.reservation-info h3,
.contact-info h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.reservation-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.reservation-info ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reservation-info ul li i {
    color: var(--secondary-color);
}

.reservation-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* ========================================
   Sobre
   ======================================== */
.about-page {
    padding: 4rem 0 5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: center;
}

.about-text h2 {
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted, #555);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-mission {
    margin-bottom: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-color, #f8f8f8);
    border-radius: 12px;
}

.about-mission h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.about-mission p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted, #555);
    line-height: 1.8;
}

.about-values h2 {
    text-align: center;
    color: var(--dark-color);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(40px) rotateY(5deg);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0) rotateY(0);
}

.value-card:hover::after {
    width: 300px;
    height: 300px;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--secondary-color);
}

.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
}

/* ========================================
   Serviços
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.services-cta h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.services-cta .btn {
    margin: 0.5rem;
}

/* ========================================
   Contato
   ======================================== */
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    min-width: 50px;
}

.contact-details h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.contact-details a {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ========================================
   Políticas
   ======================================== */
.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-section h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.policy-section h3 {
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.policy-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* ========================================
   Footer - Design Escuro
   ======================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 0; /* removido o espaço branco acima do rodapé */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color); /* Logo dourado */
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: var(--light-color);
    line-height: 1.8;
}

.footer-section a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    display: inline-block;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 0.9rem;
}

/* ========================================
   Responsive
   ======================================== */
/* ========================================
   Responsive - Tablet (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .text-image-content {
        gap: 2rem;
    }
    
    .text-image-text h2 {
        font-size: 2rem;
    }
    
    .text-image-text h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Responsive - Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    /* Sidebar móvel */
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 5rem 1.5rem 2rem;
        box-shadow: 4px 0 20px rgba(0,0,0,.4);
        transition: left .3s ease;
        z-index: 1100;
        overflow-y: auto;
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu a {
        display: block;
        padding: .85rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,.1);
        color: var(--white);
    }

    .navbar-menu a:hover,
    .navbar-menu a.active {
        color: var(--secondary-color);
    }

    .navbar-menu a.active::after {
        display: none;
    }

    /* Overlay escuro atrás da sidebar */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 1099;
    }

    .nav-overlay.active {
        display: block;
    }

    .navbar-toggle {
        display: flex;
        z-index: 1101;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-banner {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .reservation-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .text-image-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .text-image-image {
        order: -1;
        margin-bottom: 2rem;
        min-height: 300px;
    }
    
    .text-image-text h2 {
        font-size: 1.8rem;
    }
    
    .text-image-text h3 {
        font-size: 1.5rem;
    }
    
    .text-image-text p {
        font-size: 1rem;
    }
    
    .room-details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-details-image {
        height: 300px;
        order: -1;
    }
    
    .room-details-header h2 {
        font-size: 2rem;
    }
    
    .room-details-actions .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-form .btn {
        width: 100%;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Responsive - Mobile Small (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .room-card {
        margin-bottom: 1rem;
    }
    
    .room-info {
        padding: 1rem;
    }
    
    .room-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .navbar-brand h1 {
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

/* ========================================
   Animações CSS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Classes de animação */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Efeito de texto digitando */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--secondary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--secondary-color);
    }
}

/* Parallax effect */
.parallax {
    transition: transform 0.3s ease-out;
}

/* Efeito de brilho nos botões - já aplicado acima */

/* Melhorias de contraste */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85));
}

.room-image::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Efeito de hover nas imagens dos quartos */
.room-image {
    position: relative;
    overflow: hidden;
}

.room-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(212, 175, 55, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.room-card:hover .room-image::before {
    opacity: 1;
}

/* Logo image */
.logo {
    height: 48px;
    width: auto;
    display: block;
}

/* ========================================
   Destaque de Suítes (Home)
   ======================================== */
.featured-rooms {
    background-color: var(--primary-color);
    color: var(--white);
}

.featured-rooms .section-header h2,
.featured-rooms .section-header p {
    color: var(--white);
}

/* Quartos (página de listagem) */
.rooms-page {
    background-color: var(--primary-color);
}

.rooms-page .page-header h1,
.rooms-page .page-header p,
.rooms-page .section-header h2,
.rooms-page .section-header p {
    color: var(--white);
}

@media (min-width: 1025px) {
    .hero-slide {
        background-attachment: fixed;
    }
}

/* Utilitário: somente leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Padronização de tons escuros */
.header,
.footer,
.cta-section,
.featured-rooms,
.rooms-page,
.policies-page {
    background-color: var(--primary-color);
}

.navbar-menu a,
.footer {
    color: var(--text-white);
}

