@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 220 20% 10%;

  --primary: 168 76% 42%;
  --primary-foreground: 0 0% 100%;

  --secondary: 220 13% 18%;
  --secondary-foreground: 0 0% 100%;

  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;

  --accent: 168 76% 52%;

  --border: 220 13% 91%;

  --radius: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding: 0 1.5rem;
  }
}

.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
}

@media (max-width: 639px) {
  .btn-lg {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(168 76% 37%);
  transform: scale(1.05);
  box-shadow: 0 0 20px hsl(var(--primary) / 0.5), 0 0 40px hsl(var(--primary) / 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--primary) / 0.6);
  color: hsl(var(--primary));
}

.btn-outline:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  transform: scale(1.05);
}

.btn-outline-solid {
  background: transparent;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-outline-solid:hover {
  background: hsl(var(--primary) / 0.1);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: hsl(0 0% 100% / 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header.scrolled {
  background: hsl(0 0% 100% / 0.8);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border-bottom: 1px solid hsl(0 0% 100% / 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 640px) {
  .header-inner {
    height: 5rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .logo-link {
    gap: 0.75rem;
  }
}

.logo-link img {
  height: 4rem;
  width: auto;
}

@media (min-width: 640px) {
  .logo-link img { height: 5rem; }
}

@media (min-width: 768px) {
  .logo-link img { height: 6rem; }
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  display: none;
}

@media (min-width: 640px) {
  .logo-text { display: block; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

@media (min-width: 1280px) {
  .nav-desktop { gap: 2rem; }
}

.nav-link {
  background: none;
  border: none;
  color: hsl(var(--foreground) / 0.8);
  font-weight: 500;
  font-size: 0.875rem;
  position: relative;
  transition: color 0.3s ease;
}

@media (min-width: 1280px) {
  .nav-link { font-size: 1rem; }
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-link.icon-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: hsl(var(--primary));
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .header-cta { display: flex; }
}

@media (min-width: 1280px) {
  .header-cta { gap: 0.75rem; }
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  background: hsl(0 0% 100% / 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid hsl(0 0% 100% / 0.2);
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: hsl(var(--foreground) / 0.8);
  font-weight: 500;
  padding: 0.75rem 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.mobile-nav-link:hover {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
}

.mobile-cta {
  padding: 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--secondary) / 0.8);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(0 0% 100% / 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-badge { margin-bottom: 2rem; padding: 0.5rem 1rem; }
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: hsl(var(--primary));
  border-radius: 9999px;
  position: relative;
}

.hero-badge span.label {
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .hero-badge span.label { font-size: 0.875rem; }
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) { .hero h1 { font-size: 2.25rem; margin-bottom: 1.5rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero h1 .gradient {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 3s ease-in-out infinite;
}

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 0.5rem;
}

@media (min-width: 640px) { .hero h2 { font-size: 1.125rem; margin-bottom: 2rem; } }
@media (min-width: 768px) { .hero h2 { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero h2 { font-size: 1.5rem; } }

.hero .slogan {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .hero .slogan { font-size: 1.125rem; margin-bottom: 2.5rem; } }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; gap: 1rem; padding: 0; }
}

.hero-cta .btn { width: 100%; }

@media (min-width: 640px) {
  .hero-cta .btn { width: auto; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(0 0% 100% / 0.2);
  background: hsl(0 0% 100% / 0.05);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

@media (min-width: 640px) {
  .hero-stats {
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-stat { text-align: center; }

.hero-stat .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

@media (min-width: 640px) { .hero-stat .num { font-size: 1.875rem; } }
@media (min-width: 768px) { .hero-stat .num { font-size: 2.25rem; } }

.hero-stat .label2 {
  color: hsl(var(--primary-foreground) / 0.7);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

@media (min-width: 640px) { .hero-stat .label2 { font-size: 0.875rem; } }

/* ---------- Section header ---------- */
.section-eyebrow {
  display: inline-block;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .section-eyebrow { font-size: 0.875rem; margin-bottom: 1rem; } }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) { .section-header { margin-bottom: 4rem; } }

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .section-header h2 { font-size: 1.875rem; } }
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }

.section-header.light h2 { color: #fff; }
.section-header.light p { color: hsl(0 0% 100% / 0.8); }

.section-header p {
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.875rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) { .section-header p { font-size: 1rem; } }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 5rem; }
}

.about-text { order: 2; }
.about-image-wrap { order: 1; }

@media (min-width: 1024px) {
  .about-text { order: 1; }
  .about-image-wrap { order: 2; }
}

.about-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .about-text h3 { font-size: 1.5rem; margin-bottom: 1.5rem; } }

.about-text p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 0.875rem;
}

@media (min-width: 640px) { .about-text p { font-size: 1rem; margin-bottom: 1rem; } }

.about-image-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

@media (min-width: 640px) { .about-image-wrap { border-radius: 1.5rem; } }

.about-image-wrap img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 640px) { .about-image-wrap img { height: 18rem; } }
@media (min-width: 768px) { .about-image-wrap img { height: 20rem; } }
@media (min-width: 1024px) { .about-image-wrap img { height: 24rem; } }

.about-image-wrap:hover img { transform: scale(1.05); }

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--secondary) / 0.6), transparent);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .mission-vision { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 5rem; }
}

.mv-card {
  padding: 1.25rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) { .mv-card { padding: 1.5rem; } }
@media (min-width: 768px) { .mv-card { padding: 2rem; border-radius: 1.25rem; } }

.mv-card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  transform: translateY(-4px);
}

.mv-card.dark {
  background: hsl(var(--secondary) / 0.9);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid hsl(0 0% 100% / 0.1);
}

.mv-card.light {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(0 0% 100% / 0.4);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.mv-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .mv-card-head { gap: 1rem; margin-bottom: 1rem; } }

.mv-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) { .mv-icon { width: 3rem; height: 3rem; } }

