/* ======================================
   EURODRINKS & COCKTAILS – PREMIUM CSS
   ====================================== */

/* === VARIABLES === */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07c2e;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #181818;
  --dark-4: #222222;
  --dark-5: #2a2a2a;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --radius: 12px;
  --radius-lg: 20px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* === UTILITIES === */
.gold { color: var(--gold); }
.gold-text { color: var(--gold); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: 100px 0; }
.section-dark { background-color: var(--dark-2); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--white-60);
  max-width: 600px;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% 200%;
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  color: var(--dark);
}
.btn-primary i { font-size: 1.2rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid var(--white-30);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid var(--white-60);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-large { padding: 20px 42px; font-size: 1.1rem; }
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark);
}

/* === PROGRESS BAR === */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  overflow: visible; /* evita clipar o menu mobile */
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}
.nav-menu a {
  color: var(--white-80);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  text-decoration: none;
}
.nav-menu a:hover { color: var(--gold); }

/* Botão fechar (X) — oculto no desktop, visível só no mobile via media query */
.nav-menu-close {
  display: none;
}

/* Bloquear scroll do body quando menu está aberto */
body.menu-open {
  overflow: hidden;
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0 !important;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === HERO === */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* SEM transform aqui — quebraria position:fixed do menu mobile */
}
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: right top;
  overflow: hidden;
}
/* Imagem dentro do slide — cobre todo o espaço */
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Garantir sem margem/padding */
  margin: 0;
  padding: 0;
}

/* Tablet landscape: ligeiro ajuste para mostrar bem */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero-slide {
    background-position: 80% center;
  }
}

/* Mobile (portrait): imagens usando <img> com object-fit */
@media (max-width: 768px) {
  #hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .hero-slide.active {
    opacity: 1;
  }
  .hero-slide-img {
    object-position: center top;
  }
  /* Slide 1 em mobile: centrar a imagem portrait */
  .hero-slide-1 .hero-slide-img {
    object-position: center center;
  }
}

/* Mobile muito pequeno */
@media (max-width: 480px) {
  .hero-slide-img {
    object-position: center top;
  }
}

.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 100px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-80);
  max-width: 650px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  display: inline-flex;
}
.stat-item {
  text-align: center;
  min-width: 80px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item > span:nth-child(2) {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--white-60);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--white-20, rgba(255,255,255,0.2));
}
.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-30);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  color: var(--white-60);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  display: block;
}

/* === HERO DOTS (indicadores do slider) === */
.hero-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}
.hero-dot:hover {
  background: var(--gold-light);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 480px;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: var(--shadow);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.about-badge-card i { font-size: 1.5rem; margin-bottom: 4px; display: block; }
.about-badge-card strong { display: block; font-size: 1rem; font-weight: 700; }
.about-badge-card span { font-size: 0.75rem; font-weight: 500; }
.about-content .section-label { margin-bottom: 16px; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-text { color: var(--white-60); margin-bottom: 16px; line-height: 1.8; }
.about-text strong { color: var(--gold); }
.about-features { margin: 28px 0; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--white-80);
  font-size: 0.95rem;
}
.feature-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
}
.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.service-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon i { color: var(--gold); font-size: 1.4rem; }
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-body p { color: var(--white-60); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-benefits {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.service-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-80);
  margin-bottom: 8px;
}
.service-benefits li i { color: var(--gold); font-size: 0.7rem; }
.service-events {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--white-60);
  background: var(--white-10);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 50px;
}
.event-tag i { color: var(--gold); font-size: 0.7rem; }

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon i { color: var(--gold); font-size: 1.6rem; }
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.why-card p { color: var(--white-60); font-size: 0.9rem; line-height: 1.7; }

/* === GALLERY === */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--dark-4);
  color: var(--white-60);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--gold); font-size: 2rem; margin-bottom: 8px; }
.gallery-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 600; }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}
.lightbox-container {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-container img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 2px solid rgba(201,168,76,0.3);
}
#lightboxCaption {
  color: var(--white-80);
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  color: var(--white);
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 1.2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); }

