/* ============================
   TOELETTATURA MONTEVIDEO
   Main Stylesheet
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* ===== CSS Variables ===== */
:root {
  --primary: #c44b82;
  --primary-dark: #a83d6d;
  --primary-light: #e8a4c8;
  --primary-very-light: #fef5f9;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #faf7f8;
  --bg-dark: #2d2d2d;
  --border: #e5e7eb;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px -10px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

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

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.logo-text .subbrand {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -2px;
  transition: var(--transition);
}

.header:not(.scrolled) .logo-text .brand { color: white; }
.header:not(.scrolled) .logo-text .subbrand { color: rgba(255,255,255,0.7); }
.header.scrolled .logo-text .brand { color: var(--primary); }
.header.scrolled .logo-text .subbrand { color: var(--text-muted); }

/* Nav */
.nav-desktop {
  display: none;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.header:not(.scrolled) .nav-desktop a {
  color: rgba(255,255,255,0.8);
}

.header:not(.scrolled) .nav-desktop a:hover,
.header:not(.scrolled) .nav-desktop a.active {
  color: white;
}

.header.scrolled .nav-desktop a {
  color: var(--text-muted);
}

.header.scrolled .nav-desktop a:hover,
.header.scrolled .nav-desktop a.active {
  color: var(--primary);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

/* CTA Button */
.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.header:not(.scrolled) .header-cta {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: white;
}

.header:not(.scrolled) .header-cta:hover {
  background: rgba(255,255,255,0.3);
}

.header.scrolled .header-cta {
  background: var(--primary);
  color: white;
}

.header.scrolled .header-cta:hover {
  background: var(--primary-dark);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.header:not(.scrolled) .mobile-toggle {
  color: white;
}

.header.scrolled .mobile-toggle {
  color: var(--text-dark);
}

.mobile-toggle:hover {
  background: rgba(0,0,0,0.05);
}

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

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--primary-very-light);
  color: var(--primary);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.875rem;
  background: var(--primary);
  color: white;
  border-radius: 9999px;
  font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

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

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--primary-light);
  display: block;
}

.hero h1 .sub {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196,75,130,0.3);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.6);
}

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

