@font-face {    
    font-family: 'WorkSans-Light';    
    src: url('../Font/WorkSans-Light.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {  
  font-family: 'WorkSans-Light' !important;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  background-image: url('/Imagenes/Fotos/09.webp');
  background-size: cover;
  background-repeat: repeat-y;
  background-attachment: fixed;
  z-index: 1;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-repeat: repeat-y;
  background-attachment: fixed;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: -1;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0);
  z-index: 2;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #fff;
  background-image: url('../Imagenes/Fotos/01.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 20px center;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
  margin-left: 80px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  padding: 0 25px;
  display: flex;
  align-items: center;
  height: 30px;
}

.nav-links a:hover {
  color: #4a9fcc;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 25px;
  width: 0;
  height: 2px;
  background: #fe0000;
  transition: width 0.3s ease;
}

.nav-links a:hover::before {
  width: calc(100% - 50px);
}

.nav-links:first-child a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;  
  background: linear-gradient(to bottom, #29b6ff 0%, #00a2ff 50%, #29b6ff 100%);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 174, 255, 0.9), 0 0 18px rgba(0, 174, 255, 0.7), 0 0 35px rgba(0, 174, 255, 0.45); 
}

.login-btn {
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  padding: 10px 30px !important;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 20px;
  cursor: pointer;
  letter-spacing: 2px;
}

.login-btn:hover {  
  transform: scale(1.05);
  transition: transform 0.3s;
  box-shadow: 0 0 7px 2px rgb(255 255 255 / 80%);
  background: linear-gradient(to bottom, #c0392b 0%, #d93120 100%);
  color: #fff !important;
  letter-spacing: 2px;
}

.login-btn::after,
.login-btn::before {
  display: none;
}

section {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-card-wrapper {
  margin: 150px 50px 100px;
  aspect-ratio: 16 / 9;
  min-height: 900px;
  max-width: 1600px;
  border-radius: 10px;
  border: 1px solid white;
  padding: 30px;
  background-color: rgba(0, 0, 0);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  overflow: auto;
}

.hero-section {
  display: flex;
  height: 100vh;
  padding: 0;
}

#empresa .page-card-wrapper {
  flex-direction: row;
  padding: 0;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 50px 40px 100px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #e0e0e0;
  font-weight: 300;
  margin-bottom: 20px;
}

.logo-text {
  margin-top: 50px;
  text-align: center;
}

.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 100px;
  font-weight: 800;
  letter-spacing: 8px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-main .letter-large {
  font-size: 200px;
  font-family: 'WorkSans-Light';
  text-shadow: 0px 0px 10px white;
}

.logo-separator {
  width: 4px;
  height: 180px;
  background: linear-gradient(
    to bottom,
    #29b6ff 0%,
    #00a2ff 50%,
    #29b6ff 100%
  );
  border-radius: 10px;
  box-shadow:
    0 0 8px rgba(0, 174, 255, 0.9),
    0 0 18px rgba(0, 174, 255, 0.7),
    0 0 35px rgba(0, 174, 255, 0.45);
  margin: 0 40px;
  align-self: center;  
  position: relative;
}

.logo-separator::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: rgba(0, 174, 255, 0.18);
  filter: blur(12px);
  border-radius: 20px;
  z-index: -1;
}

.logo-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 7px;
  color: #fff;
  margin-bottom: 15px;
  padding: 0 50px 10px;
  margin-top: 20px;
  border-bottom: 2px solid #4a9fcc;
  text-align: center;
}

.logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #fff;
}

.hero-right {
  flex: 1;
  background-image: url('/Imagenes/Fotos/Lobito.webp');
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin: 0;
  height: auto;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.porque-divider {  
    width: 4px;
    height: 150%;
    background: linear-gradient(to bottom, #29b6ff 0%, #00a2ff 50%, #29b6ff 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 174, 255, 0.9), 0 0 18px rgba(0, 174, 255, 0.7), 0 0 35px rgba(0, 174, 255, 0.45);    
}

.content-box h2,
.content-box h3 {
  font-family: 'Montserrat', sans-serif;
  color: #4a9fcc;
}

.content-box h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
}

.content-box h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-box h3:first-child {
  margin-top: 0;
}

.content-box p {
  font-size: 20px;
  line-height: 1.9;
  color: #e0e0e0;
  font-weight: 300;
  margin-bottom: 18px;
  text-indent: 30px;
}

.servicios-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.servicios-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #4a9fcc;
  margin-bottom: 60px;
  text-align: center;
}

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
  
}

