/* ============================================
   STYLE.CSS â Salsa Bachata Cabarete
   ============================================ */

/* 1. VARIABLES CSS */
:root {
  --verde:           #1A3528;
  --verde-medio:     #2D5C42;
  --terracota:       #C8684A;
  --terracota-hover: #A8533A;
  --arena:           #F5F0E8;
  --arena-oscura:    #EAE4D8;
  --blanco:          #FFFFFF;
  --texto:           #1C2B22;
  --texto-suave:     #5A6B60;
  --borde:           rgba(26,53,40,0.10);
}

/* 2. RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
}

/* 3. TIPOGRAFÃA BASE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.25rem;
}

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

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

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

/* 4. UTILIDADES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.text-center {
  text-align: center;
}

.bg-arena {
  background: var(--arena);
}

.bg-verde {
  background: var(--verde);
}

.text-blanco {
  color: var(--blanco);
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--texto-suave);
  margin-bottom: 0.75rem;
  display: block;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--arena-oscura);
  color: var(--texto);
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 5. BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
}

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

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

.btn-primary:focus-visible {
  outline: 2px solid var(--terracota);
  outline-offset: 4px;
}

.btn-whatsapp {
  background: var(--verde);
  color: var(--blanco);
}

.btn-whatsapp:hover {
  background: var(--verde-medio);
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  min-width: 56px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(26, 53, 40, 0.18);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: transform 0.25s ease;
}

.btn-whatsapp:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 4px;
}

/* LANG SWITCHER */
.lang-switcher .lang-link {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff !important;
  transition: background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.lang-switcher .lang-link:hover {
  background: rgba(255,255,255,0.15);
}

nav.scrolled .lang-switcher .lang-link {
  color: var(--texto) !important;
  border-color: var(--borde);
}

nav.scrolled .lang-switcher .lang-link:hover {
  background: var(--arena);
}

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

.btn-outline:hover {
  background: var(--blanco);
  color: var(--texto);
  transform: translateY(-2px);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--blanco);
  outline-offset: 4px;
}

.btn-secondary {
  background: var(--blanco);
  color: var(--verde);
  border: none;
}

.btn-secondary:hover {
  background: var(--arena);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 4px;
}

/* 6. NAVEGACIÃN */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent !important;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

nav .logo,
nav .nav-logo,
nav .nav-links a,
nav a.logo {
  color: #ffffff !important;
  transition: color 0.4s ease;
}

nav .nav-links a:hover {
  color: rgba(255, 255, 255, 0.70);
}

nav .btn-nav {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

nav .btn-nav:hover {
  background: rgba(255, 255, 255, 0.30);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

nav.scrolled .logo,
nav.scrolled .nav-logo,
nav.scrolled a.logo,
nav.scrolled .nav-links a {
  color: #1C2B22 !important;
}

nav.scrolled .nav-links a:hover {
  color: var(--terracota);
}

nav.scrolled .btn-nav {
  background: var(--verde);
  color: #ffffff;
  border-color: var(--verde);
}

nav.scrolled .btn-nav:hover {
  background: var(--verde-medio);
  border-color: var(--verde-medio);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--terracota);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blanco);
  transition: all 0.3s ease;
  display: block;
}

nav.scrolled .menu-toggle span {
  background: var(--texto);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--blanco);
    padding: 20px 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--borde);
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links a {
    color: var(--texto);
    padding: 12px 0;
    border-bottom: 1px solid var(--borde);
  }

  .nav-logo {
    color: var(--blanco);
  }

  nav.scrolled .nav-logo {
    color: var(--texto);
  }
}

/* 7. HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  background: var(--verde);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 53, 40, 0.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  text-align: center;
  color: var(--blanco);
  padding: 0 24px;
}

.hero h1 {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blanco);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-cta {
    gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* 8. STATS BAR */
.stats-bar {
  background: var(--verde);
  color: var(--blanco);
  padding: 60px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
  font-weight: 500;
}

@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 30px;
  }

  .stat-item:nth-child(2n)]{
    border-right: none;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .stats-bar {
    padding: 40px 0;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    border: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2rem;
    min-height: auto;
  }
}

