@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --accent-1: #dc3545; /* Vermelho Principal */
    --accent-2: #e04e5d; /* Vermelho Suave */
    --bg-start: #ffffff; /* Gradiente de Fundo (Rosa/Vermelho Claro) */
    --bg-end: #ebf4fa; 
    --glass: rgba(255, 255, 255, 0.9); /* Fundo dos Cards (Quase Opaco) */
    --glass-nav: rgba(255, 255, 255, 0.1); /* Transparência da Navbar */
    --muted: #6b6b6b;
    --color-dark: #222;
    --font-primary: 'Poppins', sans-serif;
    --header-height: 70px;
    /* --color-6:#eb8829;
    --color-2:#cf4619;
    --color-5:#5a9e4b; */
    --color-4:#933d37;
    --color-5:#32aae0;
    --color-6:#3a3762;
}

/* ========================================================================= */
/* 1. RESET / BASE                          */
/* ========================================================================= */
*{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; /* Animação nativa de scroll */
}

html,body{height:100%}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    color: var(--color-dark);
    padding-top: var(--header-height); /* Espaço para o header fixo */
    overflow-x:hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
}

p.lead, .nota-geral {
    color: var(--muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Container para centralizar conteúdo */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 40px 15px; /* Garante padding em mobile */
    text-align: center; /* Centraliza títulos e parágrafos */
    background: linear-gradient(135deg, var(--bg-end), var(--glass));
    & span{
        color: var(--color-5);
    }
}
.bg-light {
    background: var(--glass); 
}

/* ========================================================================= */
/* 2. NAVBAR (Header Fixo)                         */
/* ========================================================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    backdrop-filter: blur(8px);
    /* background: var(--glass-nav); */
    background-color: var(--glass);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 20px;
    height: 100%;
}

.logo {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--color-5);
    text-transform: uppercase;
    z-index: 1001; 
}

.main-nav ul {
    list-style: none;
    display: flex; 
    gap: 20px;
    margin: 0;
    color: var(--color-dark);
}

.main-nav a {
    /* color: var(--color-dark); */
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    /* border: 1px solid var(--color-5); */
}

.main-nav a:hover {
    background: var(--color-6);
    color: var(--glass);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    color: var(--accent-1);
    z-index: 1001;
}

/* ========================================================================= */
/* 3. BOTÕES                                  */
/* ========================================================================= */
.btn-reserva{
    background-color: var(--color-5);
    width: 400px;
    height: 50px;
    border-radius: 20px;
    font-size: 18px;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 12px 22px;
    display: inline-block;
    font-weight: bold;
}
.btn-reserva:hover{
    background-color: var(--color-6);
}
.btn-reserva-rota{
    background-color: var(--color-6);
    width: 300px;
    height: 50px;
    border-radius: 13px;
    font-size: 18px;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 12px 22px;
    display: inline-block;
    color: var(--glass);
    font-family: var(--font-primary);
    font-weight: bold;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-2);
    transform: translateY(-3px);
    opacity: 0.95;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #20b555;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.6);
}

.btn-full-width {
    width: 100%;
    margin-top: 15px;
}


/* ========================================================================= */
/* 4. HERO SECTION                              */
/* ========================================================================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    box-shadow: 0px 10px 10px var(--color-5);
    overflow: hidden;
}

/* Imagem de fundo */
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

/* Conteúdo central */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 0.8s ease both;
    max-width: 600px;
    width: 90%;
}

/* Título */
.hero h1 {
    font-size: 3em;
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Parágrafo */
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* ========= RESPONSIVIDADE ========= */

/* Telas grandes (monitores e notebooks grandes) */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 700px;
        padding: 50px;
    }
    .hero h1 {
        font-size: 3.5em;
    }
    .hero p {
        font-size: 1.3em;
    }
}