.servicio-columna {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  letter-spacing: 1px;
}

.servicio-columna img {
  width: 100%;
  max-width: 190px;
  height: auto;
  margin-bottom: 20px;
  content-visibility: auto;
  aspect-ratio: 1 / 1;
}

.servicio-columna p {
  font-size: 17px;
  line-height: 1.6;
  color: #e0e0e0;
  font-weight: 300;
  
}

.columna-divider {
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #29b6ff 0%, #00a2ff 50%, #29b6ff 100%);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 174, 255, 0.9), 0 0 18px rgba(0, 174, 255, 0.7), 0 0 35px rgba(0, 174, 255, 0.45); 
}

.precios-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.precios-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #4a9fcc;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

.precios-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.precios-divider {
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #29b6ff 0%, #00a2ff 50%, #29b6ff 100%);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 174, 255, 0.9), 0 0 18px rgba(0, 174, 255, 0.7), 0 0 35px rgba(0, 174, 255, 0.45); 
  margin: 0 10px;
}

.plan-columna {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  border: 2px solid rgba(74, 159, 204, 0.5);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-columna:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 20px 5px rgba(103, 26, 197, 0.6);
}

.suscripcion-columna {
  border-color: #4a9fcc;
}

.unico-columna {
  border-color: #e74c3c;
}

.plan-badge-masxmenos {
  position: absolute;
  top: 10px;
  left: -66px;
  background-color: #ba1010;
  font-family: 'Roboto', sans-serif;
  color: white;
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 25px;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  letter-spacing: 3px;
}

.plan-columna h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #4a9fcc;
  margin-bottom: 25px;
}

.plan-caracteristicas {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-caracteristicas ul {
  list-style: none;
  padding: 0;
}

.plan-caracteristicas li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-caracteristicas .fas {
  color: #4a9fcc;
  font-size: 20px;
}

.plan-caracteristicas .no-incluye {
  color: #e74c3c;
}

.plan-precio {
  margin-top: auto;
  margin-bottom: 15px;
  text-align: center;
}

.plan-precio .monto {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.plan-precio .periodicidad {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #aaa;
  display: block;
  margin-top: 5px;
}

.select-plan-btn {
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.select-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(74, 159, 204, 0.5);
}

.unico-btn {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.unico-btn:hover {
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.5);
  background: linear-gradient(to bottom, #d93120 0%, #c0392b 100%);
}

.nota-precios {
  font-size: 16px;
  color: #aaa;
  margin-top: 30px;
  text-align: center;
}

.contacto-section {
  padding-top: 20px;
  display: flex;
  height: 100vh;
  position: relative;
}

#contacto .page-card-wrapper {
  flex-direction: row;
  padding: 0;
}

.contacto-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.contacto-divider {  
  margin-top: auto;
  margin-bottom: auto;
  z-index: 2;
  width: 4px;
  height: 90%;
  background: linear-gradient(to bottom, #29b6ff 0%, #00a2ff 50%, #29b6ff 100%);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 174, 255, 0.9), 0 0 18px rgba(0, 174, 255, 0.7), 0 0 35px rgba(0, 174, 255, 0.45); 
}

.contacto-left {
  flex: 1;
  padding: 40px 50px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contacto-left::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contacto-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #4a9fcc;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

.contacto-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 50px 40px 80px;
}

.contacto-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  z-index: 2;
  position: relative;
}

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

.form-group label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 159, 204, 0.3);
  border-radius: 8px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a9fcc;
  background: rgba(255, 255, 255, 0.08);
}

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

#contadorMensaje {
  float: right;
  color: #4a9fcc;
  font-weight: 600;
}

.captcha-group {
  margin-bottom: 30px;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 159, 204, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.captcha-box:hover {
  border-color: #4a9fcc;
  background: rgba(255, 255, 255, 0.08);
}

.captcha-box input[type='checkbox'] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #4a9fcc;
}

.captcha-label {
  margin: 0 !important;
  cursor: pointer;
  flex: 1;
  color: #fff;
  font-size: 15px;
}

