/* ============================================
   Parque do Caracol — Premium Website
   Palheta: Verde Coragem + Bromélia Laranja
   ============================================ */

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* VARIABLES */
:root {
  --green-dark: #174D22;
  --green-mid: #1a5e2d;
  --green-light: #2a7a3e;
  --orange: #FF6600;
  --orange-hover: #e55a00;
  --orange-light: #ff8533;
  --cream: #E8E5D0;
  --white: #ffffff;
  --gold: #FFB906;
  --lime: #A1C208;
  --blue: #95C6E2;
  --brown: #803917;
  --text-dark: #174D22;
  --text-mid: #5a6a58;
  --text-light: #7a8a78;
  --font: 'Inter', sans-serif;
}

body {
  font-family: var(--font);
  font-weight: 600;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 18px 44px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(201,123,62,0.35);
}

.btn-secondary {
  display: inline-block;
  padding: 18px 40px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* SECTION DEFAULTS */
section { padding: 120px 0; }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(38px, 5vw, 56px);
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-desc {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(232, 229, 208, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.logo {
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}
nav.scrolled .logo { color: var(--text-dark); }
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a { color: var(--text-dark); }
nav.scrolled .nav-links a:hover { color: var(--text-dark); }

.btn-nav {
  padding: 12px 32px;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 14px !important;
  transition: all 0.3s !important;
}
.btn-nav:hover { background: var(--orange-hover) !important; transform: translateY(-2px); }
.btn-nav::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.mobile-toggle span {
  width: 26px; height: 2.5px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}
nav.scrolled .mobile-toggle span { background: var(--text-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(13,30,17,0.82) 0%, rgba(23,77,34,0.55) 40%, rgba(13,30,17,0.82) 100%),
    url('../static/A19.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 25s ease infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.5) 100%);
}

.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid rgba(255, 185, 6, 0.35);
  border-radius: 50px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero h1 {
  font-size: clamp(52px, 9vw, 104px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.4s both;
  font-weight: 900;
}
.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  font-weight: 500;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-stats {
  display: flex; gap: 56px; justify-content: center;
  margin-top: 64px;
  animation: fadeUp 1s ease 1s both;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat-num {
  font-weight: 800;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute; bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.4s both;
}
.scroll-line {
  width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ============================================
   ABOUT
   ============================================ */
#sobre { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background:
    url('../static/A9.jpeg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.about-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,17,0.4), transparent 50%);
}

.about-image .floating-card {
  position: absolute;
  bottom: 30px; left: -20px;
  background: rgba(246,245,241,0.95);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.about-image .floating-card p {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.about-image .floating-card span {
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
}
.about-features li::before {
  content: '\2713';
  color: var(--green-dark);
  font-weight: 900;
  font-size: 18px;
}

/* ============================================
   EXPERIÊNCIAS
   ============================================ */
#experiencias {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-dark) 100%);
  color: var(--white);
}
#experiencias .section-title { color: var(--white); }
#experiencias .section-desc { color: rgba(255,255,255,0.65); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.exp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 44px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.exp-card:hover::before { transform: scaleX(1); }
.exp-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(23,77,34,0.3);
}

.exp-icon { font-size: 32px; margin-bottom: 20px; }
.exp-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--white); }
.exp-card p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.gallery-item::before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(1)::before { padding-bottom: calc(100% + 16px); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,17,0.7), transparent 50%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#depoimentos {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d1a10 100%);
}
#depoimentos .section-label { color: var(--gold); }
#depoimentos .section-title { color: var(--white); }
#depoimentos .section-desc { color: rgba(255,255,255,0.55); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 32px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-weight: 700;
}

.testimonial-card blockquote {
  font-weight: 600;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e6a600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-dark);
}
.testimonial-author div strong {
  display: block; color: var(--white);
  font-size: 15px; font-weight: 700;
}
.testimonial-author div span {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pricing-note { margin-top: 32px; }

.pricing-card {
  background: var(--white);
  border: 2px solid #d4d3bf;
  border-radius: 24px;
  padding: 44px 22px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(255,185,6,0.15);
}
.pricing-card.featured .pricing-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e6a600);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-name {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.pricing-price {
  font-weight: 900;
  font-size: 36px;
  white-space: nowrap;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 600;
}
.pricing-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid #dddcc8;
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--green-dark);
  font-weight: 900;
  font-size: 18px;
}
.pricing-card .btn-primary { width: 100%; text-align: center; }

/* ============================================
   CONTACT
   ============================================ */
#contato {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-dark) 100%);
  color: var(--white);
}
#contato .section-title { color: var(--white); }
#contato .section-desc { color: rgba(255,255,255,0.6); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info > p {
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.contact-item .icon {
  width: 42px; height: 42px;
  background: rgba(23,77,34,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: 24px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.1);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #d4d3bf;
  border-radius: 14px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-dark); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form .btn-primary { width: 100%; text-align: center; padding: 18px; font-size: 16px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0d1a10;
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
footer h4 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}
footer p { font-size: 14px; font-weight: 500; line-height: 1.7; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
footer ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 12px;
  font-weight: 700;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
#horarios {
  background: var(--cream);
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.schedule-card {
  background: var(--white);
  border: 2px solid #174D22;
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: all 0.3s;
}
.schedule-card:hover {
  border-color: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
.schedule-card .day {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.schedule-card .hours {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}
.schedule-card .note {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 6px;
}
.schedule-note {
  grid-column: span 2;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 16px;
  background: rgba(23,77,34,0.06);
  border-radius: 12px;
  border: 1px solid rgba(23,77,34,0.12);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 16px 0; }
  .promo-mini { width: 68px; height: 68px; top: 80px; left: 6px; font-size: 9px; }
  .promo-mini span { line-height: 1.15; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: rgba(13,30,17,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 36px;
    gap: 28px;
    transition: right 0.4s ease;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  nav.scrolled .nav-links { background: rgba(232,229,208,0.98); }
  .nav-links a { font-size: 18px; }
  nav.scrolled .nav-links a { color: var(--text-dark); }
  .mobile-toggle { display: flex; z-index: 1001; }

  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-stats .stat-num { font-size: 30px; }

  section { padding: 80px 0; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/10; }
  .about-image .floating-card { left: 16px; bottom: 16px; }

  .exp-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { grid-column: auto; transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-note { grid-column: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* ============================================
   PROMO WIDGET
   ============================================ */
.promo-mini {
  position: fixed;
  top: 100px;
  left: 10px;
  z-index: 999;
  width: 88px;
  height: 88px;
  border: 2.5px solid #ff6600;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  line-height: 1.25;
  letter-spacing: 0.5px;
}
.promo-mini:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

.promo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.promo-overlay.active {
  display: flex;
}

.promo-popup {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 20px;
  overflow: hidden;
  animation: promoFadeIn 0.3s ease;
}

@keyframes promoFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.promo-popup a {
  display: block;
  line-height: 0;
}

.promo-popup img {
  display: block;
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 20px;
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  line-height: 1;
}
.promo-close:hover {
  background: rgba(0,0,0,0.85);
}