/* Tablets (entre 768px e 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero {
        padding: 60px 30px;
    }
    .hero-content {
        max-width: 550px;
        padding: 35px;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .btn-reserva {
        width: 300px;
        height: 45px;
        font-size: 16px;
    }
}

/* Celulares (até 767px) */
@media (max-width: 767px) {
    .hero {
        min-height: 80vh;
        padding: 50px 15px;
    }
    .hero-content {
        padding: 25px 20px;
        max-width: 90%;
        border-radius: 14px;
    }
    .hero h1 {
        font-size: 1.9em;
    }
    .hero p {
        font-size: 1em;
    }
      .btn-reserva {
        width: 90%;
        max-width: 260px;
        height: 45px;
        font-size: 15px;
        border-radius: 15px;
    }
}

/* Celulares muito pequenos (até 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 10px;
    }
    .hero-content {
        padding: 20px;
    }
    .hero h1 {
        font-size: 1.6em;
    }
    .hero p {
        font-size: 0.95em;
    }
    .btn-reserva {
        width: 100%;
        height: 42px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* ====== Animação suave ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ========================================================================= */
/* 5. SOBRE NÓS                                 */
/* ========================================================================= */
#sobre {
    text-align: center;
}
.cont{
    width: 100%;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
    padding-top: 20px;
}
.titulo{
    width: 900px;
    & h2{
        text-align: left;
    }
}
.about-content p {
    text-align: center;
}
.about-content img {
    /* width: 100%;
    max-width: 400px; */
    width: 260px;
    height: 260px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ========================================================================= */
/* 6. QUARTOS                                 */
/* ========================================================================= */

.carousel-wrapper {
  position: relative;
  overflow: visible;
  max-width: 1100px;
  margin: 0 auto;
}
.carousel-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background: var(--color-6);
  opacity: 80%;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 50;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
  background: var(--color-5);
}

.carousel-btn.prev {
  left: 0px;
}
.carousel-btn.next {
  right: 0px;
}

.quartos-carousel {
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    gap: 30px;
    overflow: hidden; /* ← Remove a scrollbar completamente */
    scroll-behavior: smooth;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}


.quarto-card {
    min-width: 280px; 
    max-width: 280px;
    flex-shrink: 0; 
    background: var(--glass);
    padding-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.quarto-slider-container {
    position: relative;
    width: 100%;
    height: 200px; 
    overflow: hidden; 
}

.quarto-images-wrapper {
    display: flex; 
    width: 100%; 
    height: 100%;
    transition: transform 0.3s ease-in-out; 
}

.quarto-images-wrapper img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    flex-shrink: 0; 
}

/* Estilo dos Botões do Slider de Imagens */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    font-size: 0.8em;
}

.slider-prev {
    left: 10px;
}
.slider-next {
    right: 10px;
}
.slider-prev:hover, .slider-next:hover {
    background: var(--color-5);
}

.quarto-card:hover {
    transform: translateY(-5px); 
}

.quarto-card h3 {
    text-align: left;
    padding: 15px 20px 0;
    color: var(--color-6);
    font-size: 1.4em;
}

.quarto-card p {
    text-align: left;
    padding: 15px 20px 0;
    color: var(--accent-1);
    font-size: 1.4em;
}

.quarto-card .preco {
    font-size: 1.5em;
    font-weight: 700;
    padding: 0 20px 10px;
    color: var(--color-dark);
}

.quarto-card .comodidades {
    list-style: none;
    padding: 0 20px 15px;
}
.quarto-card .comodidades li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.quarto-card .comodidades i {
    color: var(--color-6);
    margin-right: 8px;
}

.quarto-card .tag-destaque {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-5);
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 15;
}


/* ========================================================================= */
/* 7. SERVIÇOS                                */
/* ========================================================================= */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.servico-item {
    background: var(--glass);
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.servico-item:hover {
    transform: translateY(-3px);
}

.servico-item i {
    color: var(--color-6);
    margin-bottom: 15px;
    font-size: 2.5em;
}

.servico-item p {
    font-size: 0.9em;
    color: var(--color-dark);
}
.servico-item h4{
    color: var(--color-5);
}


/* ========================================================================= */
/* 8. AVALIAÇÕES                              */
/* ========================================================================= */
#avaliacoes .carousel-container {
    position: relative; /* Essencial para posicionar os botões */
    max-width: 700px; /* Limita a largura do card na tela */
    margin: 30px auto; /* Centraliza o container */
}

