* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  overflow-x: hidden; /* Evita rolagem horizontal */
}
body {
  font-family: 'Poppins', sans-serif;
}

/* Carrossel */
.carousel {
  position: relative;
  width: 100%;
  height: 96vh;
  overflow: hidden;
}

.slides {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  animation: fade 1.3s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 30, 30, 0.9), rgba(0, 0, 0, 0.3));
}

.carousel-content {
  position: absolute;
  top: 65%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  z-index: 2;
  max-width: 550px;
}

.carousel-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.carousel-content .highlight {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 500;
  color: #b2d8cc;
}

.carousel-content .subtitle {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 400;
}

.btn-reserva {
  display: inline-block;
  background: linear-gradient(135deg, #ff9100, #1b9104);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
}

.btn-reserva:hover {
  background: linear-gradient(135deg, #e28a06, #003d80);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-reserva:active {
  transform: translateY(1px);
}
/* Setas */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 15px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  user-select: none;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 3;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.prev {
  left: 5px;
}

.next {
  right: 5px;
}
.hotel-container {
  background-color: #333;
  padding: 20px;
  border-radius: 0px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.hotel-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 25px;
  margin-top: 45px;
  color: #faf7f7;
}
.hotel-subtitle {
  color: #faf7f7;
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 20px;
}
.hotel-description {
  color: #faf7f7;
  text-align: center;
  font-size: 1em;
  margin-bottom: 20px;
}
.section-titulo {
  text-align: center;
  padding: 40px 20px 20px;
  margin-bottom: 50px;
  margin-top: 70px;
}

.section-titulo h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.section-titulo h2 span {
  color: #048029; /* Dourado elegante */
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 40px 60px;
 max-width: 1200px;
  margin: auto;
}

.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: #fff;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.porque-escolher-nos {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.porque-escolher-nos .titulo {
  color: #00994d;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.porque-escolher-nos .descricao {
  font-size: 1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 por linha */
  row-gap: 30px;
  column-gap: 150px;  /* Espaço horizontal menor */
  padding: 10px 200px;
  justify-items: center;
  animation: fadeSlideIn 1.5s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Aparecer suavemente */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.servico {
  background: #fff;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.servico i {
  font-size: 50px;
  color: #f59506;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.servico p {
  font-size: 0.85rem;
  color: #333;
  margin: 0;
}

/* Efeito ao passar o mouse */
.servico:hover {
  transform: scale(1.1);
}

.servico:hover i {
  transform: scale(1.3); /* aumenta o tamanho */
  animation: wiggle 0.4s ease-in-out; /* balança */
}

@keyframes wiggle {
  0%   { transform: scale(1.3) rotate(0deg); }
  25%  { transform: scale(1.3) rotate(2deg); }
  50%  { transform: scale(1.3) rotate(-2deg); }
  75%  { transform: scale(1.3) rotate(1deg); }
  100% { transform: scale(1.3) rotate(0deg); }
}
/* Fade individual para cada item com atraso */
.servico:nth-child(1) { animation-delay: 0.2s; }
.servico:nth-child(2) { animation-delay: 0.4s; }
.servico:nth-child(3) { animation-delay: 0.6s; }
.servico:nth-child(4) { animation-delay: 0.8s; }
.servico:nth-child(5) { animation-delay: 1s; }
.servico:nth-child(6) { animation-delay: 1.2s; }
.servico:nth-child(7) { animation-delay: 1.4s; }
.servico:nth-child(8) { animation-delay: 1.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
/* Setas */
.prev, .next {
 display: none;
}
.hotel-title {
  font-size: 1.8em;
  
}
.hotel-subtitle {
  font-size: 1.4em;
}
.hotel-description {
  font-size: 1em;
  line-height: 2;
  text-align: justify;
}
.servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 por linha */
  row-gap: 25px;
  column-gap: 10px;  /* Espaço horizontal menor */
  padding: 0px 0px;
  justify-items: center;
  animation: fadeSlideIn 1.5s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}
  .servico {
    width: 110px;
    height: 110px;
  }

  .servico i {
    font-size: 24px;
  }

  .servico p {
    font-size: 0.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .servicos {
    grid-template-columns: repeat(3, 1fr); /* mantém 3 por linha */
    justify-content: center; /* centraliza no container */
    justify-items: center;
  }
}
.galeria {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.galeria h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.galeria .destaque {
  color: rgb(10, 110, 49);
}

.carousel-container {
  width: 100%;
  max-width: 1000px; /* limita no desktop */
  margin: auto;
}

.main-image {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-image img {
  width: 100%;
  height: auto;
  max-height: 500px; /* limite em desktop */
  object-fit: cover; /* mantém proporção */
  border-radius: 0px;
  transition: all 0.3s ease;
}

.thumbnails {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnails::-webkit-scrollbar {
  height: 8px;
}

.thumbnails::-webkit-scrollbar-thumb {
  background: rgb(5, 78, 24);
  border-radius: 20px;
}

.miniatura {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.miniatura:hover,
.miniatura.ativa {
  opacity: 1;
  border: 2px solid goldenrod;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
  .main-image img {
    max-height: 400px;
  }
  .miniatura {
    width: 100px;
    height: 65px;
  }
}

@media (max-width: 768px) {
  .main-image img {
    max-height: 300px;
  }
  .miniatura {
    width: 90px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .main-image img {
    max-height: 220px;
  }
  .miniatura {
    width: 70px;
    height: 50px;
  }
}

.restauracao-section {
  padding: 60px 20px;
  text-align: center;
  background: #000;
  margin-top: 100px;
  margin-bottom: 50px;
}

.restauracao-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
}

/* ícone decorativo acima do título */
.restauracao-title::before {
  content: "❧";
  display: block;
  font-size: 1.8rem;
  color: #ccc;
  margin-bottom: 10px;
}

.restauracao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 1200px;
  margin: auto;
}

.restauracao-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restauracao-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.restauracao-card img {
  width: 100%;
  height: 320px;
  object-fit: fill;
}

.restauracao-card-body {
  padding: 20px;
  flex-grow: 1;
}

.restauracao-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #111;
}

.restauracao-card-body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
/* --- Responsividade extra --- */
@media (max-width: 768px) {
  
  .restauracao-grid {
    display: grid;
    grid-template-columns: 1fr; /* força apenas 1 coluna */
    gap: 20px;
    width: 100%; /* ocupa toda a largura da tela */
    margin: auto;
  }
  
  .restauracao-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* opcional, centraliza */
  }

  .restauracao-card {
    width: 100%; /* ocupa toda a largura */
    max-width: 500px; /* limita largura para não ficar exagerado */
    margin-bottom: 20px; /* espaço entre os cards */
  }

  .restauracao-title {
    font-size: 1.6rem;
  }

  .restauracao-card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .restauracao-section {
    padding: 40px 15px;
  }

  .restauracao-container {
    flex-direction: column;
  }

  .restauracao-card {
    width: 100%;
    margin-bottom: 15px;
  }

  .restauracao-title {
    font-size: 1.4rem;
  }

  .restauracao-card-body h3 {
    font-size: 1rem;
  }

  .restauracao-card-body p {
    font-size: 0.9rem;
  }
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 100px;
  margin-top: 100px;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
}

.contact-info ul {
  list-style: none;
}

.contact-info ul li {
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.contact-info ul li i {
  color: #0d4419; /* cor dourada para ícones */
  font-size: 18px;
}
.map-container {
  flex: 1 1 450px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .section-titulo h2 {
    font-size: 1.4rem;
  }
  .card-content h3 {
    font-size: 1rem;
  }
  .card-content p {
    font-size: 0.85rem;
  }
  .restauracao-title {
    font-size: 1.3rem;
  }
 
}
/* Responsivo */
@media (max-width: 992px) {
  .carousel-content {
    left: 5%;
    width: 450px;
  }
  
}
@media (max-width: 768px) {
  .carousel {
    height: 65vh;
  }
  .carousel-content {
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .carousel-content h1 {
    font-size: 2rem;
    line-height: 1;
  }

  .btn-reserva {
    font-size: 14px;
    padding: 10px 20px;
  }

  .section-titulo h2 {
    font-size: 1.6rem;
  }

  .card img {
    height: 250px;
  }
  .restauracao-title {
    font-size: 1.6rem;
  }
  
.main-image img {
  width: 100%;
  max-width: 800px;
  height: 200px; /* Altura fixa para uniformizar */
  object-fit: fill; /* Corta o excesso mantendo proporção */
  border-radius: 0px;
  transition: all 0.3s ease;
}
  .contact-section {
    flex-direction: column;
    padding: 20px;
  }
  .map-container {
    width: 100%;
    height: 300px;
  }
}
/* Animação de fade */
@keyframes fade {
  from { 
    opacity: 0.4; 
  }
  to { 
    opacity: 1;
  }
}