.mv-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }

@media (min-width: 640px) { .mv-icon svg { width: 1.5rem; height: 1.5rem; } }

.mv-card-head h4 { font-size: 1.125rem; font-weight: 700; }

@media (min-width: 640px) { .mv-card-head h4 { font-size: 1.25rem; } }

.mv-card p { line-height: 1.7; font-size: 0.875rem; }

@media (min-width: 640px) { .mv-card p { font-size: 1rem; } }

.mv-card.dark p { color: hsl(0 0% 100% / 0.8); }
.mv-card.light p { color: hsl(var(--muted-foreground)); }

.values-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .values-title { font-size: 1.5rem; margin-bottom: 3rem; } }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) { .values-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(0 0% 100% / 0.4);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

@media (min-width: 640px) { .value-card { padding: 1.5rem; border-radius: 1.25rem; } }

.value-card:hover {
  box-shadow: 0 20px 40px -10px hsl(var(--secondary) / 0.3);
  transform: translateY(-8px);
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) { .value-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; margin-bottom: 1rem; } }

.value-card:hover .value-icon {
  background: hsl(var(--primary));
  transform: scale(1.1);
}

.value-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); transition: color 0.3s ease; }

@media (min-width: 640px) { .value-icon svg { width: 1.75rem; height: 1.75rem; } }

.value-card:hover .value-icon svg { color: #fff; }

.value-card h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

@media (min-width: 640px) { .value-card h4 { font-size: 1rem; margin-bottom: 0.5rem; } }

.value-card:hover h4 { color: hsl(var(--primary)); }

.value-card p { color: hsl(var(--muted-foreground)); font-size: 0.75rem; }

@media (min-width: 640px) { .value-card p { font-size: 0.875rem; } }

/* ---------- Services ---------- */
.services-section { position: relative; overflow: hidden; }

.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--muted) / 0.7);
}

.services-inner { position: relative; z-index: 10; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .showcase-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (min-width: 768px) { .showcase-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 3rem; } }