/* 9. ABOUT */
.about {
  background: var(--arena);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text h2 {
  margin-bottom: 0;
}

.about-text p {
  color: var(--texto-suave);
}

.about-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--texto-suave);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.6;
}

.about-list li::before {
  content: 'Â·';
  position: absolute;
  left: 0;
  color: var(--terracota);
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.lang-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.lang-badges span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--arena-oscura);
  color: var(--texto);
  border: 0.5px solid var(--borde);
}

.image-box {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  display: block;
}

.google-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blanco);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(26, 53, 40, 0.12);
  text-align: center;
  min-width: 140px;
}

.float-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.float-rating {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--texto);
}

.image-box.fade-up {
  transition-delay: 150ms;
}

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

  .about-img {
    height: 380px;
  }

  .google-badge-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .about-img {
    height: 300px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #128C7E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(18, 140, 126, 0.45),
              0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #075E54;
  box-shadow: 0 8px 30px rgba(18, 140, 126, 0.50),
              0 4px 12px rgba(0, 0, 0, 0.18);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #128C7E;
  animation: whatsapp-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* 10. SERVICIOS (CARDS) */
.services {
  background: var(--blanco);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 3rem;
}

.card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 53, 40, 0.12);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--texto-suave);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--terracota);
  color: var(--blanco);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card.featured {
  border-top: 3px solid var(--terracota);
  transform: scale(1.02);
}

.card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.card .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .card.featured {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card.featured {
    grid-column: auto;
    max-width: 100%;
  }

  .card {
    padding: 24px 20px;
  }
}

/* 11. TESTIMONIOS */
.testimonials {
  background: var(--arena);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--blanco);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--borde);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card.fade-up:nth-child(1) {
  transition-delay: 0ms;
}

.testimonial-card.fade-up:nth-child(2) {
  transition-delay: 100ms;
}

.testimonial-card.fade-up:nth-child(3) {
  transition-delay: 200ms;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 53, 40, 0.10);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 4px;
  color: var(--terracota);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--texto);
}

.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--texto-suave);
  font-size: 0.95rem;
}

.google-business-cta {
  background: var(--verde);
  color: var(--blanco);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.google-stars {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
}

.google-rating-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blanco);
  margin-bottom: 0.25rem;
}

.google-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blanco);
  color: var(--verde);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-google-review:hover {
  background: var(--arena);
  transform: translateY(-2px);
}

.btn-google-review:focus-visible {
  outline: 2px solid var(--blanco);
  outline-offset: 4px;
}

.btn-google-review::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E")
    no-repeat center/contain;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card.fade-up:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card.fade-up:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 24px;
  }

  .google-business-cta {
    padding: 2rem;
  }

  .google-rating-num {
    font-size: 2.5rem;
  }
}

/* 12. FAQ (ACCORDION) */
.faq {
  background: var(--blanco);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.faq-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.btn-faq {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--verde);
  color: var(--blanco);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn-faq:hover {
  transform: translateY(-1px);
  background: var(--verde-medio);
}

.faq-list {
  list-style: none;
}

.faq-item {
  border: 1px solid var(--borde);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--blanco);
}

.faq-question {
  padding: 24px;
  background: var(--arena);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--arena-oscura);
}

.faq-question h3 {
  text-align: left;
  margin: 0;
  font-size: 1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--terracota);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--blanco);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 24px;
}

.faq-answer p {
  text-align: left;
  color: var(--texto-suave);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 18px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }
}

/* 13. CTA FINAL */
.cta-final {
  background: var(--verde);
  color: var(--blanco);
  text-align: center;
  padding: 100px 24px;
}

@media (max-width: 768px) {
  .cta-final {
    padding: 60px 24px;
  }
}

.cta-final h2 {
  color: var(--blanco);
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

.cta-final .btn {
  margin-top: 1rem;
}

/* 14. FOOTER */
footer {
  background: var(--texto);
  color: var(--blanco);
  padding: 60px 0 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--terracota);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 1.5rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--blanco);
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--terracota);
  color: var(--blanco);
}

.footer-contact-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  footer {
    padding: 40px 0 0;
  }
}

