#region Banner Carrossel - Fix iOS/Safari
#banner-carousel {
  aspect-ratio: 16/9;
  min-height: 320px;
  height: auto !important;
  max-width: 100vw;
}
.banner-slide {
  aspect-ratio: 16/9;
  min-height: 320px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Ajuste padrão para imagens do carrossel */
#banner-carousel img, .banner-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0 auto;
  background: #eee;
}
@supports (-webkit-touch-callout: none) {
  /* iOS/Safari: Força o carrossel a ocupar toda a largura da viewport e previne corte vertical */
  #banner-carousel, .carousel-container, .carousel-track, .banner-slide {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: visible !important;
  }
  #banner-carousel img, .banner-slide img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    min-height: unset !important;
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block;
    margin: 0 auto;
    background: #eee;
  }
}
#endregion
@media (max-width: 639px) {
  .carousel-arrow.left-0, .carousel-btn.carousel-btn-left {
    left: 0.5rem;
  }
  .carousel-arrow.right-0, .carousel-btn.carousel-btn-right {
    right: 0.5rem;
  }
}
@media (max-width: 639px) {
  .carousel-arrow, .carousel-btn {
    top: 54%;
    transform: translateY(-60%);
  }
}

/* Botões de navegação dos carrosseis feminino e masculino */
.carousel-arrow, .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(255,255,255,0.65);
  box-shadow: 0 2px 8px 0 rgba(30,41,59,0.10);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  z-index: 30;
  color: #64748b;
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.7;
  overflow: hidden;
}

@media (min-width: 768px) {
  .carousel-arrow, .carousel-btn {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.6rem;
  }
}

.carousel-arrow::before, .carousel-btn::before {
  display: none;
}

.carousel-arrow:hover, .carousel-btn:hover {
  background: rgba(255,255,255,0.92);
  color: #e11d48;
  opacity: 1;
  box-shadow: 0 4px 16px 0 rgba(225,29,72,0.10);
}

.carousel-arrow:active, .carousel-btn:active {
  background: rgba(245,158,66,0.18);
  color: #e11d48;
}

@media (min-width: 768px) {
  .carousel-arrow, .carousel-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2.1rem;
  }
}