.captcha-icon {
  display: flex;
  align-items: center;
  margin-left: auto;
  opacity: 0.7;  
}

.button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.submit-button {
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  padding: 14px 40px;
  border: none;
  outline: none;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 70%;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(74, 159, 204, 0.4);
  background: linear-gradient(to bottom, #59a6c9 0%, #3d89a9 100%);
}

.contact-success-message {
  text-align: center;
  color: #fff;
  margin-top: 15px;
}

.zonas-disponibles {
  z-index: 2;
  position: relative;  
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.zonas-disponibles h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #4a9fcc;
  margin-bottom: 30px;
}

.zonas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-content: center;
}

.zona-columna {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 159, 204, 0.3);
  border-radius: 8px;
  padding: 20px 10px;
}

.zona-columna h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.zona-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-size: 15px;
  width: 150px;
}

.zona-list li {
  margin: 15px 0;
}

.zona-columna a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  text-align: center;
}

.zona-columna a:hover {
  color: #4a9fcc;
}

.zona-no-disponible {
  font-style: italic;
  color: #aaa;
  text-align: center;
  margin-top: 5px;
  font-size: 16px;
}

footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #aaa;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #1a1a1a;
  width: 900px;
  height: min-content;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2.5px solid #fff;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.modal-backdrop.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-form-side {
  flex: 1;
  padding: 40px;
  background: #000;
}

.modal-form-side h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 37px;
  font-weight: 700;
  color: #4a9fcc;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 4px;
}

.modal-image-side {
  flex: 1;
  min-width: 50%;
  background-color: #000;
  background-image: url('/Imagenes/Fotos/GoldenLogin.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
}

.modal-form-side .form-group label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
}

.modal-form-side .form-group input {
  padding: 13px 20px;
}

.modal-btn-container {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.login-submit-btn {
  flex: 1;
  padding: 14px;
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  color: white;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 3px;
  font-family:'WorkSans-Light';
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 7px 2px rgb(255 255 255 / 80%);
}

.modal-action-btn {
  flex: 1;
  padding: 14px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 3px;
  font-family:'WorkSans-Light';
}

.modal-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 7px 2px rgb(255 255 255 / 80%);
}

#loginErrorMsg {
  color: #ff5353;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 20px;
  display: none;
}