.showcase-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width: 640px) { .showcase-card { border-radius: 1.25rem; } }

.showcase-card.span-2 { grid-column: span 2 / span 2; }

@media (min-width: 768px) { .showcase-card.span-2 { grid-column: span 1 / span 1; } }

.showcase-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 640px) { .showcase-card img { height: 14rem; } }
@media (min-width: 768px) { .showcase-card img { height: 16rem; } }

.showcase-card:hover img { transform: scale(1.05); }

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--secondary) / 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

@media (min-width: 640px) { .showcase-overlay { padding: 1.5rem; } }

.showcase-overlay svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); margin-bottom: 0.25rem; }

@media (min-width: 640px) { .showcase-overlay svg { width: 2rem; height: 2rem; margin-bottom: 0.5rem; } }

.showcase-overlay h3 { font-size: 1rem; font-weight: 700; color: #fff; }

@media (min-width: 640px) { .showcase-overlay h3 { font-size: 1.125rem; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 3rem; } }

.service-card {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(0 0% 100% / 0.4);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  padding: 1.25rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

@media (min-width: 640px) { .service-card { padding: 1.5rem; } }
@media (min-width: 768px) { .service-card { padding: 2rem; border-radius: 1.25rem; } }

.service-card:hover {
  box-shadow: 0 20px 40px -10px hsl(var(--secondary) / 0.3);
  transform: translateY(-8px);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) { .service-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; margin-bottom: 1.5rem; } }

.service-card:hover .service-icon {
  background: hsl(var(--primary));
  transform: scale(1.1) rotate(3deg);
}

.service-icon svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); transition: color 0.3s ease; }

@media (min-width: 640px) { .service-icon svg { width: 1.75rem; height: 1.75rem; } }

.service-card:hover .service-icon svg { color: #fff; }

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

@media (min-width: 640px) { .service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; } }

.service-card:hover h3 { color: hsl(var(--primary)); }

.service-card p { color: hsl(var(--muted-foreground)); line-height: 1.7; font-size: 0.875rem; }

@media (min-width: 640px) { .service-card p { font-size: 1rem; } }

.pallet-cta {
  background: hsl(var(--secondary));
  color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
}

@media (min-width: 640px) { .pallet-cta { padding: 2rem; } }
@media (min-width: 768px) { .pallet-cta { padding: 3rem; border-radius: 1.5rem; } }

.pallet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) { .pallet-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.pallet-text { text-align: center; }

@media (min-width: 768px) { .pallet-text { text-align: left; } }

.pallet-text h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }

@media (min-width: 640px) { .pallet-text h3 { font-size: 1.5rem; } }
@media (min-width: 768px) { .pallet-text h3 { font-size: 1.875rem; } }

.pallet-text p {
  color: hsl(0 0% 100% / 0.8);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.875rem;
}

@media (min-width: 640px) { .pallet-text p { font-size: 1rem; margin-bottom: 1.5rem; } }

.pallet-visual { display: flex; justify-content: center; order: -1; }

@media (min-width: 768px) { .pallet-visual { order: 1; } }

.pallet-circles {
  width: 9rem;
  height: 9rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) { .pallet-circles { width: 12rem; height: 12rem; } }
@media (min-width: 768px) { .pallet-circles { width: 16rem; height: 16rem; } }

.pallet-circles-inner {
  width: 7rem;
  height: 7rem;
  background: hsl(var(--primary) / 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) { .pallet-circles-inner { width: 9rem; height: 9rem; } }
@media (min-width: 768px) { .pallet-circles-inner { width: 12rem; height: 12rem; } }

.pallet-circles-inner svg { width: 3.5rem; height: 3.5rem; color: hsl(var(--primary)); }

@media (min-width: 640px) { .pallet-circles-inner svg { width: 5rem; height: 5rem; } }
@media (min-width: 768px) { .pallet-circles-inner svg { width: 7rem; height: 7rem; } }

/* ---------- Brands ---------- */
.brands-section { background: hsl(var(--muted) / 0.3); }

.brands-section h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--secondary));
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .brands-section h2 { font-size: 1.875rem; } }
@media (min-width: 768px) { .brands-section h2 { font-size: 2.25rem; } }

