/*
Theme Name: Nana Nails Lugo
Theme URI: https://www.nanashop.es
Author: Nana Nails
Author URI: https://www.nanashop.es
Description: Tema personalizado para Nana Nails - Centro de manicura y pedicura tradicional colombiana en Lugo. Diseño rosa y salmón vibrante con efectos 3D y animaciones.
Version: 1.1.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: nails, beauty, salon, pink, feminine, one-page
Text Domain: nana-nails
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --color-ink: #2D1B22;
  --color-ink-soft: #5C3D47;

  --color-pink: #FF6B9D;
  --color-pink-dark: #D94F7A;
  --color-pink-light: #FF8FB8;
  --color-hot-pink: #FF4D8D;
  --color-pink-muted: #A85C7A;

  --color-salmon: #FF8A65;
  --color-salmon-light: #FFAB8A;
  --color-salmon-dark: #E8704E;

  --color-coral: #FF6F5C;
  --color-rose: #FF5E8E;
  --color-rose-soft: #FFB3C6;
  --color-purple: #C77DFF;

  --color-border-pink: #FFD9E5;
  --color-border-soft: #FFEEF3;

  --color-bg-soft: #FFF8FA;
  --color-bg-warm: #FFFBF5;
  --color-cream: #FFFBF9;
  --color-ivory: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--color-ink);
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
  color: var(--color-ink-soft);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

/* Utilities */
.font-display { font-family: var(--font-display); }
.text-balance { text-wrap: balance; }

.text-gradient-pink {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-salmon) 50%, var(--color-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-pink {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-salmon) 100%);
}

.shadow-pink-glow {
  box-shadow: 0 0 40px -10px rgba(255, 107, 157, 0.5);
}

.shadow-pink-soft {
  box-shadow: 0 20px 60px -20px rgba(255, 107, 157, 0.25),
              0 8px 20px -8px rgba(255, 107, 157, 0.15);
}

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

/* Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

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

.float { animation: float 6s ease-in-out infinite; }
.float-slow { animation: float-slow 8s ease-in-out infinite; animation-delay: 1.5s; }

/* ===== NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.5s ease;
  background: transparent;
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: rgba(255, 251, 249, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px -10px rgba(255, 107, 157, 0.1);
  padding: 0.75rem 0;
}
.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 5rem; width: auto; }
@media (min-width: 768px) {
  .nav-logo img { height: 5rem; }
}
.nav-menu {
  display: none;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}
.nav-menu a {
  color: rgba(45, 27, 34, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}
.nav-menu a:hover { color: var(--color-pink-dark); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-salmon));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  display: none;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-pink), var(--color-salmon));
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -8px rgba(255, 107, 157, 0.4);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -8px rgba(255, 107, 157, 0.5);
  color: white;
}
@media (min-width: 1024px) {
  .nav-cta { display: inline-flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.hero-blob-1 {
  top: 0;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 107, 157, 0.15);
}
.hero-blob-2 {
  top: 25%;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 138, 101, 0.15);
}
.hero-blob-3 {
  bottom: 0;
  left: 33%;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 94, 142, 0.2);
}
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.hero-content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-content { text-align: left; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.1);
  border: 1px solid var(--color-border-pink);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-ink);
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-wrap: balance;
}
.hero-title span { font-style: italic; }
.hero-description {
  font-size: 1.125rem;
  color: var(--color-pink-muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
@media (min-width: 1024px) {
  .hero-description { margin-left: 0; margin-right: 0; }
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero-buttons { justify-content: flex-start; }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-pink), var(--color-salmon));
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px -10px rgba(255, 107, 157, 0.4);
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .btn-primary { width: auto; }
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(255, 107, 157, 0.5);
  color: white;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--color-pink-dark);
  font-weight: 700;
  border-radius: 9999px;
  border: 2px solid var(--color-border-pink);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .btn-secondary { width: auto; }
}
.btn-secondary:hover {
  border-color: rgba(255, 107, 157, 0.5);
  box-shadow: 0 10px 25px -8px rgba(255, 107, 157, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-stats { margin-left: 0; margin-right: 0; }
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-pink), var(--color-salmon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--color-pink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero 3D image */
.hero-visual { display: none; }
@media (min-width: 1024px) {
  .hero-visual {
    display: block;
    position: relative;
    perspective: 1200px;
  }
}
.hero-glow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(255, 138, 101, 0.2), rgba(199, 125, 255, 0.2));
  border-radius: 50%;
  filter: blur(72px);
}
.hero-hand-wrapper {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  margin: 0 auto;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
  filter: drop-shadow(0 30px 40px rgba(255, 107, 157, 0.3));
}
.hero-hand-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}

.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 40px -10px rgba(255, 107, 157, 0.2);
  border: 1px solid var(--color-border-pink);
  z-index: 20;
}
.hero-card-1 {
  left: -1.5rem;
  top: 5rem;
  animation: float 3s ease-in-out infinite;
}
.hero-card-2 {
  right: -1rem;
  bottom: 6rem;
  animation: float 4s ease-in-out infinite 0.5s;
}
.hero-card-3 {
  bottom: -0.5rem;
  left: 2.5rem;
  background: linear-gradient(90deg, var(--color-pink), var(--color-salmon));
  color: white;
  border: none;
  animation: float 3.5s ease-in-out infinite 1s;
}

