/* public/assets/css/style.css */
/* Sistema di design moderno per Basta Pidocchietti */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* OKLCH Color Palette */
  --brand-orange: oklch(68% 0.19 50);       /* #f39200 */
  --brand-orange-hover: oklch(62% 0.20 48);
  --brand-orange-light: oklch(95% 0.05 55);
  
  --brand-green: oklch(65% 0.18 145);      /* #27ae60 */
  --brand-green-hover: oklch(58% 0.19 145);
  --brand-green-light: oklch(95% 0.05 145);
  
  --color-bg: oklch(98.5% 0.005 85);        /* #fbfaf8 */
  --color-surface: oklch(100% 0 0);         /* #ffffff */
  --color-surface-soft: oklch(96% 0.01 90);
  
  --color-text: oklch(25% 0.02 240);        /* #1e293b */
  --color-text-muted: oklch(50% 0.02 240);  /* #64748b */
  --color-border: oklch(90% 0.01 90);
  
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px -6px rgba(0, 0, 0, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1240px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Topbar */
.topbar {
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.topbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.topbar-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-orange);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--brand-orange);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--brand-orange-hover);
  box-shadow: 0 4px 14px rgba(243, 146, 0, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--brand-green);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--brand-green-hover);
  box-shadow: 0 4px 14px rgba(39, 174, 96, 0.35);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4.5rem 0;
}

/* Section Titles */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.badge-tag.badge-green {
  background: var(--brand-green-light);
  color: var(--brand-green);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 100%);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.hero-content h1 span {
  color: var(--brand-orange);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.trust-item svg {
  color: var(--brand-green);
  flex-shrink: 0;
}

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

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--color-border);
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-green-light);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Feature Cards (Valori del marchio) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.value-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon.green {
  background: var(--brand-green-light);
  color: var(--brand-green);
}

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

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Come lo facciamo */
.how-section {
  background: #ffffff;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.how-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #ffffff;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  background: var(--color-bg);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.step-item:hover {
  border-color: var(--brand-green);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   Method Steps Section (Gama Cromática de la Marca & Alto Contraste)
   ========================================================= */
.method-steps-section {
  background-color: #f0f7f2;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(243, 146, 0, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(27, 154, 71, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #f4faf6 0%, #eaf5ed 50%, #f1f8f3 100%);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  border-top: 1px solid #d5e9dc;
  border-bottom: 1px solid #d5e9dc;
}

.method-steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243, 146, 0, 0.5), rgba(27, 154, 71, 0.6), transparent);
}

.method-steps-section .method-badge {
  background: #fff4e5;
  color: #d97706;
  border: 1px solid #fed7aa;
  box-shadow: 0 2px 8px rgba(243, 146, 0, 0.12);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.method-steps-section .method-title {
  color: #0f172a;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.35rem;
}

.method-steps-section .method-subtitle {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto;
}

.method-steps-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

@media (max-width: 992px) {
  .method-steps-section .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.method-steps-section .step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid #d9e9df;
  box-shadow: 0 10px 25px -5px rgba(27, 154, 71, 0.07), 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.method-steps-section .step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.35s ease;
}

.method-steps-section .step-card.step-card-phase-1::before {
  background: linear-gradient(90deg, #f39200, #fbbf24);
}

.method-steps-section .step-card.step-card-phase-2::before {
  background: linear-gradient(90deg, #1b9a47, #4ade80);
}

.method-steps-section .step-card.step-card-phase-3::before {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.method-steps-section .step-card:hover {
  transform: translateY(-8px);
}

.method-steps-section .step-card.step-card-phase-1:hover {
  border-color: #f39200;
  box-shadow: 0 20px 40px -8px rgba(243, 146, 0, 0.22);
}

.method-steps-section .step-card.step-card-phase-2:hover {
  border-color: #1b9a47;
  box-shadow: 0 20px 40px -8px rgba(27, 154, 71, 0.22);
}

.method-steps-section .step-card.step-card-phase-3:hover {
  border-color: #0284c7;
  box-shadow: 0 20px 40px -8px rgba(2, 132, 199, 0.22);
}

.method-steps-section .step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Números 01, 02, 03 con altísima legibilidad y color de marca */
.method-steps-section .step-number-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.method-steps-section .step-number-tag.phase-1 {
  color: #f39200;
}

.method-steps-section .step-number-tag.phase-2 {
  color: #1b9a47;
}

.method-steps-section .step-number-tag.phase-3 {
  color: #0284c7;
}

.method-steps-section .step-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-steps-section .step-badge-pill.phase-1 {
  background: #fff4e5;
  color: #d97706;
  border: 1px solid #fed7aa;
}

.method-steps-section .step-badge-pill.phase-2 {
  background: #e8f7ed;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.method-steps-section .step-badge-pill.phase-3 {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.method-steps-section .step-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.method-steps-section .step-card:hover .step-icon-wrapper {
  transform: scale(1.08);
}

.method-steps-section .step-icon-wrapper.phase-1 {
  background: #fff4e5;
  color: #f39200;
  border: 1px solid #fed7aa;
}

.method-steps-section .step-icon-wrapper.phase-2 {
  background: #e8f7ed;
  color: #1b9a47;
  border: 1px solid #bbf7d0;
}

.method-steps-section .step-icon-wrapper.phase-3 {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.method-steps-section .step-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.method-steps-section .step-card-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.method-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1b9a47 0%, #22c55e 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 28px -4px rgba(27, 154, 71, 0.45);
  border: none;
  transition: all 0.3s ease;
}

.method-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px -4px rgba(27, 154, 71, 0.6);
}

.step-number {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: var(--radius-full);
  background: var(--brand-green);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.step-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.step-content p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* Centri Cards Grid */
.centri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.centro-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.centro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.centro-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

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

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

.centro-city-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-orange);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}

.centro-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.centro-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.centro-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.centro-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.centro-info-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.centro-card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.centro-card-actions .btn {
  flex: 1;
}

/* Detail Centro Page */
.centro-detail-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 100%);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.centro-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  margin-top: 2rem;
}