.nota-geral i {
    color: var(--color-6);
    font-size: 1.1em;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

.depoimento-slide {
    background: white; 
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin: 0 50px; 
    display: none; 
}

.depoimento-slide.active {
    display: block;
}

.depoimento-slide blockquote {
    font-style: italic;
    margin: 10px 0;
    font-size: 1.1em;
    color: var(--color-dark);
}

.depoimento-slide cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--muted);
    font-style: normal;
    margin-top: 15px;
}

.estrelas {
    color: var(--color-6);
    font-size: 1.5em;
    margin-bottom: 5px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    font-size: 1.2em;
}

.carousel-prev {
    left: 0;
}
.carousel-next {
    right: 0;
}
.carousel-prev:hover, .carousel-next:hover {
    background: var(--color-6);
}


/* ========================================================================= */
/* 9. GALERIA                                 */
/* ========================================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-item:hover img {
    transform: scale(1.03);
}


/* ========================================================================= */
/* 10. LOCALIZAÇÃO                             */
/* ========================================================================= */
.localizacao-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    min-height: 300px; /* Garante altura mínima para o mapa */
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.local-info p {
    /* background-color: #1ebe5d; */
    text-align: center;
    color: var(--muted);
}
.local-info i {
    color: var(--accent-1);
    margin-right: 5px;
}



/* ========================================================================= */
/* 11. RESERVAS e 12. CONTATO - Formulários            */
/* ========================================================================= */
.form-section h2 {
    margin-bottom: 30px;
}
.form-section form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

/* Estilo para inputs (comum a reservas e contato) */
.form-group input, .form-group select, .form-group textarea, 
.contact-form input, .contact-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15); /* Borda um pouco mais visível */
    width: 100%; 
    font-family: var(--font-primary);
    background-color: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Aplica o estilo de card principal ao formulário de reservas */
#reserva-form {
    background: var(--glass);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 650px;
    margin: 0 auto 30px;
}

/* NOVO: Estilos para a seção de Contato */
.contact-grid-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.contact-card {
    background: var(--glass);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card h3 {
    text-align: left;
    color: var(--accent-1);
    margin-bottom: 20px;
}

.contact-info {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info p {
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-dark);
}

.contact-info p i {
    color: var(--accent-1);
    margin-right: 8px;
    font-size: 1.1em;
}

/* Ajuste para o formulário de contato */
#contact-form {
    padding: 0; /* O padding já está no .contact-card */
    margin: 0; 
}

.social-links {
    text-align: center;
    margin-top: 25px; 
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05); 
}
.social-links a {
    color: var(--color-6);
    font-size: 1.8em;
    transition: color 0.2s;
}
.social-links a:hover {
    color: var(--color-5);
}


/* ========================================================================= */
/* 13. RODAPÉ                                 */
/* ========================================================================= */
footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-info h3 {
    color: var(--color-5);
    text-align: left;
    margin-bottom: 15px;
}

.footer-info p {
    text-align: left;
    font-size: 0.9em;
    color: #ccc;
}
.footer-info p i {
    color: var(--color-6);
    margin-right: 5px;
}

.footer-links h4, .footer-legal h4 {
    color: var(--color-5);
    text-align: left;
    margin-bottom: 10px;
}
.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
}
.footer-links a, .footer-legal a {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.2s;
}
.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom small {
    font-size: 0.8em;
    color: #999;
}
.social-links-footer a {
    color: #ccc;
    font-size: 1.2em;
    margin-left: 15px;
    transition: color 0.2s;
}
.social-links-footer a:hover {
    color: var(--color-6);
}
.faleconosco {
  width: 100%;
  min-height: 600px;
  padding: 40px 0;
}

