/* ===== Reset e Fontes ===== */
body.sunset-page {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* ===== Header ===== */
header.header {
  padding: 1rem 2rem;
  background-color: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .navmenu ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

header .navmenu ul li a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

header .navmenu ul li a.active,
header .navmenu ul li a:hover {
  color: #0d6efd;
}

.header-social-links a {
  color: #333;
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.header-social-links a:hover {
  color: #0d6efd;
}

/* ===== Hero Section ===== */
.hero {
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #c2f0f0 0%, #ffffff 100%);
}

.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #555;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}

.hero-actions .btn {
  margin-right: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #0d6efd;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #084298;
}

.btn-outline {
  border: 1px solid #0d6efd;
  color: #0d6efd;
  background: transparent;
}

.btn-outline:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Hero Image */
.hero-image img {
  border-radius: 0.75rem;
  max-width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===== Sobre / About ===== */
.about {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.about .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* ===== Serviços / Tickets ===== */
.services {
  padding: 4rem 2rem;
}

.services .service-card {
  background: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.services .service-card:hover {
  transform: translateY(-5px);
}

.services .service-card i {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.services .service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services .service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== Galeria de Atrações ===== */
.portfolio {
  padding: 4rem 2rem;
  background-color: #fff;
}

.portfolio .portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  margin-bottom: 2rem;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio .portfolio-img img {
  width: 100%;
  display: block;
  border-radius: 0.75rem;
  transition: transform 0.3s;
}

.portfolio .portfolio-card:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 0.75rem;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay i {
  color: #fff;
  font-size: 2rem;
}

/* ===== Contato ===== */
.contact {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #333;
  margin: 0.5rem 1rem;
  transition: color 0.3s;
}

.contact-line a:hover {
  color: #0d6efd;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 2rem;
  background-color: #f1f5f9;
  text-align: center;
}

.footer .social-links a {
  margin: 0 0.5rem;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer .social-links a:hover {
  color: #0d6efd;
}

/* ===== Botão Topo ===== */
#scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background-color: #0d6efd;
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  transition: background 0.3s;
}

#scroll-top:hover {
  background-color: #084298;
}

/* Gallery Section - Cards menores e mais proporcionais */
#gallery .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centraliza os cards */
  gap: 20px; /* Espaço entre os cards */
}

#gallery .col-md-4 {
  flex: 0 0 300px; /* Largura fixa de 300px por card */
  max-width: 300px;
}

.portfolio-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-card .portfolio-img {
  height: 200px; /* Altura das imagens */
  overflow: hidden;
}

.portfolio-card .portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-info {
  padding: 15px;
  text-align: center;
}