.hero-mobile-image {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .hero-mobile-image { display: none; }
}
.hero-mobile-image img {
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(255, 107, 157, 0.2);
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-soft);
  overflow: hidden;
}
@media (min-width: 768px) {
  .services { padding: 8rem 0; }
}
.services-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-pink-dark);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-salmon));
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-title span { font-style: italic; }
.section-description {
  font-size: 1.125rem;
  color: var(--color-pink-muted);
  max-width: 36rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: white;
  border: 1px solid var(--color-border-soft);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-pink-light);
  box-shadow: 0 25px 60px -15px rgba(255, 107, 157, 0.15);
}
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--color-pink), var(--color-salmon));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: white;
}
.service-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--color-pink-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about { padding: 8rem 0; }
}
.about-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: 2rem;
  width: 100%;
  box-shadow: 0 30px 80px -20px rgba(255, 107, 157, 0.25);
}
.about-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: white;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 40px -10px rgba(255, 107, 157, 0.2);
  border: 1px solid var(--color-border-pink);
}
.about-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-pink), var(--color-salmon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.75rem;
  color: var(--color-pink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--color-bg-soft);
  border-radius: 0.875rem;
  border: 1px solid var(--color-border-soft);
}
.about-feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.about-feature-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink);
}

/* ===== TECHNIQUE ===== */
.technique {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-hot-pink) 50%, var(--color-coral) 100%);
  color: white;
  overflow: hidden;
}
@media (min-width: 768px) {
  .technique { padding: 8rem 0; }
}
.technique .section-title { color: white; }
.technique .section-description { color: rgba(255, 255, 255, 0.85); }
.technique .section-eyebrow { color: rgba(255, 255, 255, 0.9); }
.technique .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.6);
}

.technique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .technique-grid { grid-template-columns: repeat(4, 1fr); }
}
.technique-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.technique-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}
.technique-step-number {
  width: 3rem;
  height: 3rem;
  background: white;
  color: var(--color-pink-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.technique-step h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.technique-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-warm);
  overflow: hidden;
}
@media (min-width: 768px) {
  .testimonials { padding: 8rem 0; }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--color-border-soft);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(255, 107, 157, 0.15);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #FBBF24;
}
.testimonial-text {
  color: var(--color-ink-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-pink), var(--color-salmon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonials-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    background: white;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(232, 88, 130, 0.15);
    margin-top: 0.5rem;
    color: #4285F4;
    font-weight: 600;
    font-size: 0.9375rem;
}

.testimonials-google-badge svg {
    color: #4285F4;
}

.google-badge-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-ink);
    padding: 0 0.875rem;
    border-left: 2px solid rgba(232, 88, 130, 0.2);
    border-right: 2px solid rgba(232, 88, 130, 0.2);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-ink);
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--color-pink-muted);
}

/* ===== GALLERY ===== */
.gallery {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gallery { padding: 8rem 0; }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.gallery-item {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.4s ease;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px -15px rgba(255, 107, 157, 0.3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }
@media (min-width: 768px) {
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }
  .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta { padding: 8rem 0; }
}
.cta-box {
  background: linear-gradient(135deg, #D94F7A 0%, #FF6B9D 50%, #FF8A65 100%);
  border-radius: 2.5rem;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}
@media (min-width: 768px) {
  .cta-box {
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
  }
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.cta-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--color-pink-dark);
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px -8px rgba(0, 0, 0, 0.2);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.25);
  color: var(--color-pink-dark);
}
.cta-image {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .cta-image { margin-top: 0; }
}
.cta-image img {
  border-radius: 1.5rem;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, #FF4D8D 0%, #FF6B9D 40%, #FF6F5C 100%);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Columna 1: Mapa + marca */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    max-height: 4.5rem;
    width: auto;
    margin-bottom: 0.25rem;
}

.footer-description {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

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

.footer-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: white;
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(232, 88, 130, 0.15);
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: var(--color-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 88, 130, 0.3);
}

.footer-map {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(232, 88, 130, 0.18);
    position: relative;
    background: white;
    border: 3px solid white;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    display: block;
    border: 0;
}

.footer-map-btn {
    display: block;
    text-align: center;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--color-pink), var(--color-salmon));
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-map-btn:hover {
    filter: brightness(1.05);
    letter-spacing: 0.2px;
}

/* Columna 2: Servicios */
.footer-col h4 {
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.625rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 3px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.2s ease;
    margin-right: 0.25rem;
    color: white;
    font-weight: 700;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Columna 3: Contacto */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem !important;
}

.footer-contact-item > span {
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 2rem;
    height: 2rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(232, 88, 130, 0.1);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.2s ease;
    display: block;
}

.footer-contact-item a:hover {
    color: white;
}
.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive footer */
@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom { flex-direction: column; }
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; text-align: left; }
    .footer-bottom-links { justify-content: flex-end; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: wp-pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.6);
  color: white;
}
@keyframes wp-pulse {
  0%, 100% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.7); }
}