.faleconosco-container {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

/* ===== CAIXAS ===== */
.informacao,
.faleconosco-contato {
  background-color: #ffffff;
  border: 1px solid #cccccc5e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  width: 500px;
  height: 450px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

/* ===== INFORMAÇÕES ===== */
.informacao-container {
  width: 80%;
  height: 80%;
  display: grid;
  justify-content: center;
  align-items: center;
}

.informacao h3 {
  color: var(--color-5);
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.informacao-container p i {
  color: var(--color-6);
  font-size: 24px;
}

.info {
  width: 80%;
  text-align: left;
  margin-bottom: 15px;
}

/* ===== FORMULÁRIO ===== */
.contato-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contato-titulo {
  width: 95%;
  height: 40px;
  font-size: 24px;
  margin-bottom: 10px;
}

.contato-titulo h3 {
  font-family: var(--font-primary);
  color: #dc3545;
  text-align: center;
}

.contato-info {
  width: 95%;
  height: auto;
}

.form-info {
    /* background-color: #20b555; */
  font-family: var(--font-primary);
  text-align: center;
  margin-bottom: 10px;
  & label{
    margin-right: 310px;
  }

}

.form-info input,
.form-info textarea {
  width: 90%;
  border-radius: 5px;
  border: 1px solid rgba(39, 39, 39, 0.137);
  transition: 0.3s;
  padding: 8px;
}

input:hover,
textarea:hover {
  border-color: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}
/* fim contato */

/* Inicio Standard */

/* fim Standard */

/* ===== BOTÃO ===== */
.btn-primary {
  background-color: #dc3545;
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  width: 90%;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #b52a37;
}

/* flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Tooltip */
.whatsapp-tooltip {
  background: #1ebe5d;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 8px;
  position: absolute;
  bottom: 75px;
  right: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Animação de pulsação */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsivo */
@media (max-width: 600px) {
  .whatsapp-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

/* flutuante / fim */
/* ===== RESPONSIVIDADE ===== */

/* --- Telas grandes (PCs e notebooks grandes) --- */
@media (max-width: 1200px) {
  .informacao,
  .faleconosco-contato {
    width: 45%;
    height: auto;
  }
}

/* --- Tablets (entre 768px e 1024px) --- */
@media (max-width: 1024px) {
  .faleconosco-container {
    flex-direction: column;
    align-items: center;
  }

  .informacao,
  .faleconosco-contato {
    width: 80%;
    height: auto;
  }

  .informacao h3,
  .contato-titulo h3 {
    font-size: 22px;
  }
}

/* --- Celulares (até 767px) --- */
@media (max-width: 767px) {
  .faleconosco {
    padding: 20px 0;
  }

  .faleconosco-container {
    flex-direction: column;
    gap: 20px;
  }

  .informacao,
  .faleconosco-contato {
    width: 90%;
    height: auto;
  }

  .informacao h3,
  .contato-titulo h3 {
    font-size: 20px;
  }

  .form-info input,
  .form-info textarea {
    width: 95%;
  }

  .btn-primary {
    width: 95%;
  }
}

/* infor-quarto */
.quarto {
    background-color: var(--bg-end);
    margin-top: 5px;
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.quarto-container {
    border-radius: 20px;
    border: 2px solid rgba(117, 117, 117, 0.404);
    width: 95%;
    max-width: 1200px;
    background-color: var(--glass, rgba(255, 255, 255, 0.05));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* ===== BLOCO DE FOTOS ===== */
.quarto-fotos {
    position: relative;
    width: 50%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(117, 117, 117, 0.404);
    overflow: hidden;
}

/* Imagem principal */
/* =========================
   BLOCO GERAL
   ========================= */
.quarto {
  background-color: var(--bg-end);
  margin-top: 5px;
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.quarto-container {
  border-radius: 20px;
  border: 2px solid rgba(117, 117, 117, 0.404);
  width: 95%;
  max-width: 1200px;
  background-color: var(--glass, rgba(255, 255, 255, 0.05));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  overflow: visible; /* Corrigido: antes cortava o conteúdo */
  height: auto;      /* Corrigido: evita sumir o conteúdo */
}

/* =========================
   BLOCO DE FOTOS
   ========================= */
.quarto-fotos {
  position: relative;
  width: 50%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(117, 117, 117, 0.404);
  overflow: hidden;
}

.quarto-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quarto-image img {
  width: 80%;
  height: 380px;
  border-radius: 12px;
  object-fit: cover;
}

/* Botões laterais */
.quarto-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 2;
}

.quarto-btn:hover {
  background-color: var(--color-6);
}

.quarto-btn[aria-label="Foto anterior"] {
  left: 10px;
}
.quarto-btn[aria-label="Próxima foto"] {
  right: 10px;
}

/* Miniaturas */
.minifotos {
    /* background-color: #1ebe5d; */
    display: grid;
    overflow-x: auto;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 5px;
    margin-top: 10px;
    width: 90%;
    justify-content: center;
    place-items: center;
}

.minifotos img.active {
  border-radius: 10px;
  opacity: 0.9;
  transform: scale(1.05);
  transition: 0.2s;
}

.minifotos img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: 0.2s;
  /* object-fit: contain; */
}

.minifotos img:hover {
  opacity: 0.8;
}

.cont-mini {
  margin-bottom: 5px;
  width: 50px;
  height: 50px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cont-mini img {
  max-width: 100%;
  max-height: 100%;
  /* object-fit:contain; */
  display: block;
}

.cont-mini:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* =========================
   BLOCO DE INFORMAÇÕES
   ========================= */
.quarto-informacao {
  width: 50%;
  padding: 25px;
  box-sizing: border-box;
  height: auto; /* Corrigido */
  position: relative;
}

.informacao-titulo {
  height: auto;
}

.informacao-titulo h2 {
  margin: 10px;
  text-align: left;
  font-size: 1.8rem;
}

.informacao-conteudo {
  width: 100%;
  margin-top: 15px;
  height: auto;
}

.informacao-conteudo h1 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.informacao-info li {
    list-style: none;
  text-align: left;
  margin-left: 25px;
  font-size: 1rem;
}

.info-btn {
  height: auto;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   RESPONSIVIDADE
   ========================= */

/* ≥1200px (desktop grande) */
@media (min-width: 1200px) {
  .quarto-fotos img {
    height: 420px;
  }
}

/* ≤992px (notebooks e tablets grandes) */
@media (max-width: 992px) {
  .quarto-fotos {
    width: 55%;
    min-height: 350px;
  }

  .quarto-informacao {
    width: 45%;
    padding: 20px;
  }

  .informacao-titulo h2 {
    font-size: 1.6rem;
  }

  .informacao-conteudo h1 {
    font-size: 1.3rem;
  }

  .informacao-info h3 {
    margin-left: 15px;
    font-size: 0.95rem;
  }
}

/* ≤768px (tablets verticais) */
@media (max-width: 768px) {
  .quarto-container {
    flex-direction: column;
    align-items: center;
  }

  .quarto-fotos,
  .quarto-informacao {
    width: 100%;
    border-right: none;
  }

  .quarto-fotos {
    min-height: 300px;
  }

  .quarto-image img {
    width: 90%;
    height: 300px;
  }

  .informacao-titulo h2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .informacao-conteudo h1 {
    text-align: center;
    font-size: 1.2rem;
  }

  .informacao-info h3 {
    text-align: center;
    margin-left: 0;
    font-size: 0.95rem;
  }
}

/* ≤576px (celulares médios) */
@media (max-width: 576px) {
  .quarto {
    padding: 25px 0;
  }

  .quarto-fotos {
    min-height: 260px;
  }

  .quarto-image img {
    width: 95%;
    height: 240px;
  }

  .informacao-titulo h2 {
    font-size: 1.3rem;
  }

  .informacao-conteudo h1 {
    font-size: 1.1rem;
  }

  .informacao-info h3 {
    font-size: 0.9rem;
  }
}

/* ≤480px (celulares pequenos) */
@media (max-width: 480px) {
  .quarto {
    padding: 20px 0;
  }

  .quarto-fotos {
    min-height: 220px;
  }

  .quarto-image img {
    height: 200px;
  }

  .informacao-titulo h2 {
    font-size: 1.15rem;
  }

  .informacao-conteudo h1 {
    font-size: 1rem;
  }

  .informacao-info h3 {
    font-size: 0.85rem;
  }

  .info-btn {
    margin-top: 20px;
  }
}

/* infor-quarto / fim */


/* ========================================================================= */
/* 14. ANIMAÇÕES                              */
/* ========================================================================= */
@keyframes fadeIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.hero-content, .quarto-card, .servico-item, .contact-card, #reserva-form {
    animation: fadeIn .5s ease both;
}


/* ========================================================================= */
/* 15. RESPONSIVIDADE                         */
/* ========================================================================= */

/* --- Mobile (até 900px) --- */
@media (max-width: 900px) {
    /* Navbar */
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        right: 20px; 
        width: 250px;
        background: white; 
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        border-radius: 10px; 
        padding: 10px 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        padding: 10px 20px;
        color: var(--color-dark); 
        width: 100%;
        display: block;
    }
    .main-nav a:hover {
        background: var(--bg-start);
        color: var(--accent-1);
    }

    .menu-toggle {
        display: block;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5em;
    }

    /* Formulários (Reserva e Contato) */
    .form-group.half-width {
        width: 100%;
    }
    .contact-grid-container {
        grid-template-columns: 1fr; /* Volta para uma coluna */
    }

    /* Rodapé */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom small {
        margin-bottom: 10px;
    }
    .social-links-footer {
        margin-top: 10px;
    }
    .social-links-footer a:first-child {
        margin-left: 0;
    }
    
    .footer-grid > div {
        text-align: center;
    }
    .footer-info h3, .footer-links h4, .footer-legal h4 {
        text-align: center;
    }
    .footer-info p, .footer-links a, .footer-legal a {
        text-align: center;
    }
    .footer-links ul, .footer-legal ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* --- Tablet e Desktop (a partir de 768px) --- */
@media (min-width: 768px) {
    /* Sobre Nós */
    .about-content {
        flex-direction: row; 
        text-align: left;
    }
    .about-content p {
        text-align: left;
    }
    .about-content img {
        margin-left: 30px;
    }
    .about-text {
        flex-grow: 1;
    }

    /* Localização */
    .localizacao-content {
        flex-direction: row;
        gap: 40px;
        text-align: left;
    }
    .local-info {
        max-width: 300px;
        align-self: center;
        & i{
            color: var(--color-2);
        }
    }
    .local-info p{
        text-align: left;
    }
    .local-info a{
        font-size: 16px;
        width: 100%;
    }

    /* Formulário de Reserva: 2 colunas */
    .form-group.half-width {
        width: calc(50% - 10px); /* 10px é o espaço entre eles */
    }

    /* Contato: Layout de 2 colunas */
    .contact-grid-container {
        grid-template-columns: 1fr 1.5fr; 
        align-items: start;
    }
    .contact-card.form-card {
        order: 2; /* Coloca o formulário na segunda coluna */
    }
    .contact-card.info-card {
        order: 1; /* Coloca as infos na primeira coluna */
    }
    .contact-card h3 {
        text-align: left;
    }
    .contact-info p {
        text-align: left;
    }
    .social-links {
        justify-content: flex-start;
    }
}
/* Para telas menores que 768px (celulares) */
@media (max-width: 767px) {
    /* Sobre Nós */
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-content p {
        text-align: center;
    }
    .about-content img {
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
    }
    .about-text {
        flex-grow: 0;
    }

    /* Localização */
    .localizacao-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 10px; /* Ajusta espaçamento lateral */
    }
    .local-info {
        max-width: 100%;
        align-self: center;
    }
    .local-info i {
        color: var(--color-2);
    }
    .local-info p {
        text-align: center;
    }
    .local-info a {
        display: inline-block;  /* Garante que o botão respeite width */
        width: 100%;            /* Ocupa toda a largura disponível */
        text-align: center;     /* Centraliza o texto do botão */
        font-size: 16px;        /* Ajusta tamanho da fonte */
        padding: 10px;          /* Dá espaçamento interno */
        box-sizing: border-box; /* Garante que padding não quebre a largura */
        margin-top: 10px;       /* Espaço acima do botão */
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.lightbox-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border: none;
    /* padding: 10px 20px; */
    cursor: pointer;
    border-radius: 50px;
    user-select: none;
}

#prev-btn { left: 20px; }
#next-btn { right: 20px; }

.lightbox-btn:hover {
    background: rgba(0,0,0,0.8);
}