/* ============================================
   JAPIMAX - DISEÑO CORPORATIVO DE ENTRETENIMIENTO
   ============================================ */

/* Variables CSS - Colores Únicos y Personalizados */
:root {
  --primary-color: #e63946;
  --secondary-color: #f77f00;
  --accent-color: #06a77d;
  --dark-blue: #14213d;
  --light-blue: #219ebc;
  --text-dark: #1d1d1d;
  --text-light: #5a5a5a;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --gradient-primary: linear-gradient(120deg, #e63946 0%, #f77f00 50%, #e63946 100%);
  --gradient-secondary: linear-gradient(145deg, #06a77d 0%, #219ebc 100%);
  --gradient-dark: linear-gradient(135deg, #14213d 0%, #1a2b4a 100%);
  --shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 35px rgba(230, 57, 70, 0.25);
  --transition: all 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Screen Reader Only - Para accesibilidad SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link - visible al enfocar con teclado */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 0.75rem 1.25rem;
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: left 0.2s ease;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Focus visible para teclado - accesibilidad */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 2px;
}
.navbar-nav .nav-link:focus-visible,
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible,
.back-to-top:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 2px;
}
.btn-404-home:focus-visible,
.btn-404-outline:focus-visible,
.btn-404-whatsapp:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: #ffffff;
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* Navbar - Diseño renovado (navy / blanco) */
.navbar {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  overflow: visible;
}

@media (min-width: 992px) {
  .navbar .container {
    overflow: visible;
  }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99) !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.navbar-brand {
  transition: transform 0.25s ease;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: visible;
}

.logo-img {
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.08));
  height: 90px !important;
  width: auto;
  transform: translateY(30px);
  position: relative;
  z-index: 10;
}

.navbar-brand:hover .logo-img {
  transform: translateY(30px) scale(1.03);
}

.navbar-toggler {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  color: #0f172a;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.15);
}

.navbar-nav .nav-link {
  color: #334155 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.4rem 0.75rem !important;
  transition: color 0.2s ease;
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0f172a;
  transition: width 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link:hover {
  color: #0f172a !important;
}

.navbar-nav .btn-email-nav {
  background: transparent;
  border: 1.5px solid #0f172a;
  border-radius: 999px;
  padding: 0.45rem 1.25rem !important;
  margin-left: 0.75rem;
  margin-right: 0.25rem;
  color: #0f172a !important;
  font-weight: 600;
  font-size: 0.875rem;
}

.navbar-nav .btn-email-nav:hover {
  background: #0f172a;
  color: #fff !important;
  border-color: #0f172a;
}

.navbar-nav .btn-whatsapp-nav {
  background: #25d366;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.25rem !important;
  margin-left: 0;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
}

.navbar-nav .btn-whatsapp-nav:hover {
  background: #20bd5a;
  color: #fff !important;
}

/* Hero Section Dinámico */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

@media (min-width: 769px) {
  .hero-slide {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    background-attachment: scroll;
  }
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.6) 40%, rgba(30, 41, 59, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 0 60px;
}

.hero-content .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-content .row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  min-height: auto;
  padding: 0;
}

.hero-content .col-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-badge {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-height: 140px;
  width: auto;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
  object-fit: contain;
}

.hero-logo-wrap:hover .hero-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  color: #fff;
  opacity: 1;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.btn-hero-primary {
  background: #fff;
  color: #0f172a;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
  color: #0f172a;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 1.5s infinite;
}

.hero-scroll a {
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-scroll a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(4px);
}