/* ===== Section Styles ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-light);
}

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

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title .accent {
  color: var(--primary);
}

.section-line {
  width: 64px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.two-col .text-col h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.two-col .text-col h2 .accent {
  color: var(--primary);
  display: block;
}

.two-col .text-col p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.two-col .text-col p:last-of-type {
  margin-bottom: 0;
}

.img-col {
  position: relative;
}

.img-col .blob {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-very-light);
  z-index: -1;
}

.img-col .blob-1 {
  width: 96px;
  height: 96px;
  top: -16px;
  left: -16px;
}

.img-col .blob-2 {
  width: 128px;
  height: 128px;
  bottom: -24px;
  right: -24px;
}

.img-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.img-col .floating-card {
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.img-col .floating-card .icon-circle {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.img-col .floating-card .icon-circle svg {
  width: 24px;
  height: 24px;
}

.floating-card-text p:first-child {
  font-weight: 700;
  color: var(--text-dark);
}

.floating-card-text p:last-child {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

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

.feature-mini {
  text-align: center;
  padding: 1rem;
  background: var(--primary-very-light);
  border-radius: var(--radius);
}

.feature-mini svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.feature-mini p:first-of-type {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.feature-mini p:last-of-type {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
  margin-top: 20px;
}

.link-arrow:hover {
  gap: 0.75rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(196,75,130,0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: var(--transition);
}

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

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

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

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

/* ===== Features List (for treatments) ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--primary-very-light);
  border-radius: var(--radius);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,0.3);
}

.gallery-zoom {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 0.5rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.review-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: var(--primary);
  opacity: 0.15;
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  fill: #fbbf24;
}

.review-text {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.review-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
}

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

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-very-light);
  border-radius: 9999px;
  margin-top: 1rem;
}

.google-badge svg {
  width: 24px;
  height: 24px;
}

.google-badge span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: white;
}

.footer-map {
  width: 100%;
  height: 400px;
  position: relative;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

.map-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: white;
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  max-width: 280px;
}

.map-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.map-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.map-card-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.map-card-info svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

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

.footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.footer-brand-text {
  display: flex;
  align-items: center;
}

.footer-brand-text img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand-text h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.footer-brand-text p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: -2px;
}

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: #c44b82;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: var(--primary);
}

.footer-contact-item .icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-contact-item:hover .icon-box {
  background: rgba(196,75,130,0.2);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
}

.footer-contact-item .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-contact-item .value {
  font-size: 0.875rem;
  color: white;
}

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

.footer-hours svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours .day {
  font-weight: 500;
  color: white;
}

.footer-hours .time {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-hours.closed .time {
  color: #ef4444;
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-bottom-links span {
  cursor: pointer;
  transition: var(--transition);
}

.footer-bottom-links span:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== Page Hero (internal pages) ===== */
.page-hero {
  padding-top: 80px;
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.page-hero-gradient-pink {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.page-hero-gradient-purple {
  background: linear-gradient(135deg, #8b2f5c, #5a1f3d);
}

.page-hero .circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero .circles .circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-hero-label {
  display: inline-block;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ===== Cards (toelettatura/servizi pages) ===== */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-xl);
}

.card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

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

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

/* Alternating layout for toelettatura page */
.alt-row {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.alt-row:last-child {
  margin-bottom: 0;
}

.alt-row-img {
  position: relative;
}

.alt-row-img .blob {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-very-light);
  z-index: -1;
}

.alt-row-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.alt-row-text .icon-box {
  width: 56px;
  height: 56px;
  background: var(--primary-very-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.alt-row-text .icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.alt-row-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.alt-row-text p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--primary-very-light);
}

.contact-info-card .icon-circle {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon-circle svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-info-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.contact-info-card:hover p {
  color: var(--primary);
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 1.5rem;
}

.whatsapp-cta:hover {
  background: #128c7e;
}

.whatsapp-cta svg {
  width: 20px;
  height: 20px;
}

.contact-map-frame {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info-box {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.contact-info-box h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

/* ===== Info Card (for SPA section) ===== */
.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

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

.info-grid-item .num {
  width: 32px;
  height: 32px;
  background: var(--primary-very-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

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

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 3rem 0;
  background: var(--primary);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

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

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

.cta-banner .btn-white:hover {
  background: #f3f4f6;
}

.cta-banner .btn-outline-white {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

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

/* =====================================================
   MOBILE OVERRIDES — max-width: 639px (below SM breakpoint)
   ===================================================== */
@media (max-width: 639px) {
  /* Hero: smaller title, centered, less padding */
  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .hero h1 .sub {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .hero-content {
    text-align: center;
    padding: 0 1.25rem;
  }

  .hero-badge {
    margin: 0 auto 1rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-scroll {
    bottom: 1rem;
  }

  /* Feature mini: 1 column on mobile */
  .features-mini {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .feature-mini {
    padding: 1.25rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-mini svg {
    margin: 0;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
  }

  .feature-mini p:first-of-type {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .feature-mini p:last-of-type {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Services: ensure single column */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Gallery: 2 columns, smaller gap */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  /* Reviews: single column */
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer map card: shrink for small screens */
  .map-card {
    max-width: calc(100vw - 2rem);
    padding: 1rem;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    border-radius: 0.75rem;
  }

  /* Section padding: tighter on mobile */
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-content {
    padding: 2.5rem 1rem;
  }

  /* Lightbox buttons: smaller touch targets */
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
  }
  
  .header-cta {
    display: inline-flex;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .two-col.reverse .text-col {
    order: 2;
  }
  
  .two-col.reverse .img-col {
    order: 1;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .alt-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .alt-row.reverse .alt-row-text {
    order: 2;
  }
  
  .alt-row.reverse .alt-row-img {
    order: 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-map {
    height: 450px;
  }
}

/* ============================
   PATCH RESPONSIVE & IMG HEIGHT
   Da appendere alla fine di style.css
   ============================ */

/* ===== Limite altezza immagini (richiesta) =====
   Le immagini dei box (.img-col img) non superano mai 500px di altezza,
   mantenendo proporzioni con object-fit: cover */
.img-col img {
  min-height: 460px;
  width: 100%;
  object-fit: cover;
}

/* Anche le immagini hero rispettano il limite ragionevole su mobile */
.hero-bg img {
}


/* ============================
   FIX RESPONSIVE MOBILE
   ============================ */

/* ===== Mobile piccoli (<= 480px) ===== */
@media (max-width: 480px) {
  /* Hero: meno alto su schermi piccoli */
  .hero {
    min-height: 540px;
    height: auto;
    padding: 7rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-buttons .btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Two-col: gap ridotto su mobile */
  .two-col {
    gap: 2rem;
  }

  /* Immagine col più contenuta su mobile */
  .img-col img {
    max-height: 320px;
  }

  /* Section header: titoli più piccoli */
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  /* Service card: padding ridotto */
  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  /* Review card */
  .review-card {
    padding: 1.5rem 1.25rem;
  }

  /* Footer grid singola colonna su mobile piccolo */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .footer-content {
    padding: 2rem 1.25rem;
  }

  /* Map card più aderente al contenuto */
  .footer-map {
    height: 320px;
  }

  /* Contact layout: gap mobile */
  .contact-layout {
    gap: 2rem !important;
  }

  /* Card contatti: mantieni 2 colonne anche su piccolo (più compatte) */
  .contact-cards {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  .contact-card {
    padding: 1.25rem 0.75rem !important;
  }

  .contact-card h3 {
    font-size: 0.95rem !important;
  }

  .contact-card p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .contact-card-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 0.6rem !important;
  }

  /* Form contatti */
  .contact-form {
    padding: 1.5rem 1.25rem !important;
  }

  .contact-form h3 {
    font-size: 1.25rem !important;
  }
}

/* ===== Mobile medio / Tablet stretto (481px - 767px) ===== */
@media (min-width: 481px) and (max-width: 767px) {
  .hero {
    min-height: 600px;
    height: auto;
    padding: 7rem 0 4rem;
  }

  .img-col img {
    max-height: 400px;
  }

  /* Su mobile/tablet stretto la two-col è verticale */
  .two-col {
    gap: 2.5rem;
  }
}

/* ===== Tablet (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Two-col gap ridotto su tablet */
  .two-col {
    gap: 2.5rem !important;
  }

  /* Immagini più contenute su tablet */
  .img-col img {
    max-height: 350px;
  }

  /* Section padding tablet */
  .section {
    padding: 4rem 0;
  }
}


/* ============================
   BLOB DECORATIVI: ridotti su mobile
   per non invadere il contenuto
   ============================ */
@media (max-width: 767px) {
  .img-col .blob-1 {
    width: 64px;
    height: 64px;
  }

  .img-col .blob-2 {
    width: 80px;
    height: 80px;
  }
  
  .two-col .text-col h2 .accent {
    display: inline;
  }
   
}