/* 15. BLOG */
.blog-hero {
  background: var(--verde);
  color: var(--blanco);
  padding: 140px 0 80px;
  text-align: center;
  margin-top: 0;
}

.blog-hero h1 {
  color: var(--blanco);
  margin-bottom: 1.5rem;
}

.blog-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 80px 0;
}

.blog-card {
  background: var(--blanco);
  border-radius: 14px;
  border: 1px solid var(--borde);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card.fade-up:nth-child(1) {
  transition-delay: 0ms;
}

.blog-card.fade-up:nth-child(2) {
  transition-delay: 100ms;
}

.blog-card.fade-up:nth-child(3) {
  transition-delay: 200ms;
}

.blog-card.fade-up:nth-child(4) {
  transition-delay: 300ms;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 53, 40, 0.10);
}

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(200, 104, 74, 0.15);
  color: var(--terracota);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  width: fit-content;
}

.blog-card h3 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-desc {
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.blog-link {
  color: var(--terracota);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.blog-link:hover {
  gap: 8px;
}

.blog-link::after {
  content: ' â';
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 60px;
    margin-top: 0;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 60px 0;
  }

  .blog-card {
    padding: 24px;
  }
}

/* 16. ANIMACIONES - FADE-UP CON INTERSECTIONOBSERVER */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 17. MEDIA QUERIES */

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

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

  h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}
/* ============================================
   POST / ARTICLE PAGE
   ============================================ */

.post-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,27,0.85) 0%, transparent 60%);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 52px;
  width: 100%;
  color: var(--blanco);
}

.post-hero-content .blog-tag {
  background: rgba(200,104,74,0.25);
  color: #fff;
  margin-bottom: 1rem;
}

.post-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  font-style: italic;
  margin-bottom: 1rem;
}

.post-hero-content .post-meta {
  font-size: 0.85rem;
  opacity: 0.75;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.post-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--texto);
}

.post-body h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--texto);
}

.post-body p {
  margin-bottom: 1.4rem;
  line-height: 1.85;
  color: var(--texto);
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.4rem 1.4rem;
}

.post-body li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
  color: var(--texto);
}

.post-body strong {
  color: var(--texto);
  font-weight: 600;
}

/* Nightlife schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,53,40,0.08);
}

.schedule-table th {
  background: var(--verde);
  color: var(--blanco);
  padding: 14px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--borde);
  font-size: 0.95rem;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:nth-child(even) td {
  background: var(--arena);
}

.schedule-table tr:nth-child(odd) td {
  background: var(--blanco);
}

/* Pull quote / highlight box */
.post-highlight {
  background: var(--arena);
  border-left: 4px solid var(--terracota);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--texto);
  line-height: 1.7;
}

.post-highlight cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto-suave);
  margin-top: 8px;
}

/* Post CTA box */
.post-cta-box {
  background: var(--verde);
  color: var(--blanco);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 3rem 0;
}

.post-cta-box h3 {
  color: var(--blanco);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.post-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* Back to blog link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--texto-suave);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--terracota);
}