/* === TESTIMONIALS === */
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 30px;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { margin-bottom: 20px; }
.testimonial-stars i { color: var(--gold); font-size: 1.1rem; margin-right: 3px; }
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white-80);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-avatar i { color: var(--dark); font-size: 1.2rem; }
.author-info strong { display: block; font-size: 1rem; color: var(--white); margin-bottom: 3px; }
.author-info span { font-size: 0.85rem; color: var(--gold); }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.t-prev, .t-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}
.t-prev:hover, .t-next:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.t-dots { display: flex; gap: 8px; align-items: center; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* === CTA SECTION === */
.section-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-text {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--white-60);
}
.cta-trust i { color: var(--gold); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.whatsapp-card:hover { border-color: #25d366; box-shadow: 0 8px 30px rgba(37,211,102,0.2); }
.instagram-card:hover { border-color: #e1306c; box-shadow: 0 8px 30px rgba(225,48,108,0.2); }
.location-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.contact-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.whatsapp-card .contact-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.instagram-card .contact-icon { background: rgba(225,48,108,0.1); color: #e1306c; }
.location-card .contact-icon { background: rgba(201,168,76,0.1); color: var(--gold); }
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card p { color: var(--white-60); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-card .contact-btn {
  background: rgba(37,211,102,0.1);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.3);
}
.whatsapp-card .contact-btn:hover { background: #25d366; color: var(--white); }
.instagram-card .contact-btn {
  background: rgba(225,48,108,0.1);
  color: #e1306c;
  border: 1px solid rgba(225,48,108,0.3);
}
.instagram-card .contact-btn:hover { background: #e1306c; color: var(--white); }
.location-card .contact-btn {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}
.location-card .contact-btn:hover { background: var(--gold); color: var(--dark); }

/* === FOOTER === */
#footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
}
.footer-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand p {
  color: var(--white-60);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn { background: rgba(37,211,102,0.1); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.whatsapp-btn:hover { background: #25d366; color: var(--white); }
.instagram-btn { background: rgba(225,48,108,0.1); color: #e1306c; border: 1px solid rgba(225,48,108,0.3); }
.instagram-btn:hover { background: #e1306c; color: var(--white); }
.footer-nav h5, .footer-services h5, .footer-cta h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-nav ul li, .footer-services ul li { margin-bottom: 10px; }
.footer-nav ul a, .footer-services ul a {
  color: var(--white-60);
  font-size: 0.9rem;
  transition: color 0.3s;
  text-decoration: none;
}
.footer-nav ul a:hover, .footer-services ul a:hover { color: var(--gold); }
.footer-cta p {
  color: var(--white-60);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}
.btn-footer-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--dark); }
.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--white-60);
  font-size: 0.85rem;
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 8000;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: pulse 2.5s infinite;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
  animation: none;
  color: var(--white);
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   RESPONSIVE – TABLET
   ====================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 40px; }
}

/* ======================================
   RESPONSIVE – MOBILE
   ====================================== */
@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }

  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    /* Menu cobre todo o ecrã — funciona porque #navbar não tem transform */
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 99999;
    overflow-y: auto;
    padding: 80px 24px 40px;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu a { font-size: 1.3rem; }
  .btn-nav-cta { font-size: 1.1rem !important; padding: 14px 32px; }

  /* Botão fechar (X) — só visível no mobile */
  .nav-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .nav-menu-close:hover {
    background: var(--gold);
    color: var(--dark);
  }

  /* Hero mobile */
  .hero-content { padding: 120px 20px 80px; }
  .hero-stats {
    gap: 20px;
    padding: 18px 24px;
    flex-wrap: wrap;
  }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* About mobile */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 400px; }
  .about-img-main { height: 400px; }
  .about-img-secondary { width: 150px; height: 150px; right: -10px; }
  .about-badge-card { left: -10px; }
  .about-content .section-title { text-align: center; }
  .about-content .section-label { display: block; text-align: center; }
  .about-content .btn-primary { width: 100%; justify-content: center; }

  /* Services mobile */
  .services-grid { grid-template-columns: 1fr; }

  /* Why mobile */
  .why-grid { grid-template-columns: 1fr; }

  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.large { grid-column: span 1; }

  /* Testimonials mobile */
  .testimonial-card { padding: 28px 20px; }

  /* CTA mobile */
  .section-cta { padding: 100px 0; }
  .cta-actions { flex-direction: column; align-items: center; gap: 14px; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline { width: 100%; max-width: 340px; justify-content: center; }
  .btn-large { padding: 16px 28px; font-size: 0.97rem; }
  .cta-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .cta-text { font-size: 0.97rem; padding: 0 8px; }
  .cta-trust { flex-direction: column; align-items: center; gap: 12px; }
  .cta-bg {
    background-position: 70% top;
    background-size: cover;
  }

  /* Contact mobile */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer mobile */
  .footer-content { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { text-align: center; }

  /* Lightbox mobile */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .hero-stats { padding: 14px 16px; }
  .stat-number { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
}
