:root {
  /* Colors */
  --bg-color: #f7f9f4; /* Light fresh greenish-white */
  --bg-gradient: radial-gradient(circle at top left, rgba(165, 188, 73, 0.15), transparent 30%),
                 radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.1), transparent 40%),
                 linear-gradient(135deg, #f7f9f4 0%, #edf1e6 100%);
  
  --surface: rgba(255, 255, 255, 0.75);
  --surface-solid: #ffffff;
  --surface-dark: rgba(30, 42, 25, 0.9);
  
  --text-main: #1d2618;
  --text-muted: #53634a;
  
  --primary: #465f29;
  --primary-light: #5f7c3c;
  --primary-dark: #2a3c17;
  
  --accent: #d4a042;
  --accent-light: #ebd094;
  --accent-dark: #ad7d2b;

  --line: rgba(70, 95, 41, 0.15);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(42, 60, 23, 0.06);
  --shadow-md: 0 12px 32px rgba(42, 60, 23, 0.08);
  --shadow-lg: 0 24px 48px rgba(42, 60, 23, 0.12);
  --shadow-hover: 0 32px 64px rgba(42, 60, 23, 0.18);
  --shadow-glow: 0 0 20px rgba(212, 160, 66, 0.4);

  /* Border Radius */
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  /* Layout */
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px !important; /* Prevents Instagram embed.js from overriding the root font-size */
  zoom: 1 !important;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background: var(--bg-gradient);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

img, iframe {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  background: rgba(212, 160, 66, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

/* Container */
.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 800px;
}

/* Layout Utilities */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(255, 255, 255, 0.4);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  backdrop-filter: blur(10px);
  z-index: -1;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-heading h2 {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 2rem, 1100px);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.brand img {
  height: 48px;
  width: auto;
  transition: transform var(--transition);
}

.brand:hover img {
  transform: scale(1.05);
}

.site-nav {
  display: flex;
  gap: 0.5rem;
}

.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: all var(--transition);
}

.site-nav a:hover {
  color: var(--primary);
  background: rgba(70, 95, 41, 0.08);
}

.site-nav a.is-active {
  color: white;
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(70, 95, 41, 0.3);
}

/* Hero Section */
.hero, .page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 12rem 0 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.page-hero {
  padding: 12rem 0 3rem;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Animação e Overlay específicos para Home com Vídeo */
.hero .video-overlay {
  background: linear-gradient(135deg, rgba(29, 38, 24, 0.75) 0%, rgba(29, 38, 24, 0.4) 100%);
  backdrop-filter: blur(2px);
}

.hero h1 {
  color: white;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(165, 188, 73, 0.2) 0%, transparent 60%);
  z-index: -1;
  filter: blur(60px);
  animation: floatBlobs 20s ease-in-out infinite alternate;
}

@keyframes floatBlobs {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5%, 5%) scale(1.1); }
  100% { transform: translate(5%, -5%) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.hero-actions, .cta-actions, .center-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.center-actions {
  justify-content: center;
  margin-top: 3rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity var(--transition);
  opacity: 0;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(70, 95, 41, 0.4);
}

.button.primary::before {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0;
}

.button.primary:hover::before {
  opacity: 1;
}

.button.primary:hover {
  box-shadow: 0 12px 32px rgba(70, 95, 41, 0.6);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-dark);
  border: 1px solid rgba(70, 95, 41, 0.2);
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Premium Cards */
.hero-card, .info-card, .feature-card, .benefit-card, .timeline-item, .result-card article, .pricing-card, .bio-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 3rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
}

.hero-logo {
  width: auto;
  height: 60px;
  margin-bottom: 2rem;
}

.info-card:hover, .feature-card:hover, .benefit-card:hover, .timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 160, 66, 0.4);
}

.info-card h3, .feature-card h3, .benefit-card strong {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}

.card-grid, .feature-grid, .benefit-grid {
  display: grid;
  gap: 2rem;
}

.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.benefit-grid { grid-template-columns: repeat(2, 1fr); }

/* Split Sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-solution {
  display: grid;
  gap: 1.5rem;
}

.problem-solution article {
  background: var(--surface-solid);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.problem-solution article:first-child {
  border-left-color: var(--accent);
}

.problem-solution ul, .hero-list, .result-card ul {
  list-style: none;
}

.problem-solution ul li, .hero-list li, .result-card ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.problem-solution ul li::before, .hero-list li::before, .result-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.problem-solution article:first-child ul li::before {
  content: '✕';
  color: var(--accent-dark);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.timeline-item span {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Pricing Options */