.brands-section > .container-custom > p {
  text-align: center;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: 0.875rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) { .brands-section > .container-custom > p { font-size: 1rem; margin-bottom: 3rem; } }

.brands-track-wrap { overflow: hidden; }

.brands-track {
  display: flex;
  gap: 1rem;
  animation: brandsScroll 30s linear infinite;
  width: max-content;
}

@media (min-width: 768px) { .brands-track { gap: 1.5rem; } }

.brands-track-wrap:hover .brands-track { animation-play-state: paused; }

.brand-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (min-width: 640px) { .brand-card { width: 11rem; height: 11rem; padding: 2rem; } }

.brand-card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
  transform: translateY(-8px) scale(1.05);
}

.brand-card img { max-height: 5rem; width: auto; object-fit: contain; }

@media (min-width: 640px) { .brand-card img { max-height: 7rem; } }

@keyframes brandsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Vitrine Section ---------- */
.vitrine-section { position: relative; overflow: hidden; }

.vitrine-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vitrine-overlay { position: absolute; inset: 0; background: hsl(var(--background) / 0.75); }

.vitrine-inner { position: relative; z-index: 10; }

.vitrine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary) / 0.2);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.vitrine-badge svg { width: 0.875rem; height: 0.875rem; color: hsl(var(--primary)); }

.vitrine-badge span { color: hsl(var(--primary)); font-size: 0.75rem; font-weight: 500; }

@media (min-width: 640px) { .vitrine-badge span { font-size: 0.875rem; } }

.vitrine-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .vitrine-gallery { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; } }

.vitrine-img-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

@media (min-width: 640px) { .vitrine-img-card { border-radius: 1.25rem; } }

.vitrine-img-card img { width: 100%; height: 12rem; object-fit: cover; transition: transform 0.5s ease; }

@media (min-width: 640px) { .vitrine-img-card img { height: 14rem; } }
@media (min-width: 768px) { .vitrine-img-card img { height: 16rem; } }

.vitrine-img-card:hover img { transform: scale(1.05); }

.vitrine-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--secondary) / 0.8), transparent);
}

.vitrine-img-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

@media (min-width: 640px) { .vitrine-img-caption { bottom: 1rem; left: 1rem; right: 1rem; } }

.vitrine-img-caption h3 { font-size: 1rem; font-weight: 700; color: #fff; }

@media (min-width: 640px) { .vitrine-img-caption h3 { font-size: 1.125rem; } }

.vitrine-img-caption p { color: hsl(0 0% 100% / 0.8); font-size: 0.75rem; }

.vitrine-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) { .vitrine-features { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; } }

.vitrine-feature {
  background: hsl(var(--background) / 0.9);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

@media (min-width: 640px) { .vitrine-feature { padding: 1.5rem; border-radius: 1.25rem; } }

.vitrine-feature:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border-color: hsl(var(--primary) / 0.3);
}

.vitrine-feature-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

@media (min-width: 640px) { .vitrine-feature-icon { width: 3.5rem; height: 3.5rem; margin-bottom: 1rem; } }

.vitrine-feature-icon svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); }

@media (min-width: 640px) { .vitrine-feature-icon svg { width: 1.75rem; height: 1.75rem; } }

.vitrine-feature h3 { font-weight: 600; font-size: 1rem; margin-bottom: 0.375rem; }

@media (min-width: 640px) { .vitrine-feature h3 { font-size: 1.125rem; margin-bottom: 0.5rem; } }

.vitrine-feature p { color: hsl(var(--muted-foreground)); font-size: 0.75rem; }

@media (min-width: 640px) { .vitrine-feature p { font-size: 0.875rem; } }

