/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #e5414f;
  --primary-light: #ff7b70;
  --background: #fdfcfa;
  --foreground: #1d1e1b;
  --card: #f9f7f4;
  --secondary: #f5f0ea;
  --muted: #f3efeb;
  --muted-foreground: #6b7280;
  --border: #e8e2dc;
  --radius: 0.75rem;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: #f1f1f1;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  color: var(--muted-foreground);
}

.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: var(--muted);
}

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

  .mobile-menu-btn {
    display: none;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,252,250,0.95), rgba(253,252,250,0.7), transparent);
}

.hero-overlay.hero-overlay-dark {
  background: linear-gradient(to right, rgba(253,252,250,1), rgba(253,252,250,0.95), rgba(253,252,250,0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--foreground);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-order-note {
  font-size: 0.875rem;
  color: rgba(107, 114, 128, 0.7);
  margin-top: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-indicators {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.hero-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator.active {
  background: var(--primary);
  width: 24px;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
  z-index: 10;
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: hsl(40 35% 92% / 0.3);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(248, 99, 86, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--muted-foreground);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.dish-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.dish-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.dish-card:hover .dish-image img {
  transform: scale(1.1);
}

.dish-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.dish-content {
  padding: 1.5rem;
}

.dish-name {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.dish-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

.menu-cta a {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-cta a:hover {
  text-decoration: underline;
}

/* ===== LOCATION SECTION ===== */
.location-section {
  background: hsl(40 35% 92% / 0.3);
}

.location-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.location-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
}

.location-gallery {
  position: relative;
  aspect-ratio: 16/9;
}

.location-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.location-gallery-img.active {
  opacity: 1;
}

.location-gallery-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.location-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-indicator:hover {
  background-color: rgba(255,255,255,0.75);
}

.location-indicator.active {
  background-color: white;
  width: 1.5rem;
}

.info-cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card-elevated {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.info-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: rgba(248, 99, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.map-container-full {
  margin-top: 4rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  height: 320px;
}

.map-container-full iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Legacy location styles - keep for compatibility */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--muted);
  border-radius: 1rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(248, 99, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.info-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.map-container {
  margin-top: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ===== CATERING SECTION ===== */
.catering-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.catering-image-wrapper {
  position: relative;
}

.catering-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.catering-mosaic-5 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mosaic-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

.mosaic-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-top-row .mosaic-item img {
  aspect-ratio: 1;
}

.mosaic-bottom-row .mosaic-item img {
  height: 12rem;
}

.mosaic-large {
  grid-row: span 2;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mosaic-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-small {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mosaic-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.catering-decoration-1 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(248, 99, 86, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.catering-decoration-2 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(248, 99, 86, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(248, 99, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.feature-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

/* ===== CONTACT SECTION ===== */
.contact-section-centered {
  padding: 5rem 0 8rem;
}

.contact-centered-wrapper {
  max-width: 42rem;
  margin: 0 auto;
}

.contact-centered-wrapper .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-centered {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

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

.form-input {
  height: 3rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(248, 99, 86, 0.1);
}

.form-textarea {
  resize: none;
  min-height: 150px;
}

.form-submit-full {
  width: 100%;
  padding: 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit-full svg {
  width: 16px;
  height: 16px;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  padding: 4rem 0 6rem;
  background: rgba(248, 99, 86, 0.05);
}

.instagram-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.instagram-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.instagram-section .section-title {
  margin-bottom: 1rem;
}

.instagram-section .section-text {
  margin-bottom: 2rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: white;
  border-radius: 9999px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.btn-instagram:hover {
  opacity: 0.9;
}

.btn-instagram svg {
  width: 20px;
  height: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--foreground);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

  .footer-grid.footer-grid-3col {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-size: 0.875rem;
  max-width: 300px;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ===== PAGE HERO (for subpages) ===== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
  background-size: cover;
  background-position: center;
}

.page-hero.page-hero-short {
  min-height: 50vh;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

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

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero-text {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ===== ORIGINS SECTION ===== */
.origins-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.origins-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.origins-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== VALUES SECTION ===== */
.values-section {
  background: var(--muted);
}

.values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: rgba(248, 99, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-text {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

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

.btn-white:hover {
  background: rgba(255,255,255,0.9);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== STEPS SECTION ===== */
.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: rgba(248, 99, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.step-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== HOW IT WORKS PREVIEW ===== */
.how-it-works-preview {
  padding: 4rem 0 6rem;
}

.steps-preview-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .steps-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-preview-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.step-preview-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-preview-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(248, 99, 86, 0.2);
  line-height: 1;
}

.step-preview-icon {
   width: 6rem;
   height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

 .step-preview-illustration {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.step-preview-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.step-preview-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.steps-preview-cta {
  text-align: center;
}

.steps-preview-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.steps-preview-cta .btn svg {
  transition: transform 0.3s ease;
}

.steps-preview-cta .btn:hover svg {
  transform: translateX(4px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ===== COMO FUNCIONA PAGE ===== */
.como-funciona-page {
  padding-top: 80px;
}

.como-hero {
  padding: 8rem 0 3rem;
  text-align: center;
}

.como-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(248, 99, 86, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.como-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.como-steps {
  padding: 3rem 0 4rem;
}

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

@media (min-width: 640px) {
  .como-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .como-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.como-step-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.como-step-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.como-step-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(248, 99, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.como-step-icon-circle svg {
  color: var(--primary);
}

.como-step-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.como-step-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.como-step-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.como-info-note {
  padding: 0 0 4rem;
}

.como-info-box {
  background: var(--muted);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.como-info-box p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.como-cta {
  padding: 0 0 5rem;
}

.como-cta-box {
  background: rgba(248, 99, 86, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .como-cta-box {
    padding: 3rem 4rem;
  }
}

.como-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--foreground);
}

.como-cta-text {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.como-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .como-cta-buttons {
    flex-direction: row;
  }
}

.como-cta-contact {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.como-cta-contact a {
  color: var(--primary);
  text-decoration: none;
}

.como-cta-contact a:hover {
  text-decoration: underline;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: rgba(245, 240, 234, 0.3);
}

.testimonials-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.stars-display {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.star-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: #d1d5db;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.star-icon.filled {
  fill: #fbbf24;
  stroke: #fbbf24;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.rating-max {
  color: var(--muted-foreground);
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
  position: relative;
  margin-top: 3rem;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .testimonials-carousel-wrapper {
    padding: 0 3rem;
  }
}

.testimonials-carousel-container {
  overflow: hidden;
}

.testimonials-grid {
  position: relative;
}

.testimonials-group {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.testimonials-group.active {
  display: grid;
  opacity: 1;
}

.testimonials-group.fading-out {
  display: grid;
  opacity: 0;
}

.testimonials-group.fading-in {
  display: grid;
  opacity: 0;
}

@media (min-width: 768px) {
  .testimonials-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--background);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--primary);
  color: white;
}

.carousel-arrow-prev {
  left: 0;
}

.carousel-arrow-next {
  right: 0;
}

@media (min-width: 768px) {
  .carousel-arrow-prev {
    left: -0.5rem;
  }
  .carousel-arrow-next {
    right: -0.5rem;
  }
}

/* Dots Indicator */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonials-dots .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(26, 26, 26, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dots .dot:hover {
  background: rgba(26, 26, 26, 0.4);
}

.testimonials-dots .dot.active {
  background: var(--primary);
  width: 1.5rem;
}

.testimonial-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(248, 99, 86, 0.2);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars .star-icon {
  width: 1rem;
  height: 1rem;
}

.testimonial-text {
  color: rgba(26, 26, 26, 0.8);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(248, 99, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
  font-family: var(--font-display);
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-service-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.75rem;
  border-radius: 9999px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.google-reviews-link:hover {
  color: var(--primary-light);
}

.google-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== SOSTENIBLES PAGE ===== */
.sostenibles-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, #f0fdf4, var(--background));
  overflow: hidden;
}

.sostenibles-hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.decoration-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(134, 239, 172, 0.3);
}

.decoration-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(134, 239, 172, 0.2);
}

.decoration-3 {
  top: 50%;
  left: 25%;
  width: 6rem;
  height: 6rem;
  background: rgba(110, 231, 183, 0.4);
}

.sostenibles-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.sostenibles-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dcfce7;
  color: #15803d;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.sostenibles-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sostenibles-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-green {
  color: #16a34a;
}

.sostenibles-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.sostenibles-content {
  max-width: 56rem;
  margin: 0 auto;
}

/* Commitment Box */
.commitment-box {
  display: flex;
  gap: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 4rem;
}

.commitment-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commitment-icon svg {
  width: 2rem;
  height: 2rem;
  color: #16a34a;
}

.commitment-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.commitment-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.commitment-text strong {
  color: #15803d;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  border: 1px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: #16a34a;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-text {
  color: var(--muted-foreground);
}

/* Loyalty Card Section */
.loyalty-card-section {
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .loyalty-card-section {
    padding: 3rem;
  }
}

.loyalty-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .loyalty-title {
    font-size: 2rem;
  }
}

.loyalty-text {
  font-size: 1.125rem;
  color: #bbf7d0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.loyalty-text strong {
  color: white;
}

.loyalty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.loyalty-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Final CTA */
.final-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  width: 100%;
  justify-content: center;
}

.final-cta svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: #16a34a;
}

.final-cta p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
}

@media (max-width: 767px) {
  .commitment-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta {
    flex-direction: column;
    text-align: center;
  }
}

/* Too Good To Go Section */
.tgtg-section {
  background: #004d40;
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  margin-bottom: 4rem;
}

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

.tgtg-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tgtg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tgtg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #7DDDC3;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tgtg-badge svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tgtg-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .tgtg-title {
    font-size: 2rem;
  }
}

.tgtg-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tgtg-text strong {
  color: white;
}

.tgtg-subtext {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.tgtg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #7DDDC3;
  color: #004d40;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background 0.3s ease;
}

.tgtg-btn:hover {
  background: #6BC9B0;
}

.tgtg-btn svg {
  width: 1rem;
  height: 1rem;
}

.tgtg-logo-wrapper {
  display: flex;
  justify-content: center;
}

.tgtg-logo-box {
  background: #00615f;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tgtg-logo {
  width: 12rem;
  height: auto;
}
