/* ============================================
   CURTA NÍSIA! — Stylesheet
   curtanisia.com.br
   ============================================ */

:root {
  --ocean: #0077b6;
  --ocean-light: #00b4d8;
  --ocean-dark: #005f8a;
  --sand: #f4e4c1;
  --sand-dark: #e8c98a;
  --coral: #e76f51;
  --green: #2d9b6f;
  --green-light: #52b788;
  --text: #1a1a2e;
  --text-muted: #5a6a7a;
  --white: #ffffff;
  --bg-light: #f7fbff;
  --bg-alt: #eef6fb;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,119,182,0.10);
  --shadow-lg: 0 12px 48px rgba(0,119,182,0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 800; font-family: var(--font-body); }
p { color: var(--text-muted); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ocean);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(0,119,182,0.30);
}
.btn-primary:hover {
  background: var(--ocean-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,119,182,0.38);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.65);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* ===== NAVBAR ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
}

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,119,182,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo img { width: 140px; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.nav-links li a {
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links li a:hover { color: var(--ocean); background: var(--bg-alt); }

.btn-nav {
  background: var(--ocean) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  box-shadow: 0 3px 14px rgba(0,119,182,0.3);
}
.btn-nav:hover { background: var(--ocean-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-drone {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,20,50,0.72) 0%,
    rgba(0,60,120,0.55) 40%,
    rgba(0,180,216,0.15) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.hero-title {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--ocean-light);
}

.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* Rodrigo Hero Card */
.rodrigo-card-hero {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  min-width: 220px;
  max-width: 260px;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.rodrigo-img-hero {
  width: 130px; height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin: 0 auto 12px;
  border: 3px solid rgba(255,255,255,0.4);
}

.rodrigo-info-hero {
  color: white;
  position: relative;
}
.rodrigo-info-hero strong {
  display: block;
  font-size: 1.05rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.rodrigo-info-hero span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  display: block;
}
.rodrigo-verified {
  position: absolute; top: -52px; right: -10px;
}
.badge-sm { width: 28px; }

/* Scroll indicator */
.scroll-down {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.8;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--ocean);
  padding: 28px 32px;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat {
  text-align: center; padding: 0 40px;
  flex: 1; min-width: 140px;
}
.stat strong {
  display: block; font-size: 2rem; font-weight: 900;
  color: white; font-family: var(--font-display);
}
.stat span {
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.stat-div {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.25);
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); padding: 96px 0; }

.section-header {
  text-align: center; max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--ocean);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  border: 1px solid rgba(0,119,182,0.15);
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.section-cta { text-align: center; margin-top: 48px; }

/* ===== DESTINATION CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,119,182,0.07);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative; height: 220px; overflow: hidden;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.lagoa-bg { background: linear-gradient(135deg, #0077b6, #00b4d8, #48cae4); }
.dunas-bg { background: linear-gradient(135deg, #f4a261, #e76f51, #e9c46a); }
.falesías-bg { background: linear-gradient(135deg, #bc4749, #a7c957, #e9c46a); }
.lagoa2-bg { background: linear-gradient(135deg, #2d9b6f, #52b788, #95d5b2); }
.praia2-bg { background: linear-gradient(135deg, #0096c7, #00b4d8, #90e0ef); }

.card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; color: var(--text); }
.card-body p { font-size: 0.92rem; margin-bottom: 18px; }
.card-link {
  color: var(--ocean);
  font-weight: 800;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.card-link:hover { color: var(--ocean-dark); }

/* ===== RODRIGO SECTION ===== */
.section-rodrigo {
  background: linear-gradient(135deg, #0d2f56 0%, #0077b6 60%, #00b4d8 100%);
  padding: 96px 0;
}
.rodrigo-flex {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.rodrigo-photo-wrap {
  position: relative;
}
.rodrigo-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.rodrigo-badge-float {
  position: absolute;
  top: -18px; right: -18px;
  width: 70px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.section-rodrigo .section-tag {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.rodrigo-text h2 { color: white; margin-bottom: 8px; margin-top: 12px; }
.rodrigo-subtitle {
  color: var(--ocean-light);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.rodrigo-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-size: 1rem;
}
.rodrigo-text strong { color: white; }

.rodrigo-quote {
  border-left: 4px solid var(--ocean-light);
  padding: 16px 20px;
  margin-top: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-family: var(--font-display);
}
.rodrigo-quote cite {
  display: block; margin-top: 10px;
  font-size: 0.85rem; font-style: normal;
  font-weight: 700; color: var(--ocean-light);
  font-family: var(--font-body);
}

/* ===== ATRAÇÕES ===== */
.atracoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.atracao-item {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,119,182,0.07);
  transition: transform 0.3s;
}
.atracao-item:hover { transform: translateY(-4px); }
.atracao-icon {
  font-size: 2.4rem; margin-bottom: 16px;
}
.atracao-item h4 { margin-bottom: 10px; color: var(--text); }
.atracao-item p { font-size: 0.92rem; }

/* ===== GASTRONOMIA ===== */
.rest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.rest-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,119,182,0.07);
  transition: transform 0.3s;
}
.rest-card:hover { transform: translateY(-4px); }

.rest-icon {
  font-size: 2.2rem;
  background: var(--bg-alt);
  width: 60px; height: 60px; min-width: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.rest-info h4 { margin-bottom: 4px; }
.rest-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--ocean);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.rest-info p { font-size: 0.88rem; margin-bottom: 10px; }
.rest-stars { font-size: 0.85rem; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,119,182,0.07);
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card-featured {
  grid-row: 1 / span 2;
}
.blog-card-featured .blog-img-wrap { height: 300px; }

.blog-img-wrap { position: relative; height: 200px; overflow: hidden; }
.blog-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }

.blog-img-sm { height: 140px; }

.blog-placeholder {
  width: 100%; height: 100%;
}
.lagoa-bg-sm { background: linear-gradient(135deg, #0077b6, #00b4d8); }
.dunas-bg-sm { background: linear-gradient(135deg, #f4a261, #e9c46a); }
.falesías-bg-sm { background: linear-gradient(135deg, #bc4749, #e9c46a); }
.rest-bg-sm { background: linear-gradient(135deg, #2d9b6f, #52b788); }

.blog-category {
  position: absolute; top: 12px; left: 12px;
  background: var(--ocean);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
}

.blog-body { padding: 20px; }
.blog-body time {
  font-size: 0.78rem; color: var(--text-muted);
  font-weight: 600;
  display: block; margin-bottom: 8px;
}
.blog-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.blog-body h3 a { color: var(--text); transition: color 0.2s; }
.blog-body h3 a:hover { color: var(--ocean); }
.blog-body p { font-size: 0.88rem; margin-bottom: 14px; }
.blog-link {
  color: var(--ocean); font-weight: 800;
  font-size: 0.88rem;
}

/* ===== COMO CHEGAR ===== */
.como-chegar-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.como-chegar-text h2 { margin-bottom: 16px; }
.como-chegar-text p { margin-bottom: 28px; }
.chegar-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.chegar-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 10px;
  border-left: 4px solid var(--ocean);
}
.chegar-list strong { color: var(--text); }

/* ===== NEWSLETTER ===== */
.section-newsletter {
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean) 100%);
  padding: 72px 0;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.newsletter-text h2 {
  color: white; font-size: 1.8rem; margin-bottom: 8px;
}
.newsletter-text p { color: rgba(255,255,255,0.8); }

.newsletter-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  min-width: 380px;
}
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border 0.2s;
  min-width: 220px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); }
.newsletter-form button {
  padding: 14px 28px;
  background: white;
  color: var(--ocean);
  font-weight: 800;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--sand); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.site-footer {
  background: #0d1b2a;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.social-link:hover { background: var(--ocean); color: white; }

.footer-nav h4 {
  color: white; font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--ocean-light); }

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.footer-rodrigo-credit {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; justify-content: center;
}
.footer-rodrigo-credit strong { color: white; }
.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .rodrigo-flex {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card-featured {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
  .blog-card-featured .blog-img-wrap { height: 240px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 16px; }
  .nav-toggle { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 24px 80px;
  }
  .hero-rodrigo { display: flex; justify-content: center; }
  .rodrigo-card-hero { min-width: unset; width: 200px; }

  .stats-inner { gap: 0; }
  .stat { padding: 12px 20px; }
  .stat-div { display: none; }

  .rodrigo-flex {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .rodrigo-photo-wrap { max-width: 280px; margin: 0 auto; }
  .rodrigo-quote { text-align: left; }

  .cards-grid { grid-template-columns: 1fr; }
  .atracoes-grid { grid-template-columns: 1fr; }
  .rest-grid { grid-template-columns: 1fr; }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-featured { grid-column: auto; }

  .como-chegar-wrap { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: unset; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section { padding: 64px 0; }
  .section-alt { padding: 64px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { text-align: center; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text > * {
  animation: fadeInUp 0.7s ease both;
}
.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.4s; }
.hero-cta { animation-delay: 0.55s; }
.rodrigo-card-hero { animation-delay: 0.3s; }
