/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --magenta: #E6007E;
  --magenta-dark: #c2006b;
  --magenta-light: #fce4f0;
  --magenta-soft: #f9e0ef;
  --magenta-gradient: linear-gradient(135deg, #E6007E 0%, #c2006b 100%);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: rgba(255, 255, 255, 0.63);
  --gray-600: #4b5563;
  --gray-700: #3c3c3b;
  --gray-800: #3c3c3b;
  --gray-900: #3c3c3b;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 28px;
  --border-radius-xl: 40px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight:500;
}

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

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

/* ===== LOADER ===== */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, var(--magenta-light) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s;
  background-image: url(../images/bg-loader3.jpg);
  background-size: cover;
  background-position: center;
}

.loader-container.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
  padding: 40px;
  background: rgba(60,60,59,0.95);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  min-width: 320px;
  backdrop-filter: blur(10px);
}

.loader-logo {
  margin-bottom: 30px;
  animation: pulseLogo 1.5s ease-in-out infinite;
}

.loader-logo-img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid var(--magenta-light);
  border-top: 3px solid var(--magenta);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  font-size: 1rem;
  font-weight: 500;
  color:white;
  margin-bottom: 15px;
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: var(--magenta-light);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 10px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--magenta-gradient);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.loader-percentage {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.hidden {
  display: none;
}

.main-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.main-content.visible {
  opacity: 1;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #3c3c3b;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

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

.logo-text {
  background: var(--magenta-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color:white;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--magenta-gradient);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffffff;
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--magenta-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  overflow: hidden;
}

.hs-left {
  position: relative;
  width: 50%;
  height: 100%;
  background: #f5b5d11f;
  display: flex;
  align-items: center;
  z-index: 3;
  padding: 0 90px;
  padding-top: 40px;
  background-image: url(../images/bg-slide-big.jpg);
  background-size: cover;
  background-position: center;
}

.hs-left-content,
.hs-left-content p {
  max-width: 500px;
}
@media (max-width: 1440px) {
  .hs-left-content,
  .hs-left-content p {
    max-width: 440px;
  }
}
.hs-left-content .hs-title{
  color:white;
}
.hs-left-content .hs-desc{
  color:rgba(255, 255, 255, 0.63);
}

/* Contacto grid */
.contacto-grid-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Información de contacto */
.contacto-info-detailed {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contacto-info-detailed h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.contacto-info-detailed > p {
  color: var(--gray-600);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--magenta-light) 0%, #fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.3rem;
  color: var(--magenta);
}

.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-content p,
.info-content a {
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.info-content a:hover {
  color: var(--magenta);
}

/* Horario */
.horario-box {
  background: var(--gray-50);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-top: 25px;
}

.horario-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.horario-box h4 i {
  color: var(--magenta);
}

.horario-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.horario-item span:first-child {
  font-weight: 500;
  color: var(--gray-700);
}

.horario-item span:last-child {
  color: var(--gray-600);
}

/* Redes sociales contacto */
.social-contact {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-contact a {
  width: 45px;
  height: 45px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.2rem;
}

.social-contact a:hover {
  background: var(--magenta-gradient);
  color: white;
  transform: translateY(-3px);
}

/* Formulario */
.contacto-form-detailed {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contacto-form-detailed h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contacto-form-detailed > p {
  color: var(--gray-600);
  margin-bottom: 30px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.9rem;
}

.form-group textarea + i {
  top: 20px;
  transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px 14px 45px;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-md);
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(230,0,126,0.1);
}

.form-note {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 16px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.best-price-badge {
  text-align: center;
  margin-top: 30px;
}

/* Mapa */
.map-section {
  background: var(--gray-50);
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* ===== HERO COMPACTO ===== */
.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(230,0,126,0.15), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 24px 0;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 16px;
}

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

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Ofertas destacadas actualizadas */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.offer-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--magenta-light);
}

.offer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--magenta-light) 0%, #fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.offer-icon i {
  font-size: 2rem;
  color: var(--magenta);
}

.offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.offer-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.offer-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--magenta);
}

.offer-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--magenta-light);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--magenta);
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-item p {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.5;
  padding-left: 32px;
}

