/*
Theme Name: TAOB Beauty
Theme URI: https://taob.es
Author: TAOB The Art of Beauty
Description: Tema oficial de TAOB — The Art of Beauty. Peluquería y Estética en Santa Coloma de Gramenet.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --brand-primary: #006D56;
  --brand-hover: #004D61;
  --brand-secondary: #007B89;
  --text-primary: #333333;
  --text-muted: #666666;
  --bg-light: #f9f9f9;
  --bg-footer: #f4f4f4;
  --border-soft: #e0e0e0;
  --white: #ffffff;
  --shadow-card: 0 4px 12px rgba(0,109,86,0.1);
  --shadow-nav: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-button: 0 2px 8px rgba(0,109,86,0.2);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===== NAVBAR ===== */
.taob-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.nav-right { justify-content: flex-end; }

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img { height: 52px; width: auto; }

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  white-space: nowrap;
}

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

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: var(--transition);
}

.nav-dropdown-toggle:hover { color: var(--brand-primary); }
.nav-dropdown-toggle svg { width: 16px; height: 16px; transition: var(--transition); }
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--brand-primary); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 200px;
  overflow: hidden;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--brand-primary); background: #f8f8f8; }

/* Botón reservar */
.btn-reservar {
  background: var(--brand-primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-button);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-reservar:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,109,86,0.3);
}

/* Hamburguesa móvil */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger svg { width: 26px; height: 26px; color: var(--text-primary); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border-soft);
  padding: 16px 0;
}

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

.mobile-menu a, .mobile-menu-section-title {
  display: block;
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: none;
  margin-top: 8px;
}

.mobile-menu .sub-link { padding-left: 16px; font-weight: 500; }

.mobile-menu .btn-reservar {
  display: block;
  text-align: center;
  margin-top: 12px;
}

/* ===== BOTONES GENERALES ===== */
.btn-primary {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-button);
  transition: var(--transition);
}

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

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--brand-secondary);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: scale(1.05);
  color: var(--brand-secondary);
}

/* ===== HERO CARRUSEL ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 3rem;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active { opacity: 1; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.carousel-overlay h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.carousel-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--brand-primary);
}

.carousel-btn:hover { background: var(--white); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn svg { width: 22px; height: 22px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active { background: var(--white); }

/* ===== SECCIÓN BIENVENIDA ===== */
.welcome-section { padding: 5rem 0; background: var(--white); }
.welcome-section .section-title { text-align: center; margin-bottom: 3rem; }
.welcome-section .section-title h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.welcome-section .section-title p { font-size: 1.1rem; color: var(--text-muted); }

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

/* ===== SERVICE CARD ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,109,86,0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.6; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.service-card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card-link:hover svg { transform: translateX(4px); }
.service-card-link:hover { color: var(--brand-hover); }

/* ===== SECCIÓN INFO (verde) ===== */
.info-section {
  padding: 5rem 0;
  background: var(--brand-primary);
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-section h2, .info-section h3 { color: var(--white); margin-bottom: 1rem; }
.info-section p { opacity: 0.9; line-height: 1.8; }
.info-section .map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ===== TESTIMONIOS ===== */
.testimonials-section { padding: 5rem 0; background: var(--white); }
.testimonials-section .section-title { text-align: center; margin-bottom: 3rem; }
.testimonials-section .section-title h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.testimonials-section .section-title p { color: var(--text-muted); font-size: 1.05rem; }

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  text-align: center;
}

.stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.25rem; }
.star { color: #f59e0b; font-size: 1.2rem; }

.testimonial-inner blockquote {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.testimonial-inner cite {
  font-style: normal;
  color: var(--brand-primary);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2rem; }
.testimonial-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dot.active { background: var(--brand-primary); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: var(--brand-secondary);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.taob-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-soft);
  padding: 2.5rem 0;
}

.footer-address { text-align: center; font-size: 0.9rem; margin-bottom: 1.25rem; color: var(--text-primary); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

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

.footer-claim {
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; justify-content: center; gap: 1.5rem; }
.footer-social a { color: var(--text-muted); transition: var(--transition); }
.footer-social a:hover { transform: scale(1.2); }
.footer-social a[data-icon="whatsapp"]:hover { color: #25D366; }
.footer-social a[data-icon="instagram"]:hover { color: #E4405F; }
.footer-social a[data-icon="facebook"]:hover { color: #1877F2; }
.footer-social svg { width: 26px; height: 26px; }

/* ===== PÁGINAS INTERIORES ===== */
.page-hero { padding: 5rem 0; background: var(--white); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.page-hero-grid img { border-radius: var(--radius); box-shadow: var(--shadow-card); }

/* Grid de servicios con hover */
.services-image-grid {
  padding: 5rem 0;
  background: var(--bg-light);
}

.services-image-grid .section-title { text-align: center; margin-bottom: 3rem; }
.services-image-grid .section-title h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.services-image-grid .section-title p { color: var(--text-muted); font-size: 1rem; }

.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
}

.img-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.img-card-overlay h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.img-card-overlay p { color: rgba(255,255,255,0.88); font-size: 0.9rem; }

/* ===== PRECIOS ===== */
.precios-header { padding: 5rem 0; background: var(--white); text-align: center; }
.precios-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.precios-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.precios-cards-section { padding: 4rem 0; background: var(--bg-light); }

.precios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.precio-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
}

.precio-card:hover { transform: scale(1.04); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }

.precio-card-header {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--white);
}

.precio-card-header .icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.precio-card-header .icon svg { width: 32px; height: 32px; }
.precio-card-header h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.precio-card-header p { opacity: 0.9; font-size: 0.9rem; margin-bottom: 1rem; }

.precio-card-header .ver-precios {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.precio-card-header .ver-precios svg { width: 14px; height: 14px; }

.bg-verde { background: var(--brand-primary); }
.bg-azul { background: var(--brand-secondary); }
.bg-mirada { background: linear-gradient(135deg, #7c3aed, #db2777); }

/* Modal de precios */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.modal-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
}

.modal-header h3 { font-size: 1.3rem; }

.modal-close {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-close svg { width: 20px; height: 20px; }

.modal-body { padding: 1.5rem 2rem; }

/* Acordeón de precios */
.accordion-item { border-bottom: 1px solid var(--border-soft); }

.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-primary);
  text-align: left;
}

.accordion-toggle svg { width: 18px; height: 18px; transition: var(--transition); flex-shrink: 0; }
.accordion-toggle.open svg { transform: rotate(180deg); }

.accordion-content { display: none; padding-bottom: 1rem; }
.accordion-content.open { display: block; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid #f0f0f0; }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 8px 4px; font-size: 0.95rem; }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--brand-primary); white-space: nowrap; }

/* Info adicional precios */
.precios-info { padding: 4rem 0; background: var(--white); }
.precios-info .info-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.precios-info h3 { font-size: 1.5rem; text-align: center; margin-bottom: 2rem; }
.precios-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.precios-info h4 { color: var(--brand-primary); font-size: 1rem; margin-bottom: 0.75rem; }
.precios-info ul li { color: var(--text-muted); font-size: 0.95rem; padding: 3px 0; }
.precios-info-note {
  margin-top: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== QUIÉNES SOMOS ===== */
.qs-intro { padding: 5rem 0; background: var(--white); }
.qs-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.qs-intro h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.qs-intro p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }
.qs-intro img { border-radius: var(--radius); box-shadow: var(--shadow-card); width: 100%; }

.team-section { padding: 5rem 0; background: var(--bg-light); }
.team-section .section-title { text-align: center; margin-bottom: 3rem; }
.team-section .section-title h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.team-section .section-title p { color: var(--text-muted); }

.team-row-1 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; max-width: 1100px; margin-left: auto; margin-right: auto; }
.team-row-2 { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.team-row-2 .team-card { max-width: 260px; }

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.team-card:hover { transform: scale(1.04); }

.team-card .team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-card-info { padding: 1rem; text-align: center; }
.team-card-info h3 { font-size: 0.95rem; margin-bottom: 4px; }
.team-card-info p { font-size: 0.85rem; color: var(--brand-primary); font-weight: 600; }

/* Modal equipo */
.team-modal-img { width: 100%; max-height: 450px; object-fit: cover; }
.team-modal-body { padding: 1.5rem 2rem 2rem; }
.team-modal-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.team-modal-body .role { color: var(--brand-primary); font-weight: 600; margin-bottom: 1rem; }
.team-modal-body p { color: var(--text-muted); line-height: 1.8; }

/* ===== CONTACTO ===== */
.contacto-header { padding: 5rem 0; background: var(--white); text-align: center; }
.contacto-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.contacto-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.contacto-section { padding: 4rem 0; background: var(--bg-light); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 1100px; margin: 0 auto; }

.contacto-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.contacto-card h2 { font-size: 1.4rem; margin-bottom: 1.75rem; }

.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--brand-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-item h3 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: auto;
  transition: var(--transition);
}

.btn-whatsapp:hover { background: #128C7E; color: var(--white); }
.btn-whatsapp svg { width: 22px; height: 22px; }

/* Formulario */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0,109,86,0.12);
}

.form-group textarea { resize: none; height: 130px; }

.btn-submit {
  width: 100%;
  background: var(--brand-primary);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover { background: var(--brand-hover); }

.form-message { padding: 12px 16px; border-radius: 8px; margin-top: 1rem; font-size: 0.9rem; display: none; }
.form-message.success { background: #d1fae5; color: #065f46; display: block; }
.form-message.error { background: #fee2e2; color: #991b1b; display: block; }

/* Mapa contacto */
.map-section { padding: 4rem 0; background: var(--white); }
.map-section h2 { font-size: 1.8rem; text-align: center; margin-bottom: 2rem; }
.map-wrapper-contact { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); max-width: 900px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid-home { grid-template-columns: 1fr 1fr; }
  .team-row-1 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo img { height: 42px; }

  .hero-carousel { height: 320px; border-radius: 12px; }

  .services-grid-home { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .precios-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: 1fr; }
  .qs-intro-grid { grid-template-columns: 1fr; }
  .team-row-1 { grid-template-columns: repeat(2, 1fr); }
  .team-row-2 .team-card { max-width: 100%; }
  .contacto-grid { grid-template-columns: 1fr; }
  .precios-info-grid { grid-template-columns: 1fr; }
  .modal-box { max-height: 90vh; }
  .modal-body { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .team-row-1 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-carousel { height: 260px; }
}

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

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* Padding top para compensar nav fija */
.page-content { padding-top: 70px; }