@media (max-width: 768px) {
  .post-hero {
    height: 50vh;
    min-height: 320px;
  }

  .post-hero-content h1 {
    font-size: 1.6rem;
  }

  .post-body {
    padding: 40px 20px 60px;
  }

  .post-cta-box {
    padding: 28px 20px;
  }

  .schedule-table td,
  .schedule-table th {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
/* ============================================
   STYLE.CSS — Salsa Bachata Cabarete
   ============================================ */

/* 1. VARIABLES CSS */
:root {
  --verde:           #1A3528;
  --verde-medio:     #2D5C42;
  --terracota:       #C8684A;
  --terracota-hover: #A8533A;
  --arena:           #F5F0E8;
  --arena-oscura:    #EAE4D8;
  --blanco:          #FFFFFF;
  --texto:           #1C2B22;
  --texto-suave:     #5A6B60;
  --borde:           rgba(26,53,40,0.10);
}

/* 2. RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  overflow-x: hidden;
}

/* 3. TIPOGRAFÍA BASE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.25rem;
}

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

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

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

/* 4. UTILIDADES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.text-center {
  text-align: center;
}

.bg-arena {
  background: var(--arena);
}

.bg-verde {
  background: var(--verde);
}

.text-blanco {
  color: var(--blanco);
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--texto-suave);
  margin-bottom: 0.75rem;
  display: block;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--arena-oscura);
  color: var(--texto);
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 5. BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
}

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

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

.btn-primary:focus-visible {
  outline: 2px solid var(--terracota);
  outline-offset: 4px;
}

.btn-whatsapp {
  background: var(--verde);
  color: var(--blanco);
}

.btn-whatsapp:hover {
  background: var(--verde-medio);
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  min-width: 56px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(26, 53, 40, 0.18);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: transform 0.25s ease;
}

.btn-whatsapp:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 4px;
}

/* LANG SWITCHER */
.lang-switcher .lang-link {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff !important;
  transition: background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.lang-switcher .lang-link:hover {
  background: rgba(255,255,255,0.15);
}

nav.scrolled .lang-switcher .lang-link {
  color: var(--texto) !important;
  border-color: var(--borde);
}

nav.scrolled .lang-switcher .lang-link:hover {
  background: var(--arena);
}

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

.btn-outline:hover {
  background: var(--blanco);
  color: var(--texto);
  transform: translateY(-2px);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--blanco);
  outline-offset: 4px;
}

.btn-secondary {
  background: var(--blanco);
  color: var(--verde);
  border: none;
}

.btn-secondary:hover {
  background: var(--arena);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 4px;
}

/* 6. NAVEGACIÓN */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent !important;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

nav .logo,
nav .nav-logo,
nav .nav-links a,
nav a.logo {
  color: #ffffff !important;
  transition: color 0.4s ease;
}

nav .nav-links a:hover {
  color: rgba(255, 255, 255, 0.70);
}

nav .btn-nav {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

nav .btn-nav:hover {
  background: rgba(255, 255, 255, 0.30);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

nav.scrolled .logo,
nav.scrolled .nav-logo,
nav.scrolled a.logo,
nav.scrolled .nav-links a {
  color: #1C2B22 !important;
}

nav.scrolled .nav-links a:hover {
  color: var(--terracota);
}

nav.scrolled .btn-nav {
  background: var(--verde);
  color: #ffffff;
  border-color: var(--verde);
}

nav.scrolled .btn-nav:hover {
  background: var(--verde-medio);
  border-color: var(--verde-medio);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--terracota);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blanco);
  transition: all 0.3s ease;
  display: block;
}

nav.scrolled .menu-toggle span {
  background: var(--texto);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--blanco);
    padding: 20px 24px;
    max-height: 0;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--borde);
    z-index: 999;
  }

  .nav-links.open {
    max-height: calc(100vh - 70px);
  }

  .nav-links a {
    color: var(--texto);
    padding: 12px 0;
    border-bottom: 1px solid var(--borde);
    display: block;
    width: 100%;
  }

  .nav-logo {
    color: var(--blanco);
  }

  nav.scrolled .nav-logo {
    color: var(--texto);
  }
}

/* 7. HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  background: var(--verde);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 53, 40, 0.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  text-align: center;
  color: var(--blanco);
  padding: 0 24px;
}

.hero h1 {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 1;
  color: var(--blanco);
  font-weight: 400;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blanco);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-cta {
    gap: 12px;
    flex-direction: column;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
}

/* 8. STATS BAR */
.stats-bar {
  background: var(--verde);
  color: var(--blanco);
  padding: 60px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
  font-weight: 500;
}

@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 30px;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .stats-bar {
    padding: 40px 0;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    border: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2rem;
    min-height: auto;
  }
}

/* 9. ABOUT */
.about {
  background: var(--arena);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text h2 {
  margin-bottom: 0;
}

.about-text p {
  color: var(--texto-suave);
}

.about-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--texto-suave);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.6;
}

.about-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--terracota);
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.lang-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.lang-badges span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--arena-oscura);
  color: var(--texto);
  border: 0.5px solid var(--borde);
}

.image-box {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  display: block;
}

.google-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blanco);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(26, 53, 40, 0.12);
  text-align: center;
  min-width: 140px;
}