.best-price-badge {
  text-align: center;
  margin: 40px 0 20px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta-light);
  color: var(--magenta);
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.servicios-page .section-tag {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--magenta);
}

.breadcrumb i {
  font-size: 0.7rem;
}

.breadcrumb span {
  color: var(--magenta);
}

.hs-num {
  display: block;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--magenta);
  margin-bottom: 14px;
  font-weight: 800;
}

.hs-title {
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gray-900);
  margin-bottom: 24px;
  /* text-transform: uppercase; */
  letter-spacing: 0;
}

.hs-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 500px;
}

.hs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--magenta);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(230,0,126,0.3);
}

.hs-cta:hover {
  background: var(--magenta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(230,0,126,0.4);
}

.hs-right {
  position: relative;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 1.6s ease;
}

.hs-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 100%);
}

.hs-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hs-frame {
  position: absolute;
  inset: 14px;
  /* border: 2px solid #3c3c3b; */
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
}

.hs-social {
  position: absolute;
  top: 115px;
  right: 28px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hs-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 60,59,0.8);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.hs-social a:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: translateY(-2px);
}

.hs-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 360px;
  height: 400px;
  pointer-events: none;
}

.hs-center img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 10px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition: opacity 0.7s ease 0.15s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.hs-center img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hs-nav {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 10;
  display: flex;
  gap: 28px;
}

.hs-nav button {
  background: none;
  border: none;
  color: #3c3c3b;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  cursor: pointer;
  padding: 6px 2px;
  position: relative;
  transition: opacity 0.3s ease;
}

.hs-nav button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.hs-nav button:hover {
  opacity: 0.85;
}

.hs-nav button:hover::after {
  width: 100%;
}

.hs-anim {
  opacity: 0;
  transform: translateY(40px);
}

@keyframes hsSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hsSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-25px); }
}

.hs-anim.hs-in {
  animation: hsSlideIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hs-anim.hs-in.d1 { animation-delay: 0.08s; }
.hs-anim.hs-in.d2 { animation-delay: 0.22s; }
.hs-anim.hs-in.d3 { animation-delay: 0.42s; }
.hs-anim.hs-in.d4 { animation-delay: 0.6s; }

.hs-anim.hs-out {
  animation: hsSlideOut 0.3s ease forwards;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--magenta-gradient);
  color: white;
  box-shadow: 0 4px 12px rgba(230,0,126,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,0,126,0.4);
}

.btn-outline {
  background: transparent;
  border-color: white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--magenta);
  border-color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-800);
}

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

.btn-block {
  width: 100%;
  justify-content: center;
}


/* Secciones generales */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: white;
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
}

/* Cards servicios */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #3c3c3b;
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--gray-100);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--magenta-light);
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--magenta-light);
  border-radius: 50%;
  opacity: 0.5;
  transition: var(--transition);
}

.card:hover .card-icon-bg {
  transform: scale(1.1);
  opacity: 0.8;
}

.card-icon-wrapper i {
  font-size: 2rem;
  color: var(--magenta);
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color:white;
}

.card p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.card-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.card-link i{
  color: var(--magenta);
}

.card-link:hover {
  gap: 10px;
}

/* Ventajas */
.ventajas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ventajas-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.ventajas-text h2 {
  font-size: 2.2rem;
  color:white;
  font-weight: 800;
  margin: 16px 0;
}
.ventajas-positivo .ventajas-text h2,
.ventajas-positivo .ventajas-text p,
.ventajas-positivo .ventajas-text li span  {
  color:var(--gray-800);
}

.ventajas-text p,
.ventajas-text li span{
  color: rgba(255, 255, 255, 0.8);
}

.ventajas-list {
  list-style: none;
  margin: 28px 0;
}

.ventajas-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ventajas-list i {
  color: var(--magenta);
  font-size: 1.1rem;
}

/* Precios */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #3c3c3b;
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid #3c3c3b;
  position: relative;
  color: white;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--magenta);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta-gradient);
  color: white;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-icon {
  font-size: 2.5rem;
  color: var(--magenta);
  margin: 16px 0;
}

