/* ==========================================================================
   Variaveis Globais & Reset
   ========================================================================== */
:root {
  --primary: #00b4d8; /* Splash Cyan */
  --primary-dark: #0077b6;
  --primary-light: #caf0f8;
  --accent: #ffb703; /* Sun Yellow */
  --accent-dark: #fb8500;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --bg-color: #f0fdfa; /* Fundo Splash Acqua */
  --card-bg: #ffffff;
  --text-main: #023047;
  --text-muted: #475569;
  --orange: #ff5400;
  --purple: #9d4edd;
  --green: #06d6a0;
  --transition: all 0.3s ease; /* Transição mais limpa e fluida */
  --radius: 16px; /* Design moderno estilo app */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 30px -5px rgba(0, 180, 216, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Tipografia & Botões
   ========================================================================== */
h1,
h2,
h3 {
  color: var(--text-main);
  font-weight: 800;
  font-family: "Baloo 2", cursive;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 0 var(--primary-dark);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--primary-dark);
}

.btn-whatsapp-outline {
  border: 2px solid var(--whatsapp);
  color: var(--whatsapp);
  background: transparent;
}
.btn-whatsapp-outline:hover {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp-solid {
  background-color: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 0 var(--whatsapp-dark);
}
.btn-whatsapp-solid:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--whatsapp-dark);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

/* Animação Pulso para Conversão */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.pulse-animation {
  animation: pulse 2s infinite;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.img-logo {
  max-height: 80px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.img-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--primary);
  transform: scale(1.05);
  display: inline-block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.icon-link {
  font-size: 1.5rem;
  color: #e1306c;
  transition: var(--transition);
}
.icon-link:hover {
  transform: scale(1.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}
.hero-text h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin: 15px 0;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  font-weight: 500;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 0 var(--accent-dark);
}

.hero-highlights {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: #ffffff;
}
.hero-highlights i {
  color: var(--accent);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 20px 25px rgba(0, 119, 182, 0.4));
  transform: rotate(2deg);
  transition: var(--transition);
  border-radius: var(--radius);
}
.hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Elementos Novos da Hero */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.floating-badge {
  position: absolute;
  bottom: -10px;
  left: -25px;
  background: white;
  padding: 15px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.floating-badge .stars {
  color: #fbbf24;
  margin-bottom: 0;
}
.floating-badge span {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.diferenciais-section {
  padding: 80px 0;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card-diferencial {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(0, 180, 216, 0.1);
  text-align: center;
}
.card-diferencial:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.icon-box.blue {
  background: #e0f2fe;
  color: #0284c7;
}
.icon-box.orange {
  background: #fff4cc;
  color: var(--accent-dark);
}
.icon-box.purple {
  background: #f3e8ff;
  color: #7e22ce;
}
.icon-box.green {
  background: #ccfbf1;
  color: var(--green);
}

.card-diferencial h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.card-diferencial p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Banners Promocionais (Slider)
   ========================================================================== */
.promocoes-section {
  padding: 10px 0 30px;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.slider-track {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.slide {
  min-width: 100% !important;
  flex: 0 0 100% !important;
  display: block;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.slider-dots .dot.active,
.slider-dots .dot:hover {
  background: #ffffff;
  transform: scale(1.2);
}

/* ==========================================================================
   Nossos Brinquedos
   ========================================================================== */
.brinquedos-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, var(--primary-light) 100%);
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Efeito de Onda no Topo */
.custom-shape-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}
.custom-shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}
.custom-shape-divider-top .shape-fill {
  fill: var(
    --bg-color
  ); /* Esta cor cria a ilusão de estar mesclado com a área de cima */
}

/* Efeito de Onda no Fundo */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
}
.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}
.custom-shape-divider-bottom .shape-fill {
  fill: var(--bg-color);
}

@media (min-width: 768px) {
  .custom-shape-divider-top svg,
  .custom-shape-divider-bottom svg {
    height: 75px;
  }
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--card-bg);
  border: 2px solid var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--text-main);
  border-color: var(--primary);
}