.float-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.float-rating {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--texto);
}

.image-box.fade-up {
  transition-delay: 150ms;
}

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

  .about-img {
    height: 380px;
  }

  .google-badge-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .about-img {
    height: 300px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #128C7E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(18, 140, 126, 0.45),
              0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #075E54;
  box-shadow: 0 8px 30px rgba(18, 140, 126, 0.50),
              0 4px 12px rgba(0, 0, 0, 0.18);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}

/* FAQ SECTION */
.faq {
  background: var(--blanco);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-intro h2 {
  margin-bottom: 1rem;
}

.faq-intro p {
  font-size: 1.05rem;
  color: var(--texto-suave);
  margin-bottom: 2rem;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--borde);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--borde);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 0;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--texto);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--terracota);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 0;
  margin-top: 1rem;
}

.faq-answer p {
  color: var(--texto-suave);
  margin: 0;
  line-height: 1.7;
}

.btn-faq {
  background: var(--terracota);
  color: var(--blanco);
}

.btn-faq:hover {
  background: var(--terracota-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq-intro {
    margin-bottom: 2rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item {
    padding: 1rem 0;
  }
}

/* CTA FINAL */
.cta-final {
  background: var(--verde);
  color: var(--blanco);
  padding: 80px 24px;
  text-align: center;
}

.cta-final h2 {
  color: var(--blanco);
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-final {
    padding: 60px 24px;
  }

  .cta-final h2 {
    font-size: 1.8rem;
  }
}

/* FOOTER */
footer {
  background: var(--texto);
  color: var(--blanco);
  padding: 60px 24px 20px;
}

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

.footer-col h4 {
  color: var(--blanco);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--blanco);
}

.footer-contact-info p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  footer {
    padding: 40px 24px 20px;
  }
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #128C7E;
  animation: whatsapp-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* 10. SERVICIOS (CARDS) */
.services {
  background: var(--blanco);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 3rem;
}

.card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 53, 40, 0.12);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--texto-suave);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--terracota);
  color: var(--blanco);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card.featured {
  border-top: 3px solid var(--terracota);
  transform: scale(1.02);
}

.card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.card .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .card.featured {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card.featured {
    grid-column: auto;
    max-width: 100%;
  }

  .card {
    padding: 24px 20px;
  }
}

/* 11. TESTIMONIOS */
.testimonials {
  background: var(--arena);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--blanco);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--borde);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card.fade-up:nth-child(1) {
  transition-delay: 0ms;
}

.testimonial-card.fade-up:nth-child(2) {
  transition-delay: 100ms;
}

.testimonial-card.fade-up:nth-child(3) {
  transition-delay: 200ms;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 53, 40, 0.10);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 4px;
  color: var(--terracota);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--texto);
}

.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--texto-suave);
  font-size: 0.95rem;
}

.google-business-cta {
  background: var(--verde);
  color: var(--blanco);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.google-stars {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
}

.google-rating-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blanco);
  margin-bottom: 0.25rem;
}

.google-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blanco);
  color: var(--verde);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-google-review:hover {
  background: var(--arena);
  transform: translateY(-2px);
}

.btn-google-review:focus-visible {
  outline: 2px solid var(--blanco);
  outline-offset: 4px;
}

.btn-google-review::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E")
    no-repeat center/contain;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card.fade-up:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card.fade-up:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 24px;
  }

  .google-business-cta {
    padding: 2rem;
  }

  .google-rating-num {
    font-size: 2.5rem;
  }
}

/* 12. FAQ (ACCORDION) */
.faq {
  background: var(--blanco);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.faq-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.btn-faq {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--verde);
  color: var(--blanco);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn-faq:hover {
  transform: translateY(-1px);
  background: var(--verde-medio);
}

.faq-list {
  list-style: none;
}

.faq-item {
  border: 1px solid var(--borde);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--blanco);
}

.faq-question {
  padding: 24px;
  background: var(--arena);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--arena-oscura);
}

.faq-question h3 {
  text-align: left;
  margin: 0;
  font-size: 1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--terracota);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--blanco);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 24px;
}