.pricing-size {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.pricing-features i {
  color: var(--magenta);
  width: 18px;
  font-size: 0.8rem;
}

/* ===== PROMOCIONES ===== */
.promos-section {
  background: #1a1a1a;
  background-image: url(../images/bg-ofertas.jpg);
  position: relative;
  overflow: hidden;
}

.promos-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promos-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promos-section .section-header {
  position: relative;
  z-index: 2;
}

.promos-title {
  color: white !important;
}

.promos-subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
}


.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.promos-grid.promos-grid-nosotros{
  grid-template-columns: repeat(3, 1fr);
}
.promo-card {
  background: linear-gradient(145deg, #2a2a2a 0%, #222222 100%);
  border-radius: var(--border-radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--magenta-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(230, 0, 126, 0.1);
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card--featured {
  border: 2px solid var(--magenta);
  transform: scale(1.04);
  background: linear-gradient(145deg, #2e1a25 0%, #222222 100%);
}

.promo-card--featured::before {
  opacity: 1;
  height: 4px;
}

.promo-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.promo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--magenta-gradient);
  color: white;
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.promo-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(230, 0, 126, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--magenta);
  transition: transform 0.3s ease, background 0.3s ease;
}

.promo-card:hover .promo-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(230, 0, 126, 0.2);
}

.promo-highlight {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #ffffff 30%, var(--magenta) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-percent {
  font-size: 2.8rem;
  font-weight: 800;
}

.promo-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.promo-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 50px;
}

.promo-desc strong {
  color: rgba(255, 255, 255, 0.85);
}

.promo-card .btn-primary {
  font-size: 0.82rem;
  padding: 13px 24px;
  letter-spacing: 0.3px;
}

.promos-legal {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

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

  .promo-card--featured {
    transform: scale(1);
  }

  .promo-card--featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 640px) {
  .promos-grid {
    grid-template-columns: 1fr !important;
    max-width: 380px;
    margin: 0 auto;
  }

  .promo-highlight {
    font-size: 3.5rem;
  }

  .promo-percent {
    font-size: 2.2rem;
  }
}

/* Contacto Hero */
.contacto-hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.contacto-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 100%);
}

.contacto-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}

.contacto-card {
  background: #3c3c3b;
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  color: white;
}

.contacto-card-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 10px;
}

.contacto-card-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 32px;
}

.contacto-field {
  margin-bottom: 4px;
}

.contacto-field input {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: 0.95rem;
  color: white;
  background: transparent;
  transition: border-color 0.3s ease;
}

.contacto-field input::placeholder {
  color: var(--gray-500);
}

.contacto-field input:focus {
  outline: none;
  border-bottom-color: var(--gray-900);
}

.contacto-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 28px;
  cursor: pointer;
}

.contacto-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--magenta);
  cursor: pointer;
}

.contacto-check span {
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.contacto-check a {
  color: var(--magenta);
  font-weight: 600;
  text-decoration: none;
}

.contacto-check a:hover {
  color: var(--magenta);
}

.contacto-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--magenta);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
  justify-content: center;
}

.contacto-submit i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.contacto-submit:hover {
  background: var(--gray-900);
  box-shadow: 0 4px 15px rgba(230,0,126,0.3);
}

.contacto-submit:hover i {
  transform: translateX(4px);
}

/* Footer */
.footer {
  background: #16191e;
  color: var(--gray-500);
  padding: 60px 0 30px;
  background-image: url(../images/bg-slide-big.jpg);
    background-size: cover;
    background-position: center;
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Redes sociales en footer */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--magenta);
  color: white;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contacto h4 {
  /* color: white; */
  color: white;
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 600;
}

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