.login-type-toggle {
  display: flex;
  margin-bottom: 25px;
  border: 1px solid rgba(74, 159, 204, 0.35);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.login-type-btn {
  flex: 1;
  padding: 10px 0;
  background: transparent;
  border: none;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.login-type-btn:hover:not(.active) {
  color: #fff;
  background: rgba(74, 159, 204, 0.12);
}

.login-type-btn.active {
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  color: red;
}

.login-type-btn:not(:last-child) {
  border-right: 1px solid rgba(74, 159, 204, 0.35);
  color: white;
}

.modal-confirmacion-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-confirmacion-backdrop.show {
  opacity: 1;
}

.modal-confirmacion-content {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-confirmacion-backdrop.show .modal-confirmacion-content {
  transform: scale(1);
}

.modal-confirmacion-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.modal-confirmacion-content.exito .modal-confirmacion-icon {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  animation: pulso-exito 0.6s ease;
}

.modal-confirmacion-content.error .modal-confirmacion-icon {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
  animation: sacudir 0.5s ease;
}

@keyframes pulso-exito {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes sacudir {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

.modal-confirmacion-titulo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.modal-confirmacion-mensaje {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.modal-confirmacion-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.modal-confirmacion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.modal-confirmacion-btn:active {
  transform: translateY(0);
}

.tc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
  padding: 20px;
}

.tc-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.tc-content {
  background: linear-gradient(160deg, #0d1b2a 0%, #0a1520 100%);
  border: 1px solid rgba(74, 159, 204, 0.35);
  border-radius: 16px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(74, 159, 204, 0.1);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  overflow: hidden;
}

.tc-backdrop.show .tc-content {
  transform: translateY(0) scale(1);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px 20px;
  border-bottom: 1px solid rgba(74, 159, 204, 0.2);
  background: rgba(74, 159, 204, 0.05);
  flex-shrink: 0;
}

.tc-header-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.tc-logo-letter {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.tc-logo-sep {
  color: #4a9fcc;
  font-size: 28px;
  font-weight: 300;
  margin: 0 4px;
}

.tc-header-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 0 4px;
}

.tc-fecha {
  font-size: 12px;
  color: #4a9fcc;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.tc-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 30px;
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 159, 204, 0.4) transparent;
}

.tc-body::-webkit-scrollbar {
  width: 5px;
}

.tc-body::-webkit-scrollbar-track {
  background: transparent;
}

.tc-body::-webkit-scrollbar-thumb {
  background: rgba(74, 159, 204, 0.4);
  border-radius: 4px;
}

.tc-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #c8d8e8;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(74, 159, 204, 0.15);
}

.tc-intro strong {
  color: #4a9fcc;
}

.tc-modulo {
  margin-bottom: 22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(74, 159, 204, 0.5);
  border-radius: 0 10px 10px 0;
  transition: background 0.2s ease;
}

.tc-modulo:hover {
  background: rgba(74, 159, 204, 0.06);
}

.tc-modulo-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4a9fcc;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-emoji {
  font-size: 16px;
}

.tc-modulo-subtitulo {
  font-size: 13px;
  color: #8aafcc;
  font-style: italic;
  margin-bottom: 12px;
}

.tc-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tc-lista li {
  font-size: 14px;
  line-height: 1.65;
  color: #b8ccd8;
  padding-left: 16px;
  position: relative;
}

.tc-lista li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #4a9fcc;
  font-weight: 700;
}

.tc-item-titulo {
  color: #e0eaf0;
  font-weight: 600;
}

.tc-nota {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(243, 156, 18, 0.08);
  border: 1px solid rgba(243, 156, 18, 0.25);
  border-radius: 8px;
  font-size: 13px;
  color: #f0c070;
  line-height: 1.55;
}

.tc-aceptacion {
  padding: 18px 30px;
  border-top: 1px solid rgba(74, 159, 204, 0.2);
  background: rgba(74, 159, 204, 0.04);
  flex-shrink: 0;
}

.tc-check-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.tc-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tc-check-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(74, 159, 204, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
  margin-top: 1px;
}

.tc-checkbox:checked+.tc-check-custom {
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  border-color: #4a9fcc;
  box-shadow: 0 0 12px rgba(74, 159, 204, 0.4);
}

.tc-checkbox:checked+.tc-check-custom::after {
  content: '';
  width: 6px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin-top: -3px;
}

.tc-check-text {
  font-size: 13px;
  color: #a0b8c8;
  line-height: 1.6;
}

.tc-check-text strong {
  color: #e0eaf0;
}

.tc-footer {
  display: flex;
  gap: 14px;
  padding: 18px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.2);
}

.tc-btn {
  flex: 1;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tc-btn-volver {
  background: rgba(255, 255, 255, 0.06);
  color: #a0b8c8;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tc-btn-volver:hover {
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.5);
  color: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(192, 57, 43, 0.2);
}

.tc-btn-confirmar {
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74, 159, 204, 0.3);
}

.tc-btn-confirmar:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 7px 24px rgba(74, 159, 204, 0.5);
}

.tc-btn-confirmar:disabled {
  background: rgba(74, 159, 204, 0.15);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 600px) {
  .tc-header {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
    gap: 10px;
  }

  .tc-body {
    padding: 16px 18px;
  }

  .tc-aceptacion,
  .tc-footer {
    padding: 14px 18px;
  }

  .tc-btn {
    font-size: 13px;
    letter-spacing: 1px;
    padding: 12px 10px;
  }

  .tc-header-text h2 {
    font-size: 17px;
  }
}

.pago-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.pago-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.pago-content {
  background: linear-gradient(160deg, #0b1929 0%, #081320 100%);
  border: 1px solid rgba(74, 159, 204, 0.3);
  border-radius: 18px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(74, 159, 204, 0.08);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s ease;
}

.pago-backdrop.show .pago-content {
  transform: translateY(0) scale(1);
}

.pago-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(74, 159, 204, 0.18);
  background: rgba(74, 159, 204, 0.05);
  flex-shrink: 0;
}

.pago-header-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.pago-header-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: 0.5px;
}

.pago-header-sub {
  font-size: 12px;
  color: #4a9fcc;
  margin: 0;
  letter-spacing: 0.5px;
}

