/* ============================================
   Beach Detail Pages — Luxury Theme
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A1A;
  line-height: 1.7;
  background: #FAF5EA;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

:root {
  --max-w:      960px;
  --navy:       #0B2735;
  --navy-mid:   #163E54;
  --gold:       #C9A14C;
  --gold-dark:  #8E6F2C;
  --gold-light: rgba(201,161,76,0.15);
  --pearl:      #FAF5EA;
  --pearl-deep: #F2E8D5;
  --charcoal:   #1A1A1A;
  --smoke:      #6B6B6B;
  --shadow-sm:  0 2px 8px rgba(11,39,53,0.08);
  --shadow-md:  0 8px 24px rgba(11,39,53,0.12);
  --shadow-gold:0 4px 20px rgba(201,161,76,0.28);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.header {
  background: var(--navy);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
}
.header__logo span { color: var(--gold); }
.header__back {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.header__back:hover { color: var(--gold); }

/* Breadcrumb */
.breadcrumb {
  background: var(--pearl-deep);
  border-bottom: 1px solid rgba(13,27,42,0.08);
  padding: 0.55rem 0;
}
.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--smoke);
}
.breadcrumb__inner a {
  color: var(--navy-mid);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb__inner a:hover { color: var(--gold-dark); }
.breadcrumb__sep { opacity: 0.45; font-size: 0.7rem; }
.breadcrumb__current { color: var(--charcoal); font-weight: 600; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1B5C5E 100%);
  color: #fff;
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.hero__emoji { font-size: 2.5rem; margin-bottom: 0.6rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.hero__divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.75rem 0;
  opacity: 0.4;
}
.hero__divider::before,
.hero__divider::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__divider-icon { color: var(--gold); font-size: 0.7rem; }
.hero__acesso {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.hero__rating {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.3rem;
}

/* Content */
.content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section { margin-bottom: 2.5rem; }
.section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.section p {
  font-size: 0.96rem;
  color: var(--smoke);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.section ul { list-style: none; }
.section li {
  font-size: 0.95rem;
  color: var(--smoke);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  line-height: 1.6;
}
.section li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Info Box */
.info-box {
  background: #fff;
  border-radius: 12px;
  padding: 1.4rem;
  margin: 1rem 0;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.info-box h4 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.info-box p {
  font-size: 0.9rem;
  color: var(--smoke);
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

/* Hotels */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.hotel-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pearl-deep);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.35);
}
.hotel-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.hotel-card .stars {
  font-size: 0.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.hotel-card p {
  font-size: 0.8rem;
  color: var(--smoke);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.hotel-card a {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s;
}
.hotel-card a:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

/* Acesso detail */
.acesso-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}
.acesso-item {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--pearl-deep);
}
.acesso-item__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.acesso-item h4 {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.acesso-item p { font-size: 0.8rem; color: var(--smoke); }

/* CTA */
.cta-section {
  text-align: center;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.cta-section p {
  opacity: 0.8;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.cta-section a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-section a:hover {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer a { color: var(--gold); transition: opacity 0.2s; }
.footer a:hover { opacity: 0.8; }

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.85rem; }
  .hero__emoji { font-size: 2rem; }
  .hero { min-height: 50vh; padding: 3rem 1.25rem 2.5rem; }
  .acesso-detail { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .section h2 { font-size: 1.2rem; }
  .cta-section { padding: 1.75rem 1.25rem; }
}