.centro-main-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.booking-form-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 2px solid var(--brand-orange-light);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--color-text);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
}

/* Alert Boxes */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: none;
}

.alert-success {
  background: var(--brand-green-light);
  color: oklch(35% 0.15 145);
  border: 1px solid var(--brand-green);
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #f87171;
}

/* Franchising Page */
.franchise-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  padding: 4rem 0 3rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.reason-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.reason-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.reason-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-green-light);
  color: var(--brand-green);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 4.5rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.footer-col p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer-links a {
  color: #9ca3af;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .how-grid, .centro-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .topbar-contacts {
    width: 100%;
    justify-content: space-between;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Hero Stats & International Network (Basta Pidocchietti & No More Lice)
   ========================================================================== */
.hero-network-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(243, 146, 0, 0.12) 0%, rgba(39, 174, 96, 0.12) 100%);
  border: 1px solid rgba(243, 146, 0, 0.25);
  color: var(--color-text);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hero-network-badge svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.hero-stats-wrapper {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hero-stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
  opacity: 0;
  transition: var(--transition);
}

.hero-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(243, 146, 0, 0.35);
}

.hero-stat-card:hover::before {
  opacity: 1;
}

.hero-stat-header {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-orange);
  letter-spacing: -0.02em;
}

.hero-stat-card.green .hero-stat-number {
  color: var(--brand-green);
}

.hero-stat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.hero-stat-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-top: 0.35rem;
}

@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hero-stat-number {
    font-size: 1.85rem;
  }
}

/* ==========================================================================
   Floating Language Switcher (Bottom-Left / Abajo a la izquierda)
   ========================================================================== */
.floating-lang-switcher {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-full);
  padding: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  user-select: none;
}

.floating-lang-switcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -4px rgba(0, 0, 0, 0.22);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.lang-btn .flag-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: inline-block;
  vertical-align: middle;
}

.lang-btn:hover {
  color: var(--color-text);
  background: rgba(243, 146, 0, 0.08);
}

.lang-btn.active {
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(243, 146, 0, 0.4);
  border-color: rgba(243, 146, 0, 0.5);
}

.lang-btn.active:hover {
  background: var(--brand-orange-hover);
  color: #ffffff;
}

@media (max-width: 480px) {
  .floating-lang-switcher {
    bottom: 16px;
    left: 16px;
    padding: 4px;
  }
  .lang-btn {
    padding: 5px 9px;
    font-size: 0.775rem;
  }
}

/* ==========================================================================
   Google My Business Reviews Section
   ========================================================================== */
.google-reviews-section {
  background: #ffffff;
  padding: 5rem 0 5.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.google-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
}

.google-stars {
  color: #fbbc04;
  font-size: 1.15rem;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.08);
  border-color: rgba(243, 146, 0, 0.35);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ea580c 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar.green {
  background: linear-gradient(135deg, var(--brand-green) 0%, #15803d 100%);
}

.review-avatar.blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.review-avatar.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.review-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.2;
}

.review-author-info span {
  font-size: 0.775rem;
  color: var(--color-text-muted);
}

.review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-clinic-badge {
  font-weight: 600;
  color: var(--brand-orange);
  background: rgba(243, 146, 0, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
}

/* =========================================================
   Centro Photo Slider & Fixed Photo
   ========================================================= */
.centro-fixed-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  background: #f8fafc;
}

.centro-fixed-photo img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.centro-slider-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  background: #0f172a;
}

.centro-slider-viewport {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.centro-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.02);
}

.centro-slider-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.centro-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.centro-slide-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.centro-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.centro-slider-btn:hover {
  background: #ffffff;
  color: var(--brand-orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.centro-slider-btn.prev {
  left: 16px;
}

.centro-slider-btn.next {
  right: 16px;
}

.centro-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 20px;
}

.centro-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.centro-slider-dot.active {
  background: var(--brand-orange);
  width: 26px;
  border-radius: 10px;
}

.centro-slider-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 2rem;
  scrollbar-width: thin;
}

.centro-slider-thumb {
  flex: 0 0 90px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.centro-slider-thumb:hover {
  opacity: 0.9;
}

.centro-slider-thumb.active {
  opacity: 1;
  border-color: var(--brand-orange);
  box-shadow: 0 2px 10px rgba(243, 146, 0, 0.4);
}

.centro-slider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .centro-slider-viewport {
    height: 280px;
  }
  .centro-slider-btn {
    width: 38px;
    height: 38px;
  }
}