.faq-answer p {
  text-align: left;
  color: var(--texto-suave);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 18px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }
}

/* 13. CTA FINAL */
.cta-final {
  background: var(--verde);
  color: var(--blanco);
  text-align: center;
  padding: 100px 24px;
}

@media (max-width: 768px) {
  .cta-final {
    padding: 60px 24px;
  }
}

.cta-final h2 {
  color: var(--blanco);
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

.cta-final .btn {
  margin-top: 1rem;
}

/* 14. FOOTER */
footer {
  background: var(--texto);
  color: var(--blanco);
  padding: 60px 0 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--terracota);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 1.5rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--blanco);
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--terracota);
  color: var(--blanco);
}

.footer-contact-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  footer {
    padding: 40px 0 0;
  }
}

/* 15. BLOG */
.blog-hero {
  background: var(--verde);
  color: var(--blanco);
  padding: 140px 0 80px;
  text-align: center;
  margin-top: 0;
}

.blog-hero h1 {
  color: var(--blanco);
  margin-bottom: 1.5rem;
}

.blog-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 80px 0;
}

.blog-card {
  background: var(--blanco);
  border-radius: 14px;
  border: 1px solid var(--borde);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card.fade-up:nth-child(1) {
  transition-delay: 0ms;
}

.blog-card.fade-up:nth-child(2) {
  transition-delay: 100ms;
}

.blog-card.fade-up:nth-child(3) {
  transition-delay: 200ms;
}

.blog-card.fade-up:nth-child(4) {
  transition-delay: 300ms;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 53, 40, 0.10);
}

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(200, 104, 74, 0.15);
  color: var(--terracota);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  width: fit-content;
}

.blog-card h3 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-desc {
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.blog-link {
  color: var(--terracota);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.blog-link:hover {
  gap: 8px;
}

.blog-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 100px 0 60px;
    margin-top: 60px;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 60px 0;
  }

  .blog-card {
    padding: 24px;
  }
}

/* 16. ANIMACIONES - FADE-UP CON INTERSECTIONOBSERVER */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 17. MEDIA QUERIES */

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

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

  h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}
/* ============================================
   POST / ARTICLE PAGE
   ============================================ */

.post-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,27,0.85) 0%, transparent 60%);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 52px;
  width: 100%;
  color: var(--blanco);
}

.post-hero-content .blog-tag {
  background: rgba(200,104,74,0.25);
  color: #fff;
  margin-bottom: 1rem;
}

.post-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  font-style: italic;
  margin-bottom: 1rem;
}

.post-hero-content .post-meta {
  font-size: 0.85rem;
  opacity: 0.75;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.post-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--texto);
}

.post-body h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--texto);
}

.post-body p {
  margin-bottom: 1.4rem;
  line-height: 1.85;
  color: var(--texto);
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.4rem 1.4rem;
}

.post-body li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
  color: var(--texto);
}

.post-body strong {
  color: var(--texto);
  font-weight: 600;
}

/* Nightlife schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,53,40,0.08);
}

.schedule-table th {
  background: var(--verde);
  color: var(--blanco);
  padding: 14px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--borde);
  font-size: 0.95rem;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:nth-child(even) td {
  background: var(--arena);
}

.schedule-table tr:nth-child(odd) td {
  background: var(--blanco);
}

/* Pull quote / highlight box */
.post-highlight {
  background: var(--arena);
  border-left: 4px solid var(--terracota);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--texto);
  line-height: 1.7;
}

.post-highlight cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto-suave);
  margin-top: 8px;
}

/* Post CTA box */
.post-cta-box {
  background: var(--verde);
  color: var(--blanco);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 3rem 0;
}

.post-cta-box h3 {
  color: var(--blanco);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.post-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

/* Back to blog link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--texto-suave);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--terracota);
}

@media (max-width: 768px) {
  .post-hero {
    height: 50vh;
    min-height: 320px;
  }

  .post-hero-content h1 {
    font-size: 1.6rem;
  }

  .post-body {
    padding: 40px 20px 60px;
  }

  .post-cta-box {
    padding: 28px 20px;
  }

  .schedule-table td,
  .schedule-table th {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