.pago-paso {
  flex: 1;
  overflow-y: auto;
  padding: 22px 26px;
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 159, 204, 0.3) transparent;
}

.pago-paso.oculto {
  display: none;
}

.pago-paso-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent, #4a9fcc);
  margin: 0 0 6px;
  letter-spacing:3px;
  text-transform:uppercase;
  text-align: center;

}

.pago-paso-desc {
  font-size: 13px;
  color: #7a9aaa;
  margin: 0 0 20px;
  line-height: 1.55;
}

.pago-form-group {
  margin-bottom: 16px;
}

.pago-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #7a9aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.pago-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 159, 204, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: #e0eaf0;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.pago-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.pago-input:focus {
  border-color: #4a9fcc;
  box-shadow: 0 0 0 3px rgba(74, 159, 204, 0.15);
  background: rgba(74, 159, 204, 0.06);
}

.pago-input-mono {
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  font-size: 16px;
}

.pago-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a9fcc' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.pago-select option {
  background: #0d1b2a;
  color: #e0eaf0;
}

.pago-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pago-error {
  font-size: 13px;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  line-height: 1.5;
  display: none;
}

.pago-error.visible {
  display: block;
}

.pago-footer {
  display: flex;
  gap: 12px;
  padding: 16px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.2);
}

.pago-btn {
  flex: 1;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pago-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.pago-btn-secundario {
  background: rgba(255, 255, 255, 0.05);
  color: #7a9aaa;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pago-btn-secundario:hover:not(:disabled) {
  background: rgba(192, 57, 43, 0.15);
  border-color: rgba(192, 57, 43, 0.4);
  color: #e74c3c;
}

.pago-btn-primario {
  background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
  color: #fff;
  box-shadow: 0 4px 14px rgba(74, 159, 204, 0.3);
}

.pago-btn-primario:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(74, 159, 204, 0.5);
}

.pago-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: pagoSpin 0.7s linear infinite;
  flex-shrink: 0;
}

.pago-btn.cargando .pago-btn-text {
  opacity: 0.5;
}

.pago-btn.cargando .pago-spinner {
  display: block;
}

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

@media (max-width: 600px) {
  .pago-content {
    max-height: 96vh;
  }

  .pago-paso {
    padding: 18px;
  }

  .pago-footer {
    padding: 14px 18px;
  }

  .pago-header {
    padding: 16px 18px;
    gap: 10px;
  }

  .pago-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pago-btn {
    font-size: 12px;
    padding: 12px 10px;
  }
}

