/* ============================================
   WUF DOGGY DAYCARE — Estilos Globales
   Paleta: Teal #1CBFB4 | Amarillo #F5C516 | Oscuro #0D1B2A
   ============================================ */

/* -- Fuentes -- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap');

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

:root {
  --teal:    #1CBFB4;
  --teal-dk: #14a09a;
  --teal-lt: #e6f9f8;
  --yellow:  #F5C516;
  --yellow-dk: #d4a90e;
  --dark:    #0D1B2A;
  --dark2:   #1a2e40;
  --gray:    #6b7280;
  --gray-lt: #f4f6f8;
  --white:   #ffffff;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* -- Utilidades -- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.teal { color: var(--teal); }
.yellow { color: var(--yellow-dk); }

.badge {
  display: inline-block;
  background: var(--teal-lt);
  color: var(--teal-dk);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--teal);
}

.nav-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: color .2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .25s;
}

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

.btn-nav {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Poppins', sans-serif;
}

.btn-nav:hover { background: var(--yellow-dk); transform: scale(1.04); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all .3s;
}

/* -- Móvil nav -- */
@media(max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .35s ease;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover { background: var(--teal-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28,191,180,0.35); }

.btn-secondary {
  background: var(--yellow);
  color: var(--dark);
}

.btn-secondary:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,22,0.35); }

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

.btn-outline:hover { background: var(--teal); color: white; }

.btn-wa {
  background: #25D366;
  color: white;
}

.btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* ============================================
   HERO (Inicio)
   ============================================ */
.hero {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 24px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-title span { color: var(--teal); }

.hero-desc {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.hero-img-main {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  object-fit: cover;
  height: 560px;
  box-shadow: var(--shadow-lg);
  margin-left: auto;
}

.hero-badge-float {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}

.hero-badge-float.top-left { top: 20px; left: -20px; }
.hero-badge-float.bottom-right { bottom: 30px; right: -20px; }

.badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media(max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    min-height: auto;
  }
  .hero-image { order: -1; }
  .hero-img-main { height: 320px; max-width: 100%; }
  .hero-badge-float.top-left { left: 10px; }
  .hero-badge-float.bottom-right { right: 10px; }
  .hero-stats { gap: 20px; }
}

/* ============================================
   POR QUÉ WUF — Feature Cards
   ============================================ */
.features { background: var(--gray-lt); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--teal);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

@media(max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================
   SERVICIOS PREVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  background: white;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.service-body {
  padding: 24px;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .features-list {
  margin-bottom: 20px;
}

.service-card .features-list li {
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card .features-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
}

@media(max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   PLANES / PRICING
   ============================================ */
.plans { background: var(--dark); color: white; }
.plans .section-title { color: white; }
.plans .section-subtitle { color: rgba(255,255,255,0.6); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid rgba(255,255,255,0.08);
  transition: transform .25s, border-color .25s;
  position: relative;
}

.plan-card.featured {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.04);
}

.plan-card.featured .plan-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.plan-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.plan-price-label {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.plan-features {
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.plan-features li::before {
  content: '✓';
  font-weight: 800;
  color: var(--yellow);
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
  padding: 13px;
}

.plan-card.featured .btn-outline {
  border-color: white;
  color: white;
}

.plan-card.featured .btn-outline:hover {
  background: white;
  color: var(--teal);
}

@media(max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } .plan-card.featured { transform: none; } }

/* ============================================
   GALERÍA INSTAGRAM
   ============================================ */
.gallery { background: var(--gray-lt); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

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

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

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

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonios { background: var(--white); }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonio-card {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--teal);
}

.testimonio-text {
  font-size: 15px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
}

.author-name { font-weight: 700; font-size: 15px; }
.author-dog { font-size: 12px; color: var(--gray); }

.stars { color: var(--yellow-dk); font-size: 14px; margin-bottom: 12px; }

@media(max-width: 900px) { .testimonios-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  color: white;
  text-align: center;
  padding: 72px 24px;
}

.cta-banner h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 36px;
}

.cta-banner .btn-secondary { font-size: 17px; padding: 16px 36px; }

/* ============================================
   PAGE HERO (subpáginas)
   ============================================ */
.page-hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: white;
  text-align: center;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.15;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; right: 5%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.1;
}

.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================
   NOSOTROS
   ============================================ */
.nosotros-historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.historia-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 460px;
  box-shadow: var(--shadow-lg);
}

.historia-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}

.historia-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
}

@media(max-width: 768px) {
  .nosotros-historia { grid-template-columns: 1fr; }
  .historia-img { height: 260px; }
}

.team-section { background: var(--gray-lt); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s;
}

.team-card:hover { transform: translateY(-5px); }

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  border: 3px solid var(--teal-lt);
}

.team-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.valor-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.valor-icon { font-size: 48px; margin-bottom: 16px; }

.valor-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--teal);
}

.valor-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

@media(max-width: 700px) { .valores-grid { grid-template-columns: 1fr; } }

/* ============================================
   SERVICIOS DETAIL
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }

.service-detail-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-detail-text h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.service-detail-text .schedule {
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.service-detail-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.75;
}

.detail-features {
  margin-bottom: 28px;
}

.detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  padding: 6px 0;
}

.detail-features li .check {
  color: var(--teal);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

@media(max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse .service-detail-img,
  .service-detail.reverse .service-detail-text { order: unset; }
  .service-detail-img img { height: 240px; }
}

/* ============================================
   TABS (servicios)
   ============================================ */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: var(--gray-lt);
  padding: 8px;
  border-radius: 50px;
  width: fit-content;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: var(--gray);
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--teal);
  color: white;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  transition: transform .25s;
}

.blog-card:hover { transform: translateY(-5px); }

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--teal-lt), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-body { padding: 24px; }

.blog-cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--dark);
}

.blog-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray);
}

.blog-meta span { display: flex; align-items: center; gap: 4px; }

@media(max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================
   CONTACTO
   ============================================ */
.contacto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 40px;
}

.form-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  color: var(--dark);
  background: white;
  transition: border-color .2s;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { height: 120px; resize: vertical; }

.contact-info { }

.contact-card {
  background: var(--teal);
  color: white;
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text { font-size: 14px; }
.contact-item-text strong { display: block; font-size: 13px; opacity: 0.8; font-weight: 600; margin-bottom: 3px; }

.wa-card {
  background: #25D366;
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  transition: background .2s;
  cursor: pointer;
}

.wa-card:hover { background: #1da851; }

.wa-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.wa-text strong {
  display: block;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
}

.wa-text span { font-size: 13px; opacity: 0.85; }

/* Mapa placeholder */
.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gray-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  border: 2px dashed #ddd;
  margin-bottom: 20px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* FAQ */
.faq-section { background: var(--gray-lt); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  transition: color .2s;
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
  font-size: 22px;
  color: var(--teal);
  transition: transform .3s;
  font-weight: 400;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

@media(max-width: 768px) {
  .contacto-layout { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { color: white; margin-bottom: 14px; }
.footer-brand .nav-logo-circle { background: var(--teal); }

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s;
  color: white;
}

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

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity .2s, color .2s;
}

.footer-col ul li a:hover { opacity: 1; color: var(--teal); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-item span:first-child { opacity: 0.6; font-size: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  opacity: 0.6;
}

@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { text-align: center; justify-content: center; } }

/* ============================================
   FLOAT WhatsApp
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  font-size: 28px;
  color: white;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ============================================
   ANIMACIONES
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { margin: 0 8px; }