.footer-links a {
  color: var(--gray-500);
  text-decoration: none;
  line-height: 2.2;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--magenta);
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 50px;
  border: none;
  background: var(--gray-800);
  color: white;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form button {
  background: var(--magenta-gradient);
  border: none;
  padding: 0 18px;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1f29370f;
  font-size: 0.75rem;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

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

.scroll-progress {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.progress-bg {
  stroke: #e5e7eb;
  stroke-width: 4;
}

.progress-circle {
  stroke: var(--magenta);
  stroke-width: 4;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-icon {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: var(--magenta-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(230,0,126,0.3);
}

.scroll-top:hover .scroll-icon {
  transform: translateY(-3px);
}

/* Animaciones AOS */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 68px;
    flex-direction: column;
    background: #3c3c3b;
    width: 100%;
    text-align: center;
    padding: 40px 0;
    gap: 25px;
    transition: 0.3s;
    border-top: 1px solid var(--magenta);
    box-shadow: var(--shadow-lg);
  }

  .logo-img {
    width: 140px;
    height: auto;
    padding: 10px 0;
}
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-slider {
    flex-direction: column;
    height: auto;
    /* min-height: 100vh; */
    min-height: unset;
  }

  .hs-right {
    width: 100%;
    height: 40vh;
    min-height: 260px;
    order: 1;
  }

  .hs-left {
    width: 100%;
    padding: 40px 24px 50px;
    order: 2;
  }

  .hs-center {
    display: none;
  }

  .hs-title {
    font-size: 2.2rem;
  }

  .hs-social {
    top: 16px;
    right: 16px;
  }

  .hs-frame {
    inset: 8px;
  }

  .hs-nav {
    top: -224px;
    display: none;
    /* bottom: 16px; */
    right: 16px;
  }
  
  .ventajas-grid {
    grid-template-columns: 1fr;
  }
  
  .contacto-hero {
    min-height: auto;
  }
  
  .contacto-card {
    max-width: 100%;
    padding: 36px 28px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .contacto-hero-inner {
    padding: 40px 20px;
  }
  
  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
  
  .scroll-progress {
    width: 45px;
    height: 45px;
  }
  
  .scroll-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .hs-right {
    height: 35vh;
    min-height: 220px;
  }

  .hs-left {
    padding: 30px 20px 40px;
  }

  .hs-title {
    font-size: 1.8rem;
  }

  .hs-desc {
    font-size: 0.85rem;
  }

  .hs-cta {
    padding: 12px 24px;
    font-size: 0.75rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 58px;
  height: 58px;
  background: #E6007E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 6px 20px rgba(230, 0, 126, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(230, 0, 126, 0.55);
  animation: none;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(230, 0, 126, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(230, 0, 126, 0.6), 0 0 0 12px rgba(230, 0, 126, 0.1); }
}
.legal-section {
  background: var(--gray-50, #f9fafb);
  padding: 64px 0 80px;
}

.legal-content {
  /* max-width: 860px; */
  margin: 0 auto;
  border-radius: 20px;
  color: var(--gray-700, #374151);
  line-height: 1.75;
  font-size: 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900, #111827);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.5px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800, #1f2937);
  margin: 1.75rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: #E6007E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: #b80063;
}

.legal-date {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
  color: var(--gray-500, #6b7280);
}

@media (max-width: 768px) {
  .ventajas-text h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  .legal-content {
    padding: 0 10px;
    border-radius: 16px;
  }
  .legal-content h2 {
    font-size: 1.25rem;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    left: 20px;
  }
  
  .header .btn-primary {
    position: relative;
    /* right: 70px;
    top: 12px; */
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .hs-desc {
    font-size: 1rem !important;
    font-weight: 500;
  }
  .footer-bottom {
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 1.8rem;
    margin-top: 45px !important;
  }
  .hero-subtitle {
    font-size: .9rem;
  }
  .contacto-grid-detailed{
    display: flex;
    flex-direction: column;
  }
  .contacto-grid-detailed .contacto-hero-inner{
    padding: 0;
  }
  .faq-grid {
    display: flex;
    flex-direction: column;
  }
}

/* Cookie consent */
#cc-main .cm__btn,
#cc-main .pm__btn {
  background: var(--magenta) !important;
  border: 1px solid var(--magenta) !important;
  border-radius: 100px !important;
  color: var(--cc-btn-primary-color);
  font-size: .82em;
  font-weight: 600;
  min-height: 42px;
  padding: .5em 1em;
  text-align: center;
  text-transform: uppercase !important;
}
#cc-main .cm__btn--secondary,
#cc-main .pm__btn--secondary {
  background: #e6007e12 !important;
  border-color: #e6007e12 !important;
  color: var(--gray-800) !important;
}
#cc-main .toggle__icon {
  background: var(--magenta) !important;
  box-shadow: 0 0 0 1px var(--magenta);
  display: flex;
  flex-direction: row;
  pointer-events: none;
  position: absolute;
  transition: all .25s ease;
}