.vitrine-cta-card {
  background: hsl(var(--secondary));
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) { .vitrine-cta-card { padding: 2rem; border-radius: 1.25rem; } }
@media (min-width: 768px) { .vitrine-cta-card { padding: 3rem; } }

.vitrine-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--primary) / 0.2), transparent);
}

.vitrine-cta-inner { position: relative; z-index: 10; }

.vitrine-cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 640px) { .vitrine-cta-icon { width: 5rem; height: 5rem; margin-bottom: 1.5rem; } }

.vitrine-cta-icon svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary)); }

@media (min-width: 640px) { .vitrine-cta-icon svg { width: 2.5rem; height: 2.5rem; } }

.vitrine-cta-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }

@media (min-width: 640px) { .vitrine-cta-card h3 { font-size: 1.5rem; } }
@media (min-width: 768px) { .vitrine-cta-card h3 { font-size: 1.875rem; } }

.vitrine-cta-card > .vitrine-cta-inner > p {
  color: hsl(0 0% 100% / 0.8);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) { .vitrine-cta-card > .vitrine-cta-inner > p { font-size: 1rem; margin-bottom: 2rem; } }
@media (min-width: 768px) { .vitrine-cta-card > .vitrine-cta-inner > p { font-size: 1.125rem; } }

/* ---------- Plans ---------- */
.plans-section { position: relative; overflow: hidden; }

.plans-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.plans-overlay { position: absolute; inset: 0; background: hsl(var(--secondary) / 0.7); }

.plans-inner { position: relative; z-index: 10; }

.plan-card {
  max-width: 56rem;
  margin: 0 auto;
  background: hsl(var(--secondary) / 0.9);
  backdrop-filter: blur(16px);
  color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
  border: 1px solid hsl(0 0% 100% / 0.1);
}

@media (min-width: 640px) { .plan-card { border-radius: 1.5rem; } }

.plan-card-header {
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
}

@media (min-width: 640px) { .plan-card-header { padding: 1.5rem; } }
@media (min-width: 768px) { .plan-card-header { padding: 2rem; } }

.plan-card-header h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

@media (min-width: 640px) { .plan-card-header h3 { font-size: 1.5rem; } }
@media (min-width: 768px) { .plan-card-header h3 { font-size: 1.875rem; } }

.plan-card-header p { color: hsl(0 0% 100% / 0.8); font-size: 0.875rem; }

@media (min-width: 640px) { .plan-card-header p { font-size: 1rem; } }

.plan-card-body { padding: 1.25rem; }

@media (min-width: 640px) { .plan-card-body { padding: 1.5rem; } }
@media (min-width: 768px) { .plan-card-body { padding: 2rem; } }
@media (min-width: 1024px) { .plan-card-body { padding: 3rem; } }

.plan-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .plan-highlights { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; } }
@media (min-width: 768px) { .plan-highlights { gap: 2rem; } }

.plan-highlight { text-align: center; }

.plan-highlight-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

@media (min-width: 640px) { .plan-highlight-icon { width: 3.5rem; height: 3.5rem; } }
@media (min-width: 768px) { .plan-highlight-icon { width: 4rem; height: 4rem; border-radius: 1rem; } }

.plan-highlight-icon svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); }

@media (min-width: 640px) { .plan-highlight-icon svg { width: 1.75rem; height: 1.75rem; } }
@media (min-width: 768px) { .plan-highlight-icon svg { width: 2rem; height: 2rem; } }

.plan-highlight h4 { font-weight: 700; margin-bottom: 0.25rem; font-size: 0.875rem; }

@media (min-width: 640px) { .plan-highlight h4 { font-size: 1rem; } }

.plan-highlight p { color: hsl(0 0% 100% / 0.7); font-size: 0.75rem; }

@media (min-width: 640px) { .plan-highlight p { font-size: 0.875rem; } }

.plan-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .plan-benefits { grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem; } }