.carousel-arrow::before, .carousel-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(225,29,72,0.12) 0%, rgba(245,158,66,0.10) 100%);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.carousel-arrow:hover, .carousel-btn:hover {
  background: linear-gradient(135deg, #fff 40%, #e11d48 100%);
  color: #fff;
  box-shadow: 0 12px 36px 0 rgba(225,29,72,0.28), 0 2px 8px 0 rgba(30,41,59,0.13);
}

.carousel-arrow:active, .carousel-btn:active {
  background: linear-gradient(135deg, #f59e42 0%, #e11d48 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(225,29,72,0.18);
}

.carousel-arrow.left-0, .carousel-btn.carousel-btn-left {
  left: 0.5rem;
}
.carousel-arrow.right-0, .carousel-btn.carousel-btn-right {
  right: 0.5rem;
}

.carousel-arrow svg, .carousel-btn svg {
  position: relative;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
@media (min-width: 768px) {
  .carousel-arrow svg, .carousel-btn svg {
    width: 1.9rem;
    height: 1.9rem;
  }
}
.carousel-arrow:hover svg, .carousel-btn:hover svg {
  transform: scale(1.18) rotate(-8deg);
  filter: drop-shadow(0 0 8px #e11d48cc);
}

@media (min-width: 768px) {
  .carousel-arrow {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
  }
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  color: #e11d48;
}

.carousel-arrow.left-0 {
  left: 0.5rem;
}
.carousel-arrow.right-0 {
  right: 0.5rem;
}
.products-carousel {
  display: flex;
  overflow-x: auto;
  gap: var(--space-sm);
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
/* 1 card por linha no mobile */
.products-carousel > * {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .products-carousel > * {
    flex: 0 0 calc(50% - var(--space-sm));
    max-width: calc(50% - var(--space-sm));
  }
}
@media (min-width: 1024px) {
  .products-carousel > * {
    flex: 0 0 calc(25% - var(--space-sm));
    max-width: calc(25% - var(--space-sm));
  }
}
/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.main-container {
  background: rgba(255,255,255,0.75);
}
/* Dashboard Cards Admin - Visual Moderno */
/* Dashboard Cards Admin - Visual Moderno Frio */
.dashboard-card {
  background: linear-gradient(135deg, rgba(220,230,255,0.85) 0%, rgba(210,220,245,0.85) 100%) !important;
  box-shadow: 0 8px 32px 0 rgba(60, 80, 180, 0.10) !important;
  border: 1.5px solid rgba(120,140,200,0.13) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.dashboard-card:hover {
  transform: translateY(-7px) scale(1.055);
  box-shadow: 0 18px 44px 0 rgba(60, 80, 180, 0.18);
  border-color: rgba(80,120,255,0.18);
  background: linear-gradient(120deg, rgba(180,210,255,0.95) 0%, rgba(160,180,230,0.92) 100%) !important;
}
.dashboard-card h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #233a5e;
  opacity: 0.93;
}
.dashboard-card a {
  border-radius: 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(60,80,180,0.09);
  background: linear-gradient(90deg, #4f8cff 0%, #6b7cff 100%);
  color: #fff !important;
}
.dashboard-card a:hover {
  background: linear-gradient(90deg, #6b7cff 0%, #4f8cff 100%);
  filter: brightness(1.08);
}
.dashboard-card svg {
  filter: drop-shadow(0 2px 6px rgba(60,80,180,0.10));
  color: #4f8cff;
}
.dashboard-card h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #22223b;
  opacity: 0.92;
}
.dashboard-card a {
  border-radius: 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(225,29,72,0.07);
}
.dashboard-card svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.07));
}
/* Overlay do gradiente do carrossel mais alto */
.carousel-track > .min-w-full > .relative > .absolute.bg-gradient-to-r {
  height: 120%;
  top: -10%;
  bottom: -10%;
}
/* Imagem do carrossel ocupa 100% do espaço */
.carousel-track img, .carousel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  image-rendering: auto;
}
/* Correção para imagens do banner-carousel em iOS/Safari */
#banner-carousel img, .banner-slide img {
  width: 100vw;
  max-width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0 auto;
}

@supports (-webkit-touch-callout: none) {
  #banner-carousel img, .banner-slide img {
    min-height: 320px;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
/* Responsividade Moderna - Moovy 2025 */
/* Sistema de breakpoints baseado em Mobile-First */

/* =================
   BREAKPOINTS SISTEMA
   ================= */
:root {
  /* Breakpoints principais */
  --breakpoint-xs: 360px;   /* Smartphones pequenos */
  --breakpoint-sm: 640px;   /* Smartphones */
  --breakpoint-md: 768px;   /* Tablets */
  --breakpoint-lg: 1024px;  /* Laptops */
  --breakpoint-xl: 1280px;  /* Desktops */
  --breakpoint-2xl: 1536px; /* Monitors grandes */
  
  /* Spacing responsivo */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Typography scale responsiva */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

/* =================
   BASE RESPONSIVA
   ================= */

/* Configuração base para todos os elementos */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px; /* Base para rem calculations */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =================
   CONTAINERS FLUIDOS
   ================= */

.container-responsive {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 640px) {
  .container-responsive {
    padding: 0 var(--space-md);
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container-responsive {
    padding: 0 var(--space-lg);
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container-responsive {
    padding: 0 var(--space-xl);
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container-responsive {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container-responsive {
    max-width: 1536px;
  }
}

/* =================
   GRIDS RESPONSIVOS
   ================= */

/* =================
   PRODUTOS GRID RESPONSIVO
   ================= */

/* Grid específico para produtos */
.products-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
  width: 100%;
  padding: 0;
}

@media (min-width: 640px) {
  .products-grid {
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .products-grid {
    gap: var(--space-lg);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Grid adaptativo para produtos */
.grid-responsive {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-responsive {
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-responsive {
    gap: var(--space-lg);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-responsive {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .grid-responsive {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Grid para dashboard/admin */
.grid-dashboard {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-dashboard {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =================
   TYPOGRAPHY RESPONSIVA
   ================= */

.text-responsive-xs {
  font-size: var(--text-xs);
  line-height: 1.4;
}

.text-responsive-sm {
  font-size: var(--text-sm);
  line-height: 1.4;
}

.text-responsive-base {
  font-size: var(--text-base);
  line-height: 1.5;
}

.text-responsive-lg {
  font-size: var(--text-lg);
  line-height: 1.5;
}

.text-responsive-xl {
  font-size: var(--text-xl);
  line-height: 1.4;
}

.text-responsive-2xl {
  font-size: var(--text-2xl);
  line-height: 1.3;
}

.text-responsive-3xl {
  font-size: var(--text-3xl);
  line-height: 1.2;
}

.text-responsive-4xl {
  font-size: var(--text-4xl);
  line-height: 1.1;
}

.text-responsive-5xl {
  font-size: var(--text-5xl);
  line-height: 1;
}

/* Escalas responsivas para títulos */
.heading-responsive-sm {
  font-size: var(--text-lg);
  font-weight: 600;
}

.heading-responsive-md {
  font-size: var(--text-xl);
  font-weight: 700;
}

.heading-responsive-lg {
  font-size: var(--text-2xl);
  font-weight: 800;
}

.heading-responsive-xl {
  font-size: var(--text-3xl);
  font-weight: 900;
}

@media (min-width: 640px) {
  .heading-responsive-sm { font-size: var(--text-xl); }
  .heading-responsive-md { font-size: var(--text-2xl); }
  .heading-responsive-lg { font-size: var(--text-3xl); }
  .heading-responsive-xl { font-size: var(--text-4xl); }
}

@media (min-width: 1024px) {
  .heading-responsive-sm { font-size: var(--text-2xl); }
  .heading-responsive-md { font-size: var(--text-3xl); }
  .heading-responsive-lg { font-size: var(--text-4xl); }
  .heading-responsive-xl { font-size: var(--text-5xl); }
}

/* =================
   SPACING RESPONSIVO
   ================= */

.spacing-responsive-xs {
  padding: var(--space-xs);
}

.spacing-responsive-sm {
  padding: var(--space-sm);
}

.spacing-responsive-md {
  padding: var(--space-md);
}

.spacing-responsive-lg {
  padding: var(--space-lg);
}

.spacing-responsive-xl {
  padding: var(--space-xl);
}

.spacing-responsive-2xl {
  padding: var(--space-2xl);
}

/* Margins responsivas */
.margin-responsive-xs {
  margin: var(--space-xs);
}

.margin-responsive-sm {
  margin: var(--space-sm);
}

.margin-responsive-md {
  margin: var(--space-md);
}

.margin-responsive-lg {
  margin: var(--space-lg);
}

.margin-responsive-xl {
  margin: var(--space-xl);
}

.margin-responsive-2xl {
  margin: var(--space-2xl);
}

/* =================
   HEADER COMPONENTES ESPECÍFICOS
   ================= */

/* Container do header */
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .header-container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 var(--space-xl);
  }
}

/* Logo container */
.logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container:hover {
  transform: translateY(-2px);
}

.logo-wrapper {
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .logo-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.25rem;
  }
}

.logo-wrapper:hover {
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.2);
  transform: scale(1.05);
}

.logo-image {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .logo-image {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.logo-image:hover {
  transform: scale(1.1);
}

/* Brand text */
.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e293b;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.875rem;
  }
}

.brand-name:hover {
  color: #e11d48;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .brand-subtitle {
    font-size: 0.875rem;
  }
}

.brand-subtitle:hover {
  color: #f59e42;
}

/* Navigation desktop */
.nav-desktop {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-text {
  color: #1e293b;
  transition: color 0.3s ease;
}

.nav-link:hover .nav-text {
  color: #e11d48;
}

.admin-btn:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

/* Mobile navigation menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-menu.open {
  right: 0;
}

.mobile-menu-content {
  padding: var(--space-lg);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.mobile-menu-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #1e293b;
}

.mobile-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #e11d48;
  transform: translateX(4px);
}

/* =================
   NAVIGATION RESPONSIVA
   ================= */

/* Header adaptativo */
.header-responsive {
  padding: var(--space-sm) var(--space-md);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .header-responsive {
    padding: var(--space-md) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .header-responsive {
    padding: var(--space-lg) var(--space-xl);
  }
}

/* Menu mobile moderno */
.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.menu-mobile.open {
  right: 0;
}

.menu-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =================
   CARDS RESPONSIVOS
   ================= */

.card-responsive {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: var(--space-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

@media (min-width: 640px) {
  .card-responsive {
    padding: var(--space-md);
    border-radius: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card-responsive {
    padding: var(--space-lg);
    border-radius: 2rem;
  }
}

.card-responsive:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .card-responsive:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
}

/* =================
   FORMULÁRIOS RESPONSIVOS
   ================= */

.form-responsive {
  width: 100%;
  max-width: 100%;
}

.form-group-responsive {
  margin-bottom: var(--space-sm);
}

@media (min-width: 640px) {
  .form-group-responsive {
    margin-bottom: var(--space-md);
  }
}

.input-responsive {
  width: 100%;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .input-responsive {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-base);
    border-radius: 0.75rem;
  }
}

.input-responsive:focus {
  outline: none;
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

/* =================
   BOTÕES RESPONSIVOS
   ================= */

.btn-responsive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .btn-responsive {
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-base);
    border-radius: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .btn-responsive {
    padding: var(--space-md) var(--space-lg);
    border-radius: 1rem;
  }
}

.btn-responsive:hover {
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .btn-responsive:hover {
    transform: translateY(-2px);
  }
}

/* Variações de botões */
.btn-primary-responsive {
  background: linear-gradient(135deg, #e11d48, #f59e42);
  color: white;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.btn-primary-responsive:hover {
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
}

.btn-secondary-responsive {
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  border: 1px solid rgba(30, 41, 59, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary-responsive:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #e11d48;
  color: #e11d48;
}

/* =================
   MODALS RESPONSIVOS
   ================= */

.modal-responsive {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--space-sm);
}

.modal-content-responsive {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: var(--space-md);
  width: 100%;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
  .modal-content-responsive {
    padding: var(--space-lg);
    max-width: 480px;
    border-radius: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .modal-content-responsive {
    padding: var(--space-xl);
    max-width: 640px;
    border-radius: 2rem;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =================
   TABELAS RESPONSIVAS
   ================= */

.table-responsive-container {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: white;
}

.table-responsive {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.table-responsive th,
.table-responsive td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .table-responsive th,
  .table-responsive td {
    padding: var(--space-md);
    font-size: var(--text-base);
  }
}

.table-responsive th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.table-responsive tr:hover {
  background: #f9fafb;
}

/* =================
   ANIMATIONS RESPONSIVAS
   ================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.fade-in-responsive {
  opacity: 0;
  animation: fadeInResponsive 0.6s ease-out forwards;
}

@keyframes fadeInResponsive {
  to {
    opacity: 1;
  }
}

.slide-up-responsive {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpResponsive 0.6s ease-out forwards;
}

@keyframes slideUpResponsive {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================
   UTILITIES RESPONSIVAS
   ================= */

/* Visibilidade por breakpoint */
.hidden-xs {
  display: none;
}

@media (min-width: 640px) {
  .hidden-xs {
    display: block;
  }
}

.visible-xs {
  display: block;
}

@media (min-width: 640px) {
  .visible-xs {
    display: none;
  }
}

.hidden-sm {
  display: block;
}

@media (min-width: 640px) and (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}

.visible-sm {
  display: none;
}

@media (min-width: 640px) and (max-width: 767px) {
  .visible-sm {
    display: block;
  }
}

.hidden-md {
  display: block;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-md {
    display: none;
  }
}

.visible-md {
  display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .visible-md {
    display: block;
  }
}

.hidden-lg {
  display: block;
}

@media (min-width: 1024px) {
  .hidden-lg {
    display: none;
  }
}

.visible-lg {
  display: none;
}

@media (min-width: 1024px) {
  .visible-lg {
    display: block;
  }
}

/* Flexbox responsivo */
.flex-responsive {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .flex-responsive {
    flex-direction: row;
    gap: var(--space-md);
  }
}

.flex-responsive-reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .flex-responsive-reverse {
    flex-direction: row-reverse;
    gap: var(--space-md);
  }
}

/* =================
   PERFORMANCE OTIMIZATIONS
   ================= */

/* Otimização de hardware acceleration para elementos animados */
.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Lazy loading otimização */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Content loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* =================
   FILTROS RESPONSIVOS
   ================= */

.responsive-filters {
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.filter-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
  align-items: end;
}

@media (min-width: 640px) {
  .filter-grid {
    gap: var(--space-md);
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.filter-item {
  display: flex;
  flex-direction: column;
}

.filter-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  height: 2.5rem;
}

.filter-select:focus {
  outline: none;
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.btn-clear-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 0.75rem;
  color: #e11d48;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
}

.btn-clear-filters:hover {
  background: rgba(225, 29, 72, 0.2);
  transform: translateY(-1px);
}

/* =================
   CARROSSEL RESPONSIVO
   ================= */

/* Container principal do carrossel */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  min-height: 340px;
  /* Overlay escuro para o fundo do carrossel */
}

 .carousel-container::before {
   content: '';
   position: absolute;
   inset: 0;
  background: rgba(0,0,0,0.10);
   z-index: 1;
   pointer-events: none;
   border-radius: inherit;
}

@media (min-width: 768px) {
  .carousel-container {
    border-radius: 2rem;
    min-height: 420px;
  }
}

/* Track do carrossel */
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Seções responsivas */
.main-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md) var(--space-2xl);
}

@media (min-width: 768px) {
  .main-container {
    padding: var(--space-md) var(--space-lg) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .main-container {
    padding: var(--space-lg) var(--space-xl) var(--space-2xl);
  }
}

.hero-section {
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .hero-section {
    margin-bottom: var(--space-2xl);
  }
}

/* Section header */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.2rem var(--space-lg);
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.section-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.badge-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: linear-gradient(135deg, #e11d48, #f59e42);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .badge-text {
    font-size: var(--text-base);
  }
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 30;
  color: white;
}

@media (min-width: 768px) {
  .carousel-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (max-width: 767px) {
  .carousel-btn {
    top: 35%;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .carousel-btn svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.carousel-btn:hover svg {
  transform: scale(1.1);
}

.carousel-btn-left {
  left: 0.5rem;
}

.carousel-btn-right {
  right: 0.5rem;
}