.bg-lobos {
  background-image: url('../Imagenes/Fotos/Lobos.webp');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-golden {
  background-image: url('/Imagenes/Fotos/Golden.webp');
  background-position: center;
  background-size: 100% 100%;
}

.bg-caballo {
  background-image: url('/Imagenes/Fotos/Caballo.webp');
  background-position: center;
  background-size: 100% 100%;
}

@media (max-width: 1200px) {
  .contacto-container {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .contacto-left,
  .contacto-right {
    width: 100%;
    padding: 50px 30px;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
  }

  .contacto-left {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .contacto-right {
    padding-top: 20px;
    padding-bottom: 80px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 10px 20px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 0 10px;
  }

  .nav-links {
    gap: 10px;
  }

  .hero-section {
    flex-direction: column;
  }

  .hero-left {
    padding: 100px 20px 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .logo-main {
    font-size: 80px;
    letter-spacing: 4px;
  }

  .logo-main .letter-large {
    font-size: 110px;
  }

  .logo-separator {
    font-size: 130px;
    margin: 0 10px;
  }

  .logo-subtitle {
    font-size: 28px;
    padding: 0 20px 10px;
  }

  .logo-tagline {
    font-size: 14px;
  }

  .hero-right {
    height: 60vh;
    margin: 0;
  }

  .porque-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .porque-divider {
    display: none;
  }

  .servicios-section h2 {
    font-size: 42px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .columna-divider {
    display: none;
  }

  .contacto-left h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .contacto-left,
  .contacto-right {
    min-height: 400px;
  }

  .precios-grid {
    flex-direction: column;
    gap: 30px;
  }

  .precios-divider {
    display: none;
  }

  .precios-section h2 {
    font-size: 42px;
  }

  .plan-columna h3 {
    font-size: 28px;
  }

  .plan-precio .monto {
    font-size: 48px;
  }

  .plan-badge-masxmenos {
    width: 150px;
    left: -25px;
    font-size: 14px;
  }

  .modal-content {
    max-width: 90%;
    flex-direction: column;
  }

  .modal-image-side {
    min-height: 200px;
  }

  .modal-form-side {
    padding: 30px;
  }

  .page-card-wrapper {
    margin: 50px 20px;
    min-height: 300px;
    aspect-ratio: auto;
  }

  #contacto .page-card-wrapper {
    flex-direction: column;
  }

  .contacto-left {
    padding: 50px 30px 20px;
  }

  .contacto-right {
    padding: 20px 30px 50px;
  }

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

@media (max-width: 768px) {
  .modal-confirmacion-content {
    padding: 30px 20px;
    max-width: 350px;
  }

  .modal-confirmacion-icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .modal-confirmacion-titulo {
    font-size: 20px;
  }

  .modal-confirmacion-mensaje {
    font-size: 14px;
  }

  .modal-confirmacion-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}

.paso2fa-col         { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.paso2fa-aviso       { color: #f39c12; letter-spacing: 2px; text-align: center; margin: 0; }
.paso2fa-instruccion { color: white; font-size: 12px; letter-spacing: 1px; text-align: center; margin: 0; }
.paso2fa-instruccion-mb { margin-bottom: 12px; }
.paso2fa-qr          { background: white; padding: 10px; border-radius: 8px; }
.paso2fa-qr-loading  { color: #333; text-align: center; font-size: 13px; }
.paso2fa-input       { text-align: center; font-size: 1.4rem; letter-spacing: 6px; width: 160px; }
.paso2fa-btn {
    background: linear-gradient(135deg, #2c5f7c, #4a9fcc);
    padding: 5px 15px; border-radius: 10px; font-weight: 500;
    cursor: pointer; letter-spacing: 4px; color: white;
    font-size: 13px; font-family: 'Montserrat', sans-serif;
    height: 30px; border: 1px solid white;}
.paso2fa-trust  { font-size: 0.85rem; display: flex; align-items: center; gap: 6px; color: white; letter-spacing: 2px; margin-bottom: 8px; }
.paso2fa-error  { color: #ff5353; margin-top: 4px; }
.tc-nota-mb  { margin: 0 0 8px 0; }
.tc-list     { list-style-type: disc; padding-left: 20px; color: white; text-align: left; margin: 0; }
.tc-list-plain { list-style-type: disc; }
.tc-italic   { text-indent: 20px; font-style: italic; }
.tc-li       { margin-bottom: 10px; }
.footer-zone-note { font-size: 12px; letter-spacing: 4px; margin-top: 10px; color: white; }

.pago-representante-titulo {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 159, 204, 0.2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent, #4a9fcc);
  text-align: center;
}

.div-2fa {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  z-index:9999;
  align-items:center;
  justify-content:center;
}

.div2 {
  background:#1a2a3a;
  border:2px solid #3498db;
  border-radius:12px;
  padding:30px;
  width:320px;
  text-align:center;
  box-shadow:0 8px 32px rgba(0,0,0,.5);
}

.h3 {
  color:#3498db;
  letter-spacing:3px;
  margin:0 0 8px;
}

.p {
  color:#ccc;
  font-size:13px;
  letter-spacing:1px;
  margin:0 0 16px;
}

.entradas {
  width:100%;
  padding:12px;
  font-size:24px;
  text-align:center;
  letter-spacing:8px;
  background:#0d1f2d;
  color:#fff;
  border:2px solid #3498db;
  border-radius:8px;
  box-sizing:border-box;
  outline:0;
}

.p2 {
  color:#f39c12;
  font-size:13px;
  letter-spacing:2px;
  margin:12px 0 0;
}

.p3 {
  color:#e74c3c;
  font-size:12px;
  letter-spacing:1px;
  margin:6px 0 0;
  display:none;
}

.div3 {
  display:flex;
  gap:10px;
  margin-top:16px;
}

.btvolver {
  flex:1;
  padding:10px;
  background:#95a5a6;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
  letter-spacing:2px;
}

.btconti {
  flex:1;
  padding:10px;
  background:#3498db;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
  letter-spacing:2px;
  font-weight:700;
}