.pricing-card {
  text-align: center;
  padding: 4rem;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-options article {
  background: var(--surface-solid);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-options article:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--primary);
}

.pricing-options article:nth-child(2) {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-options article:nth-child(2):hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-options article:nth-child(2) span { color: rgba(255,255,255,0.8); }
.pricing-options article:nth-child(2) strong { color: white; }
.pricing-options article:nth-child(2) p { color: rgba(255,255,255,0.9); }

.pricing-options span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pricing-options strong {
  display: block;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-link-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.video-link-card:hover {
  transform: translateY(-8px);
}

.video-link-card:hover .video-frame {
  box-shadow: var(--shadow-hover);
}

.video-link-card:hover .play-badge {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-link-card:hover .video-frame img {
  transform: scale(1.05);
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(42, 60, 23, 0.85);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}

/* Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* Coming Soon Card (Used in Loja and Simulador) */
.coming-soon-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.coming-soon-card.alt {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.coming-soon-card .card-content {
  padding: 4rem;
}

.coming-soon-card .card-image {
  height: 100%;
  min-height: 440px;
  position: relative;
}

.coming-soon-card .card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.instagram-item {
  width: 100%;
  max-width: 360px;
}

/* Footer Section */
.cta-section {
  padding-top: 1rem;
  padding-bottom: 4rem;
  margin-bottom: 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg opacity="0.05" xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 0L61.2 38.8L100 50L61.2 61.2L50 100L38.8 61.2L0 50L38.8 38.8L50 0Z" fill="white"/></svg>') 0 0/100px 100px;
  border-radius: var(--radius-lg);
}

.cta-card h2, .cta-card p.eyebrow {
  color: white;
  background: none;
  -webkit-text-fill-color: initial;
}

.cta-card p.eyebrow {
  background: rgba(255,255,255,0.2);
}

.site-footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,0.9);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-grid h3 {
  color: white;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-grid > div {
  animation: fadeInScale 1s ease-out forwards;
}

.hero-card {
  animation: fadeInScale 1s ease-out 0.2s forwards;
  opacity: 0;
}

/* Bio Photo */
.bio-content-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.bio-image {
  flex: 0 0 280px;
}

.bio-photo {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  border: 4px solid var(--surface-solid);
  transform: rotate(-2deg);
  transition: transform var(--transition);
}

.bio-card:hover .bio-photo {
  transform: rotate(0) scale(1.02);
}

.bio-text {
  flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .split-section { grid-template-columns: 1fr; }
  .pricing-options { grid-template-columns: 1fr; max-width: 500px; margin: 3rem auto; }
  .pricing-options article:nth-child(2) { transform: scale(1); }
  .pricing-options article:nth-child(2):hover { transform: translateY(-5px); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

@media (max-width: 768px) {
  .site-header { 
    width: 100%; 
    top: 0; 
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  
  .nav-wrap { 
    padding: 0.5rem 1rem; 
  }

  .brand img {
    height: 40px;
  }
  
  .site-nav { 
    width: 100%; 
    justify-content: center; 
    gap: 0.25rem;
    overflow-x: auto;
    padding-bottom: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .hero { 
    padding: 9rem 0 4rem; 
    text-align: center;
  }

  .hero-grid {
    gap: 3rem;
  }

  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  h2 { font-size: 1.75rem; }
  
  .section {
    padding: 4rem 0;
  }

  .card-grid.three, .card-grid.four, .feature-grid, .benefit-grid, .timeline, .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .coming-soon-card {
    grid-template-columns: 1fr;
  }

  .coming-soon-card .card-content {
    padding: 2.5rem 1.5rem;
    order: 2;
  }

  .coming-soon-card .card-image {
    min-height: 300px;
    order: 1;
  }

  .hero-card, .info-card, .feature-card, .benefit-card {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }
  
  .bio-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .bio-image {
    flex: 0 0 auto;
    width: 200px;
  }

  .footer-grid {
    gap: 2.5rem;
  }
}

/* Slideshow Card container */
.slideshow-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--surface-border);
}

.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 500px;
  overflow: hidden;
  background: #f0f3ed; /* Light neutral background for screenshots */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to show full UI */
  padding: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

@media (max-width: 768px) {
  .slideshow-container {
    aspect-ratio: 4/3;
    min-height: 300px;
  }
  .slide {
    padding: 0.5rem;
  }
}

.slideshow-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  z-index: 10;
}

.slideshow-controls button {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.slideshow-controls button:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.slideshow-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background var(--transition);
}

.dot.active {
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