.brinquedos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.brinquedo-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: none; /* Hide by default for filter logic */
}
.brinquedo-card.show {
  display: block;
  animation: fadeIn 0.5s ease;
}
.brinquedo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.card-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.brinquedo-card:hover .card-img img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
}
.category-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  background: #fff7ed;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-content h3 {
  font-size: 1.3rem;
  margin: 10px 0 20px;
}
.card-content .btn {
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   Modal Tecnológico do Brinquedo
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal.show-modal {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  width: 90%;
  max-width: 900px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 90vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(50px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal.show-modal .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.close-modal:hover {
  background: #e2e8f0;
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
}
.modal-img {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.modal-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 400px;
  max-height: 450px;
}
.modal-thumbnails {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #f8fafc;
  overflow-x: auto;
}
.modal-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  opacity: 0.6;
  transition: var(--transition);
}
.modal-thumbnails img:hover,
.modal-thumbnails img.active {
  border-color: var(--primary);
  opacity: 1;
}
.modal-info {
  flex: 1.2;
  padding: 40px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.emotional-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.modal-benefits h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}
.modal-benefits ul {
  margin-bottom: 25px;
}
.modal-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: var(--text-main);
  font-weight: 500;
}
.modal-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.modal-specs {
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px dashed #cbd5e1;
}
.scarcity-text {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: #ef4444;
  font-weight: 800;
  font-size: 0.95rem;
}

/* ==========================================================================
   Eventos, Sobre, Depoimentos & Contato
   ========================================================================== */
.eventos-section {
  padding: 80px 0;
}
.events-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 20px; /* Espaço para a sombra não ser cortada */
  scrollbar-width: thin; /* Deixa uma barra fina no Firefox */
  scrollbar-color: var(--primary-light) transparent;
  cursor: grab;
}
.events-carousel:active {
  cursor: grabbing;
}
.events-carousel::-webkit-scrollbar {
  height: 8px; /* Altura da barra de rolagem no Chrome/Safari */
}
.events-carousel::-webkit-scrollbar-track {
  background: transparent;
}
.events-carousel::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}
.events-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
.events-carousel .gallery-item {
  flex: 0 0 calc(25% - 15px); /* Exibe exatamente 4 itens no desktop */
  scroll-snap-align: start;
}

/* Ajustes Responsivos para o Carrossel */
@media (max-width: 1024px) {
  .events-carousel .gallery-item {
    flex: 0 0 calc(33.333% - 13.33px); /* 3 itens em telas médias */
  }
}
@media (max-width: 768px) {
  .events-carousel .gallery-item {
    flex: 0 0 calc(50% - 10px); /* 2 itens em tablets */
  }
}
@media (max-width: 480px) {
  .events-carousel .gallery-item {
    flex: 0 0 85%; /* 1 item e um pedaço do próximo em celulares (indica rolagem) */
  }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none; /* Evita arrastar a imagem em si (Ghost Image) */
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after {
  opacity: 1;
}

.sobre-section {
  padding: 80px 0;
  background: var(--card-bg);
}
.flex-row {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.sobre-text {
  flex: 1;
  min-width: 300px;
}
.sobre-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.sobre-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.sobre-img {
  flex: 1;
  min-width: 300px;
}
.sobre-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.depoimentos-section {
  padding: 80px 0;
  background: var(--bg-color);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.depoimento-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.stars {
  color: #fbbf24;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.depoimento-card p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.depoimento-card h4 {
  font-weight: 800;
  color: var(--text-main);
}

.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 60px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.img-logo-footer {
  max-height: 120px;
  width: auto;
  margin-bottom: 15px;
  display: block;
}
.footer-info p {
  color: #cbd5e1;
  max-width: 300px;
}
.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  color: #fff;
  margin-bottom: 20px;
}
.footer-contact p {
  margin-bottom: 15px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mt-2 {
  margin-top: 25px;
}

/* Links Rápidos */
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #cbd5e1;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px; /* Pequeno efeito de avanço ao passar o mouse */
}

/* Redes Sociais e Pagamentos */
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem;
  color: #cbd5e1;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--whatsapp);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
  animation: pulse 2s infinite;
}
.floating-wp:hover {
  transform: scale(1.1);
  color: white;
}

/* ==========================================================================
   Animações de Scroll (JS Observer)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.fade-right {
  transform: translateX(50px);
}
.fade-right.active {
  transform: translateX(0);
}
.fade-up {
  transform: translateY(50px);
}
.fade-up.active {
  transform: translateY(0);
}

/* ==========================================================================
   Responsividade (Mobile First Adapts)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    gap: 40px;
  }
  .hero-text h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .hero-highlights {
    align-items: center;
  }
  .hero-image {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .floating-badge {
    left: 10px;
    bottom: -10px;
  }
  .modal-body {
    flex-direction: column;
  }
  .modal-img {
    min-width: 100%;
  }
  .modal-img > img {
    min-height: 250px;
    max-height: 300px;
  }
  .modal-info {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .flex-row {
    gap: 30px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .modal-info h2 {
    font-size: 1.5rem;
  }
  .modal-info {
    padding: 20px 15px;
  }
}