.hero-indicators {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-indicators .indicator.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* Secciones */
section {
  padding: 60px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

.section-badge {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.section-header-about {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header-about .section-title {
  text-align: left;
}

/* About Section */
.about-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.about-section::before {
  display: none;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #0f172a;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.about-content {
  padding-left: 2.5rem;
}

.lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.lead-text strong {
  color: #0f172a;
  font-weight: 700;
}

.features-showcase {
  margin: 1.75rem 0;
}

.features-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-box {
  background: #fff;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #0f172a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.feature-box:hover .feature-icon {
  background: #1e293b;
  transform: scale(1.05);
}

.feature-box span {
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.info-card {
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.info-card:hover .info-card-icon {
  background: #0f172a;
  color: #fff;
}

.info-card-body {
  flex: 1;
  min-width: 0;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.info-card p {
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  font-size: 0.875rem;
}

/* Services Section */
.services-section {
  background: #f8fafc;
  position: relative;
  padding: 60px 0;
}

.services-section::after {
  display: none;
}

.section-header-services .section-badge {
  margin-bottom: 0.35rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.service-card.featured {
  border-color: #0f172a;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.service-card.featured:hover {
  border-color: #0f172a;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0f172a;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
  letter-spacing: 0.02em;
}

.service-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #f1f5f9;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay i {
  font-size: 2.5rem;
  color: #fff;
}

.service-content {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #0f172a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -36px auto 1.25rem;
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-icon {
  background: #1e293b;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.service-card p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.65;
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
}

.service-note-highlight {
  margin-bottom: 1rem !important;
  background: #f1f5f9 !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  border-left: 3px solid #0f172a !important;
  font-size: 0.9rem !important;
  color: #334155 !important;
  font-style: normal !important;
  text-align: left !important;
}

.service-note-highlight i {
  color: #0f172a;
  margin-right: 0.35rem;
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tag {
  background: #f1f5f9;
  color: #334155;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.service-card:hover .tag {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: #0f172a;
}

.service-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-service {
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid #0f172a;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  justify-content: center;
  min-width: 120px;
}

.btn-service.btn-primary {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.btn-service.btn-primary:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
  transform: translateY(-2px);
}

.btn-service:not(.btn-primary):not(.btn-whatsapp) {
  background: #fff;
  color: #0f172a;
}

.btn-service:not(.btn-primary):not(.btn-whatsapp):hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-service.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}

.btn-service.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-service.btn-full {
  width: 100%;
}

.service-note {
  margin-top: 0.75rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Pricing Section */
.pricing-section {
  background: #f8fafc;
  position: relative;
  padding: 60px 0;
}

.section-header-pricing .section-badge {
  margin-bottom: 0.35rem;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.pricing-card-wide {
  margin-top: 2rem;
  border-radius: 12px;
}

.pricing-header {
  background: #0f172a;
  color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.pricing-header::before {
  display: none;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.pricing-header h3 small {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.4rem;
  font-weight: 500;
}

.pricing-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}

.price-row:hover {
  background: #f8fafc;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 8px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  color: #334155;
  font-weight: 500;
  font-size: 0.9rem;
  flex: 1;
  padding-right: 1rem;
}

.price-value {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.price-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

.price-note i {
  color: #0f172a;
  margin-right: 0.45rem;
}

.price-note-highlight {
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  border-top: none !important;
  background: #f1f5f9 !important;
  border-radius: 8px !important;
  border-left: 3px solid #0f172a !important;
  text-align: left !important;
  font-size: 0.9rem !important;
  color: #334155 !important;
}

.price-note-highlight i {
  color: #0f172a;
}

.cumple-details {
  background: #f1f5f9;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  margin-top: 0;
  border: 1px solid #e2e8f0;
}

.cumple-details p {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}

.cumple-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
}

.cumple-details li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cumple-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0f172a;
  font-weight: 700;
}

/* Gallery Section */
.gallery-section {
  background: #f8fafc;
  padding: 60px 0;
}

.section-header-gallery .section-badge {
  margin-bottom: 0.35rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-video {
  position: relative;
}

.gallery-video video {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.gallery-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
}

/* Contact Section */
.contact-section {
  background: #f8fafc;
  padding: 60px 0;
}

.section-header-contact .section-badge {
  margin-bottom: 0.35rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item i {
  color: #0f172a;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-item strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-item p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-item a,
.contact-link {
  color: #334155;
  text-decoration: none;
  transition: color 0.25s ease;
  word-break: break-all;
}

.contact-item a:hover,
.contact-link:hover {
  color: #0f172a;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  color: #334155;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn-contact:hover {
  border-color: #0f172a;
  background: #f8fafc;
  transform: translateX(4px);
}

.btn-contact i {
  font-size: 1.4rem;
  color: #0f172a;
  flex-shrink: 0;
}

.btn-contact span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.btn-contact strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  display: block;
}

.btn-contact small {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 400;
}

.btn-contact-whatsapp i {
  color: #25d366;
}

.btn-contact-whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.06);
}

.btn-contact-whatsapp:hover i {
  color: #25d366;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
}

.map-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.map-link:hover {
  color: #334155;
}

.map-link i {
  font-size: 0.85rem;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0 1.5rem;
  position: relative;
  border-top: 1px solid #1e293b;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 56px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.footer-brand .footer-highlight {
  color: #f97316;
  font-weight: 600;
}

.footer h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

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

.footer-contact li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-contact i {
  width: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.social-links {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.footer hr {
  border: none;
  border-top: 1px solid #1e293b;
  margin: 2rem 0 1.25rem;
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Banner de consentimiento de cookies — Ley 21.719 */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.97);
  border-top: 1px solid #334155;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cookie-consent-title {
  width: 100%;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.cookie-consent-text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-consent-text a {
  color: #f97316;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  min-width: 130px;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-reject {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.cookie-btn-accept {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

.cookie-btn-accept:hover {
  background: #ea580c;
  border-color: #ea580c;
}

@media (max-width: 576px) {
  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  left: auto;
  margin: 0;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1e293b;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.35);
}

/* Animaciones */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 78vh;
  }

  .hero-content {
    min-height: 78vh;
    padding: 75px 0 45px;
    display: flex;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .hero-logo {
    max-height: 110px;
  }

  .hero-subtitle {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .section-header {
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
  }
  
  .hero-badge,
  .hero-subtitle,
  .hero-description {
    text-align: center !important;
  }

  .hero-scroll {
    bottom: 20px;
  }

  .hero-indicators {
    bottom: 70px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 1.5rem;
  }

  .section-header-about {
    text-align: center;
    margin-bottom: 1.75rem;
  }

  .section-header-about .section-title {
    text-align: center;
  }

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

  .about-image-wrapper {
    margin-bottom: 1.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .features-showcase {
    margin: 1.25rem 0;
  }

  .features-title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }

  .features-grid {
    gap: 0.625rem;
  }

  .feature-box {
    padding: 0.875rem;
  }

  .info-cards {
    margin-top: 1.25rem;
  }

  .info-card {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    gap: 1.25rem;
  }

  .contact-item {
    gap: 0.875rem;
    padding-bottom: 1.25rem;
  }

  .contact-item i {
    font-size: 1.1rem;
  }

  .contact-item strong {
    font-size: 0.95rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .map-wrapper {
    margin-top: 2rem;
  }

  .map-container iframe {
    height: 350px;
  }

  .service-card,
  .pricing-card {
    margin-bottom: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
  }

  /* Navbar Mobile - Tablet */
  .navbar {
    padding: 0.5rem 0;
    overflow-x: hidden;
    position: relative;
  }

  .navbar .container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    padding-left: 15px;
    padding-right: 60px;
    box-sizing: border-box;
  }

  .navbar-brand {
    max-width: 110px;
    flex: 0 0 auto;
    margin-right: 0;
    overflow: hidden;
  }

  .logo-img {
    height: 50px !important;
    transform: translateY(10px);
    max-width: 100%;
    width: auto;
  }

  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0.25rem;
    margin: 0;
    flex-shrink: 0;
    flex-grow: 0;
  }

  .navbar-collapse {
    background: #fff;
    margin: 0 -15px;
    padding: 1rem 15px 1.25rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 0 0 12px 12px;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    padding: 0.5rem 0.75rem !important;
  }

  .navbar-nav .btn-email-nav,
  .navbar-nav .btn-whatsapp-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    margin-right: 0;
    display: inline-block;
    text-align: center;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-content .col-12 {
    padding: 0 15px;
  }

  .hero-content .row {
    margin-left: 0;
    margin-right: 0;
    min-height: auto;
  }

  .hero-content {
    padding: 100px 0 60px;
  }
}

@media (max-width: 576px) {
  /* Navbar Mobile - Móvil */
  .navbar {
    padding: 0.5rem 0;
    overflow-x: hidden;
    position: relative;
  }

  .navbar .container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    padding-left: 15px;
    padding-right: 60px;
    margin: 0;
    box-sizing: border-box;
  }

  .navbar-brand {
    max-width: 90px;
    flex: 0 0 auto;
    margin-right: 0;
    overflow: hidden;
  }

  .logo-img {
    height: 40px !important;
    transform: translateY(8px);
    max-width: 100%;
    width: auto;
    object-fit: contain;
  }

  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0.25rem;
    margin: 0;
    flex-shrink: 0;
    flex-grow: 0;
  }

  .back-to-top {
    bottom: 80px;
    right: 5px !important;
    left: auto !important;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    position: fixed !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transform: none;
    z-index: 9999;
  }
  
  /* Asegurar que el botón no se salga en pantallas muy pequeñas */
  @media (max-width: 400px) {
    .back-to-top {
      right: 3px !important;
      width: 42px;
      height: 42px;
    }
  }
  
  @media (max-width: 360px) {
    .back-to-top {
      right: 2px !important;
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  }

  .hero-section {
    min-height: 73vh;
  }

  .hero-content {
    min-height: 73vh;
    padding: 65px 0 40px;
    display: flex;
    align-items: center;
  }

  .hero-content .row {
    min-height: auto;
  }

  .hero-content .col-12 {
    padding: 0 10px;
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero-logo {
    max-height: 80px;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-content,
  .pricing-body {
    padding: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
  }

  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-scroll {
    bottom: 15px;
  }

  .hero-scroll a {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .hero-indicators {
    bottom: 60px;
  }

  .hero-indicators .indicator {
    width: 10px;
    height: 10px;
  }

  .hero-indicators .indicator.active {
    width: 25px;
  }

  .hero-content .col-12 {
    padding: 0 10px;
  }

  .contact-item {
    gap: 0.75rem;
    padding-bottom: 1rem;
  }

  .contact-item i {
    font-size: 1rem;
  }

  .contact-item strong {
    font-size: 0.9rem;
  }

  .contact-item p {
    font-size: 0.85rem;
  }

  .contact-buttons {
    gap: 0.875rem;
    margin-top: 0.5rem;
  }

  .btn-contact {
    padding: 1rem 1.25rem;
    gap: 0.875rem;
  }

  .btn-contact i {
    font-size: 1.35rem;
  }

  .btn-contact strong {
    font-size: 0.95rem;
  }

  .btn-contact small {
    font-size: 0.85rem;
  }

  .map-wrapper {
    margin-top: 2rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-brand img {
    height: 45px;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer h5 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: 0.4rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-contact li {
    font-size: 0.85rem;
    margin-bottom: 0.625rem;
  }

  .footer-contact i {
    width: 18px;
    font-size: 0.9rem;
  }

  .social-links {
    margin-top: 1rem;
  }

  .social-links {
    margin-top: 1rem;
    gap: 0.625rem;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .copyright {
    font-size: 0.8rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
    font-size: 1.4rem;
  }

}

/* ============================================
   Anuncio Pop-up (responsive)
   ============================================ */
.announce-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.announce-modal {
  width: min(400px, 92vw);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 25px 70px rgba(2, 6, 23, 0.35);
  padding: 1.5rem 1.25rem 1.35rem;
  position: relative;
}

.announce-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #f8fafc;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.announce-close:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(15, 23, 42, 0.28);
  background: #f1f5f9;
}

.announce-body {
  padding: 0.5rem 1.75rem 0.25rem;
  text-align: center;
}

.announce-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.announce-title {
  margin: 0 0 0.65rem 0;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.announce-text {
  margin: 0 auto 1.25rem auto;
  color: #64748b;
  line-height: 1.65;
  font-size: 0.95rem;
  max-width: 360px;
}

.announce-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.announce-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: #0f172a;
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
}

.announce-cta:hover {
  background: #1e293b;
  color: #ffffff !important;
}

.announce-dismiss {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #475569;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.announce-dismiss:hover {
  color: #0f172a;
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.25);
}

@media (max-width: 576px) {
  .announce-modal {
    width: min(380px, 92vw);
    padding: 1.25rem 1rem 1rem;
  }

  .announce-body {
    padding: 0.25rem 0.5rem 0;
  }

  .announce-title {
    font-size: 1.35rem;
  }

  .announce-text {
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
  }

  .announce-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}