.plan-benefit { display: flex; align-items: center; gap: 0.5rem; }

@media (min-width: 640px) { .plan-benefit { gap: 0.75rem; } }

.plan-benefit-check {
  width: 1.25rem;
  height: 1.25rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) { .plan-benefit-check { width: 1.5rem; height: 1.5rem; } }

.plan-benefit-check svg { width: 0.75rem; height: 0.75rem; color: hsl(var(--primary)); }

@media (min-width: 640px) { .plan-benefit-check svg { width: 1rem; height: 1rem; } }

.plan-benefit span { color: hsl(0 0% 100% / 0.9); font-size: 0.875rem; }

@media (min-width: 640px) { .plan-benefit span { font-size: 1rem; } }

.plan-cta { text-align: center; }

.plan-cta .btn { width: 100%; padding: 1rem 1.5rem; font-size: 1rem; }

@media (min-width: 640px) { .plan-cta .btn { width: auto; padding: 1.5rem 2.5rem; font-size: 1.125rem; } }

.plan-cta p {
  color: hsl(0 0% 100% / 0.6);
  font-size: 0.75rem;
  margin-top: 0.75rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) { .plan-cta p { font-size: 0.875rem; margin-top: 1rem; } }

/* ---------- Contact ---------- */
.contact-section { position: relative; overflow: hidden; }

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.contact-overlay { position: absolute; inset: 0; background: hsl(var(--muted) / 0.75); }

.contact-inner { position: relative; z-index: 10; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .contact-info h3 { font-size: 1.5rem; margin-bottom: 2rem; } }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .contact-item { gap: 1rem; margin-bottom: 1.5rem; } }

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) { .contact-icon { width: 3rem; height: 3rem; } }

.contact-icon svg { width: 1.25rem; height: 1.25rem; color: #000; }

@media (min-width: 640px) { .contact-icon svg { width: 1.5rem; height: 1.5rem; } }

.contact-item .label { color: hsl(var(--muted-foreground)); font-size: 0.75rem; margin-bottom: 0.25rem; }

@media (min-width: 640px) { .contact-item .label { font-size: 0.875rem; } }

.contact-item .value {
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.875rem;
  word-break: break-all;
}

@media (min-width: 640px) { .contact-item .value { font-size: 1rem; } }

.contact-item a.value:hover { color: hsl(var(--primary)); }

.whatsapp-cta {
  margin-top: 2rem;
  padding: 1rem;
  background: hsl(var(--secondary) / 0.9);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid hsl(0 0% 100% / 0.1);
}

@media (min-width: 640px) { .whatsapp-cta { margin-top: 2.5rem; padding: 1.5rem; } }

.whatsapp-cta h4 { color: #fff; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }

@media (min-width: 640px) { .whatsapp-cta h4 { font-size: 1.25rem; } }

.whatsapp-cta p { color: hsl(0 0% 100% / 0.8); margin-bottom: 0.75rem; font-size: 0.875rem; }

@media (min-width: 640px) { .whatsapp-cta p { font-size: 1rem; margin-bottom: 1rem; } }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
  font-size: 0.875rem;
}

@media (min-width: 640px) { .whatsapp-link { gap: 0.75rem; padding: 0.75rem 1.5rem; font-size: 1rem; } }

.whatsapp-link:hover { background: #20BD5A; }

.whatsapp-link img { width: 1.5rem; height: 1.5rem; }

@media (min-width: 640px) { .whatsapp-link img { width: 1.75rem; height: 1.75rem; } }

.contact-form-card {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid hsl(0 0% 100% / 0.4);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
}

@media (min-width: 640px) { .contact-form-card { padding: 1.5rem; } }
@media (min-width: 768px) { .contact-form-card { padding: 2rem; border-radius: 1.25rem; } }

.contact-form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }

@media (min-width: 640px) { .contact-form-card h3 { font-size: 1.5rem; margin-bottom: 1rem; } }

.contact-form-card > p { color: hsl(var(--muted-foreground)); margin-bottom: 1rem; font-size: 0.875rem; }

@media (min-width: 640px) { .contact-form-card > p { font-size: 1rem; margin-bottom: 1.5rem; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; } }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.375rem;
}

