/* ====================================================
   BASE / RESET
   ==================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1f1f1f;
  color: #fff;
}

/* ====================================================
   LAYOUT: CONTAINER E ESTRUTURA GLOBAL
   ==================================================== */
.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* ====================================================
   CABEÇALHO / HEADER
   ==================================================== */
header {
  background: #2a2a2a;
  padding: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  background: url('img/sao-paulo-hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-text {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 40px;
}

/* ====================================================
   BOTÕES
   ==================================================== */
.btn {
  background: #ccc;
  color: #1f1f1f;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
  font-family: 'Montserrat', sans-serif; /* força mesma fonte */
  border: none; /* remove borda padrão de botão */
  cursor: pointer; /* garante pointer no hover */
}

.btn:hover {
  background: #ffcc00;
  color: #000;
}

.btn:focus,
.btn:active {
  background: #ccc;
  color: #1f1f1f;
  outline: none;
}

/* ====================================================
   SEÇÃO: HIGHLIGHTS
   ==================================================== */
.highlights {
  background-color: #1f1f1f;
  padding: 60px 20px;
  text-align: center;
}

.highlights h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.highlight:hover {
  transform: scale(1.03);
  background-color: #333;
}

.highlight img,
.category-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.highlight h3 {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 10px;
}

.highlight p {
  font-size: 14px;
  color: #ccc;
}

/* ====================================================
   SEÇÃO: STAY PAGE
   ==================================================== */
.stay-intro {
  background-color: #1f1f1f;
  padding: 30px 10px 10px;
  text-align: center;
}

.stay-intro h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.stay-intro p {
  font-size: 18px;
  color: #ccc;
}

.stay-categories {
  background-color: #1f1f1f;
  padding: 30px 20px 45px;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.category-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 315px;
  text-decoration: none; /* remove sublinhado do link */
  color: inherit;        /* mantém a cor original */
}

.category-card:hover {
  transform: scale(1.03);
  background-color: #333;
}

.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.category-card h3 {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 10px;
}

.category-card p {
  color: #ccc;
  font-size: 14px;
}

/* ====================================================
   SEÇÃO: SERVICES PAGE
   ==================================================== */
.services-intro {
  background-color: #1f1f1f;
  padding: 30px 10px 10px;
  text-align: center;
}

.services-intro h1 {
  font-size: 28px;
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: #2a2a2a;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ====================================================
   RESPONSIVIDADE
   ==================================================== */
@media (max-width: 992px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-text h2 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   TRAVEL TIPS (vertical style)
   ==================================================== */
.travel-tips {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
}

.travel-tips .tip {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.travel-tips .tip:last-child {
  border-bottom: none;
}

.travel-tips h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.travel-tips h4 {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 10px;
}

.travel-tips p, 
.travel-tips ul {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

.category-card-tips {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 15px;
  min-height: fit-content;
  text-decoration: none; /* remove sublinhado do link */
  color: inherit;        /* mantém a cor original */
}

.category-card-tips p {
  margin-bottom: 20px; /* afasta o texto do botão */
}

/* Links apenas dentro dos artigos de Travel Tips */
.tip-link-hotels {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.tip-link-hotels:hover {
  color: #fff;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
  display: flex;
  flex-direction: column; /* força os cards em coluna */
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background-color: #1f1f1f;
  color: #fff;
  resize: none; /* impede redimensionamento manual */
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffcc00;
}

.category-card-email {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: fit-content;
  text-decoration: none; /* remove sublinhado do link */
  color: inherit;        /* mantém a cor original */
}

.category-card-email h3 {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 10px;
}

.category-card-email p {
  color: #ccc;
  font-size: 14px;
}

.category-card-whats {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 15px;
  min-height: fit-content;
  text-decoration: none; /* remove sublinhado do link */
  color: inherit;        /* mantém a cor original */
}

.category-card-whats h3 {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 10px;
}

.category-card-whats p {
  margin-bottom: 20px; /* afasta o texto do botão */
}