:root {
  --white-color: #ffffff;
  --primary-color: #4B8CA6;
  --secondary-color: #fecc26;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #1488b6;
  --custom-btn-bg-hover-color: #46588C;
  --dark-color: #000000;
  --p-color: #ffffff;
  --border-color: #7fffd4;
  --link-hover-color: #1488b6;

  --body-font-family: 'PxGroteskRegular', sans-serif;

  /* MOBILE FIRST - Tamaños base para móvil */
  --h1-font-size: 36px;
  --h2-font-size: 28px;
  --h3-font-size: 22px;
  --h4-font-size: 18px;
  --h5-font-size: 16px;
  --h6-font-size: 14px;
  --p-font-size: 14px;
  --btn-font-size: 14px;
  --copyright-font-size: 14px;

  --border-radius-large: 10px;
  --border-radius-medium: 10px;
  --border-radius-small: 10px;

  --font-weight-light: 200;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}

/* ========================================
   BASE - MOBILE FIRST
======================================== */

* {
  box-sizing: border-box;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  background-image: url('../img/FondoLanding.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

/* ========================================
   BOTÓN AMARILLO .myButton - RESPONSIVE
======================================== */

.myButton {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0px 0px 0px 0px #fff6af;
  background: linear-gradient(to bottom, #ffed7a 5%, #ffab23 100%);
  background-color: #ffed7a;
  border-radius: 13px;
  border: 1px solid #ffffff;
  cursor: pointer;
  color: #333333;
  font-family: Arial;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 20px;
  text-decoration: none;
  text-shadow: 0px 2px 0px #ffee66;
  transition: all 0.3s;
}

.myButton:hover {
  background: linear-gradient(to bottom, #ffab23 5%, #ffed7a 100%);
  background-color: #ffab23;
}

.myButton:active {
  position: relative;
  top: 1px;
}

/* ========================================
   NEWSPAPER Y COL3FINAL - MOBILE FIRST
======================================== */

/* Móvil: 2 columnas (ubicación izquierda, info derecha) */
.newspaper {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-wrap,
.date-wrap {
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: var(--border-radius-medium);
  text-align: center;
}

/* Footer móvil: apilado */
.col3Final {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ========================================
   TYPOGRAPHY - MOBILE
======================================== */

h2, h3, h4, h5, h6 {
  color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
}

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { font-size: var(--h6-font-size); }

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 1px;
  line-height: 1.6;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b, strong {
  font-weight: var(--font-weight-bold);
}

/* ========================================
   LINK FX - MANTENIDO
======================================== */

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

/* ========================================
   SECTIONS - MOBILE
======================================== */

.section-padding {
  padding-top: 50px;
  padding-bottom: 20px;
  background-color: black;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 25px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 10px 15px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color);
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}

/* ========================================
   CUSTOM ICON
======================================== */

.custom-icon {
  color: var(--secondary-color);
}

/* ========================================
   CUSTOM BUTTONS - MOBILE
======================================== */

.custom-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 1rem auto;
  background: #1488b6;
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
}

.custom-btn:hover {
  color: var(--dark-color);
  background-color: white;
  border-color: white;
  font-weight: 900;
}

.custom-btn-nv {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
  background: #1488b6;
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 15px;
  display: block;
  text-align: center;
}

.custom-btn-nv:hover {
  color: var(--dark-color);
  background-color: white;
  border-color: white;
  font-weight: 900;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid #1488b6;
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-b {
  width: 100%;
  max-width: 300px;
  margin: 1rem auto;
  background: transparent;
  border: 2px solid white;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  display: block;
  text-align: center;
}

.custom-btn-b:hover {
  background: #1488b6;
  color: white;
  font-weight: 800;
}

/* ========================================
   VIDEO - MOBILE
======================================== */

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#video {
  display: none;
}

#mobile-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   NAVIGATION - MOBILE
======================================== */

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background-color: var(--dark-color);
  z-index: 9;
  padding: 1rem;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding: 10px 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* ========================================
   HERO SECTION - MOBILE
======================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background-size: cover;
  min-height: 100vh;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.65;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 30px;
}

.hero-section .container .row {
  height: 100%;
}

/* ========================================
   ABOUT - MANTENIDO
======================================== */

.about-section {
  color: white !important;
  background-image: url(../images/bg-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 25px;
}

/* ========================================
   PRICING - MOBILE
======================================== */

.price {
  background-color: #303030;
  border-radius: 20px;
  padding: 20px;
  margin: 10px auto;
  width: 100%;
  max-width: 300px;
  min-height: 200px;
}

.price1 {
  background-color: #303030;
  border-radius: 20px;
  padding: 20px;
  margin: 10px auto;
  width: 100%;
}

.pricing-section {
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.pricing-thumb {
  border: 5px dotted var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 25px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 10px;
}

.pricing-list {
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
}

.pricing-tag span {
  font-size: 150%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

/* ========================================
   ACCORDION - MOBILE
======================================== */

.accordion {
  --bs-accordion-color: white;
  --bs-accordion-bg: transparent;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1rem;
  --bs-accordion-btn-padding-y: 0.75rem;
  --bs-accordion-btn-color: white;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1rem;
  --bs-accordion-body-padding-y: 0.75rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 0.9rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
  background-color: white;
}

.accordion-button:not(.collapsed) {
  font-weight: 700;
  color: var(--white-color);
  background-color: #46588c;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: #46588c;
}

.accordion-section {
  margin: 20px 0;
}

.accordion-header {
  background-color: rgba(139, 69, 19, 0.7);
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: rgba(139, 69, 19, 0.9);
}

.accordion-header h5 {
  margin: 0;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.accordion-icon {
  color: white;
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-icon.active {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  background-color: rgba(139, 69, 19, 0.5);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion-content.active {
  display: block;
}

.price-table {
  width: 100%;
  color: white;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 12px;
}

.price-table th {
  background-color: rgba(80, 40, 10, 0.8);
  padding: 8px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.price-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.price-table tr:hover {
  background-color: rgba(100, 50, 20, 0.5);
}

.price-table .price-col {
  text-align: right;
  font-weight: 500;
}

.price-table .action-col {
  text-align: center;
}

/* Scrollbar personalizado */
.accordion-content::-webkit-scrollbar {
  height: 8px;
}

.accordion-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.accordion-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

/* ========================================
   FOOTER - MOBILE
======================================== */

.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding: 30px 15px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 40px;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

/* ========================================
   SOCIAL ICONS - MANTENIDO
======================================== */

.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before {
  animation: spinAround 2s linear infinite;
}

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

/* ========================================
   VIDEO SECTION - MOBILE
======================================== */

.video-section {
  margin: 20px 0;
}

.youtube-thumbnail-link {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 50px;
  transition: all 0.3s;
  z-index: 2;
}

.video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 15px;
  z-index: 1;
}

.video-info-overlay h5 {
  color: white;
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
}

.video-info-overlay p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 12px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.btn-danger {
  background-color: #FF0000;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
}

.btn-danger:hover {
  background-color: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

/* ========================================
   TABLET - 768px and up
======================================== */

@media screen and (min-width: 768px) {
  :root {
    --h1-font-size: 52px;
    --h2-font-size: 36px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 18px;
    --p-font-size: 16px;
  }

  .section-padding {
    padding-top: 70px;
  }

  .hero-section {
    padding-top: 100px;
  }

  /* Tablet: 3 columnas */
  .newspaper {
    grid-template-columns: repeat(3, 1fr);
  }

  /* En tablet, la última caja solo ocupa 1 columna */
  .newspaper .location-wrap:last-child {
    grid-column: auto;
  }

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

  .myButton {
    font-size: 20px;
    padding: 12px 24px;
  }

  .custom-btn,
  .custom-btn-b {
    max-width: 350px;
  }

  .tab-content {
    padding: 35px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .pricing-list {
    column-count: 2;
  }

  .pricing-tag {
    width: 120px;
    height: 120px;
    margin: 20px;
  }

  .pricing-tag span {
    font-size: 180%;
  }

  .play-button-overlay {
    width: 80px;
    height: 55px;
  }

  .price-table {
    font-size: 13px;
  }

  .price-table th,
  .price-table td {
    padding: 10px 12px;
  }

  #video {
    display: block;
  }

  #mobile-image {
    display: none;
  }
}

/* ========================================
   DESKTOP - 992px and up (DISEÑO ORIGINAL EXACTO)
======================================== */

@media screen and (min-width: 992px) {
  :root {
    --h1-font-size: 74px;
    --h2-font-size: 46px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 16px;
    --btn-font-size: 14px;
    --copyright-font-size: 16px;
  }

  body {
    background-attachment: fixed;
  }

  /* NEWSPAPER: 5 COLUMNAS EN GRID (NO COLUMN-COUNT) */
  .newspaper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .location-wrap,
  .date-wrap {
    margin-bottom: 0;
  }

  /* COL3FINAL: 3 COLUMNAS EN GRID */
  .col3Final {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .col3Final .location-wrap {
    margin-bottom: 0;
  }

  /* PÁRRAFOS - COMO ORIGINAL */
  p {
    font-size: 16px;
    letter-spacing: 2px;
  }

  /* SECTION PADDING - COMO ORIGINAL */
  .section-padding {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  /* NAVBAR - TRANSPARENTE COMO ORIGINAL */
  .navbar {
    background: transparent;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 0;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    border-radius: var(--border-radius-large);
    margin: 10px;
    padding: 10px 20px;
  }

  .navbar-nav .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
    color: var(--white-color);
  }

  /* HERO - COMO ORIGINAL */
  .hero-section {
    padding-top: 100px;
  }

  .hero-section .container {
    padding-bottom: 50px;
  }

  /* BOTONES - COMO ORIGINAL */
  .custom-btn {
    width: 60%;
    max-width: none;
    font-size: 21px;
    padding: 20px 26px;
    margin-right: auto;
    margin-left: auto;
  }

  .custom-btn-nv {
    width: 20%;
    max-width: none;
    font-size: 21px;
    padding: 7px 5px;
    margin-right: auto;
    margin-left: auto;
  }

  .custom-btn-b {
    width: 65%;
    max-width: none;
  }

  .myButton {
    width: auto;
    max-width: none;
    display: inline-block;
    font-size: 20px;
    padding: 10px 24px;
  }

  /* TAB CONTENT - COMO ORIGINAL */
  .tab-content {
    padding: 45px;
  }

  .nav-tabs .nav-link {
    padding: 15px 25px;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 15px;
  }

  /* PRICING - COMO ORIGINAL */
  .pricing-thumb {
    padding: 50px;
  }

  .pricing-list {
    column-count: 2;
  }

  .pricing-tag {
    width: 120px;
    height: 120px;
    margin: 20px;
  }

  .pricing-tag span {
    font-size: 180%;
  }

  .price {
    width: 300px;
    height: 300px;
    padding: 30px;
  }

  /* ABOUT - COMO ORIGINAL */
  .about-text-info {
    padding: 35px;
  }

  /* FOOTER - COMO ORIGINAL */
  .site-footer {
    padding-bottom: 30px;
  }

  .site-footer-top {
    margin-bottom: 70px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .site-footer-bottom {
    margin-top: 60px;
  }

  /* VIDEO - COMO ORIGINAL */
  .youtube-thumbnail-link:hover {
    transform: scale(1.02);
  }

  .youtube-thumbnail-link:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .play-button-overlay {
    width: 90px;
    height: 60px;
  }

  .video-section {
    margin: 30px 0;
  }

  .video-info-overlay {
    padding: 20px;
  }

  .video-info-overlay h5 {
    font-size: 18px;
  }

  .video-info-overlay p {
    font-size: 14px;
  }

  /* ACCORDION - COMO ORIGINAL */
  .accordion {
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
  }

  .accordion-button {
    font-size: 1rem;
  }

  .accordion-header {
    padding: 15px 20px;
  }

  .accordion-header h5 {
    font-size: inherit;
  }

  .accordion-icon {
    font-size: 20px;
  }

  .accordion-content {
    padding: 20px;
  }

  .price-table {
    font-size: inherit;
  }

  .price-table th,
  .price-table td {
    padding: 10px 12px;
  }

  .price-table th {
    padding: 12px;
  }
}

/* ========================================
   RESPONSIVE ADICIONALES (MANTENIDOS)
======================================== */

@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .custom-btn-b {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }
}

/* ========================================
   OPTIMIZACIONES TOUCH
======================================== */

@media (hover: none) and (pointer: coarse) {
  .youtube-thumbnail-link:hover {
    transform: none;
  }

  .youtube-thumbnail-link:hover .play-button-overlay {
    transform: translate(-50%, -50%);
  }
}