@media (min-width: 640px) { .form-group label { font-size: 0.875rem; margin-bottom: 0.5rem; } }

.form-group { margin-bottom: 0.75rem; }

@media (min-width: 640px) { .form-group { margin-bottom: 1rem; } }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) { .form-group input, .form-group textarea { padding: 0.75rem 1rem; font-size: 1rem; } }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.3);
}

.form-group textarea { resize: none; }

/* ---------- Footer ---------- */
.footer {
  background: hsl(var(--secondary));
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } }

.footer-brand { grid-column: 1 / -1; }

@media (min-width: 640px) { .footer-brand { grid-column: span 2 / span 2; } }
@media (min-width: 1024px) { .footer-brand { grid-column: span 1 / span 1; } }

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo-row .logo-box {
  background: #fff;
  border-radius: 9999px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-row img { height: 4rem; width: auto; }

@media (min-width: 640px) { .footer-logo-row img { height: 5rem; } }
@media (min-width: 768px) { .footer-logo-row img { height: 6rem; } }

.footer-logo-row span { font-weight: 700; font-size: 1.125rem; }

@media (min-width: 640px) { .footer-logo-row span { font-size: 1.25rem; } }

.footer-brand > p {
  color: hsl(0 0% 100% / 0.8);
  margin-bottom: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) { .footer-brand > p { font-size: 1rem; margin-bottom: 1.5rem; } }

.footer-cnpj { color: hsl(0 0% 100% / 0.6); font-size: 0.75rem; }

@media (min-width: 640px) { .footer-cnpj { font-size: 0.875rem; } }

.footer h4 { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }

@media (min-width: 640px) { .footer h4 { font-size: 1.125rem; margin-bottom: 1.5rem; } }

.footer-list li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }

@media (min-width: 640px) { .footer-list li { gap: 0.75rem; margin-bottom: 1rem; } }

.footer-list svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); margin-top: 0.125rem; flex-shrink: 0; }

@media (min-width: 640px) { .footer-list svg { width: 1.25rem; height: 1.25rem; } }

.footer-list span, .footer-list a {
  color: hsl(0 0% 100% / 0.8);
  font-size: 0.875rem;
}

@media (min-width: 640px) { .footer-list span, .footer-list a { font-size: 1rem; } }

.footer-list a:hover { color: hsl(var(--primary)); }

.footer-hours { display: flex; align-items: flex-start; gap: 0.75rem; }

.footer-hours svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); margin-top: 0.125rem; flex-shrink: 0; }

.footer-hours div { color: hsl(0 0% 100% / 0.8); font-size: 0.875rem; }

@media (min-width: 640px) { .footer-hours div { font-size: 1rem; } }

.footer-hours .strong { font-weight: 500; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--primary) / 0.2);
}

@media (min-width: 640px) { .footer-bottom { padding-top: 2rem; } }

.footer-bottom p {
  text-align: center;
  color: hsl(0 0% 100% / 0.6);
  font-size: 0.75rem;
}

@media (min-width: 640px) { .footer-bottom p { font-size: 0.875rem; } }

.footer-container {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) { .footer-container { padding-top: 6rem; } }

/* ---------- WhatsApp float button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  transition: transform 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.25); }

.whatsapp-float img {
  width: 4rem;
  height: 4rem;
  filter: drop-shadow(0 4px 6px rgb(0 0 0 / 0.3));
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img { transform: rotate(12deg); }

/* ---------- Vitrine page ---------- */
.vitrine-page {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
}

.vitrine-page-spacer { height: 5rem; flex-shrink: 0; }

.vitrine-page-main {
  flex: 1;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.vitrine-page-main iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 0;
}

/* ---------- Animations ---------- */
@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-ping { animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}
