/* === VARIABLES GLOBALES === */
:root {
  --primary-bg: #00244D;
  --secondary-bg: #E5E7EA;
  --light-bg: #D1D5DB;
  --first-blue: #003066;
  --second-blue: #003B80;
  --third-blue: #00294F;
  --dark-bg: #182838;
  --text-light: #FFFFFF;
  --text-dark: #00244D;
  --text-teal: #008080;
  --accent: #0278FF;
  --accent2: #002244;
  --border-color: #333333;
  --toggle-width: 200px;
  --toggle-height: 58px;
  --toggle-padding: 4px;
  --toggle-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --modal-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET Y BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", Trebuchet, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === ELEMENTOS GENERALES === */
.logo-img {
  width: 14em;
  height: auto;
  display: block;
}

#markdown-content {
  background-color: var(--first-blue);
  padding: 4em;
}

#markdown-content a {
  color: cyan;
}

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

/* === HEADER Y NAVEGACIÓN === */
.header {
  background-color: var(--primary-bg);
  color: var(--text-light);
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: white;
}

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

.menu li a {
  text-decoration: none;
  padding: 20px 0.8em;
  transition: all 0.3s ease;
  display: block;
  color: var(--first-blue);
}

.menu li a:hover {
  color: var(--text-light);
  background-color: var(--accent);
  border-radius: 5px;
}

/* === TIPOGRAFÍA === */
h1,
h2,
h3 {
  font-weight: bold;
  margin: 0.5em 0;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

.du {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
}

.sub {
  font-size: 0.63em;
  vertical-align: sub;
}

.sup {
  font-size: 0.5em;
  vertical-align: super;
}

.respira-p {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

/* === BOTÓN HAMBURGUESA === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  gap: 4px;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light-bg);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger:hover span {
  background-color: white;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* === BOTÓN DE ACCIÓN === */
.cta-button {
  background-color: var(--second-blue);
  color: var(--accent);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 1em;
}

.cta-button a {
  color: white;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--accent);
  color: white;
}

/* === SECCIÓN HERO === */
.hero-section {
  background-color: var(--primary-bg);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 60vh;
}

.slide h1 {
  margin: 0;
  font-size: 2em;
}

.slide p {
  padding: 0.4em;
  margin-bottom: 1em;
}

.slide img {
  width: 100%;
  height: 60vh;
  object-fit: contain;
  margin-left: -16%;
}

.slide .container {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 60%;
  background: rgba(0, 20, 70, 0.8);
  padding: 1rem;
  border-radius: 10px;
}

.slide.active {
  display: block;
}

.carousel .prev,
.carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel .prev {
  left: 20px;
}

.carousel .next {
  right: 20px;
}

/* === CÓMO FUNCIONA === */
.how-it-works-section {
  background-color: var(--secondary-bg);
  color: var(--text-dark);
  padding: 50px 0;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1 1 calc(33% - 20px);
  background-color: var(--secondary-bg);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.icon {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.iconbig {
  font-size: 140px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* === SERVICIOS === */
.services-section {
  background-color: var(--primary-bg);
  color: var(--text-light);
  padding: 50px 0;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 calc(33% - 20px);
  background-color: var(--first-blue);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.service-card:hover {
  background-color: var(--accent);
}

.detalle-section {
  background-color: white;
  color: var(--first-blue);
  margin: 2em 0;
  text-align: center;
}

/* === MODAL DE DETALLE === */
.detail-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-modal.active {
  display: flex;
  opacity: 1;
}

.detail-modal-content {
  background: #fff;
  color: var(--first-blue);
  border-radius: 12px;
  width: 98%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.5s ease;
  position: relative;
}

.detail-modal.active .detail-modal-content {
  transform: scale(1);
}

.detail-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  font-weight: bold;
  background: none;
  border: none;
}

.detail-modal-close:hover {
  color: white;
}

/* === GARANTÍAS === */
.guarantees-section {
  background-color: var(--second-blue);
  color: white;
  padding: 50px 0;
  margin: 2em 0;
  text-align: center;
}

.guarantees-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.guarantees-list li {
  flex: 1 1 calc(33% - 20px);
  padding: 15px;
  background-color: var(--primary-bg);
  color: var(--text-light);
  border-radius: 5px;
  text-align: center;
}

/* === TESTIMONIOS === */
.testimonials-section {
  background-color: var(--secondary-bg);
  color: var(--text-dark);
  padding: 50px 0;
  text-align: center;
}

.testimonial-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-item {
  flex: 1 1 calc(50% - 20px);
  background-color: var(--secondary-bg);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

/* === FAQ === */
.faq-section {
  background-color: var(--primary-bg);
  color: var(--text-light);
  padding: 50px 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--first-blue);
  margin-bottom: 0;
}

.faq-question {
  background-color: var(--first-blue);
  width: 100%;
  padding: 18px 25px;
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.faq-question:hover {
  background-color: var(--accent);
  color: white;
}

.faq-question[aria-expanded="true"] {
  background-color: var(--accent);
  color: white;
}

.arrow-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  margin-left: 10px;
}

.faq-question[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: var(--third-blue);
  color: var(--text-light);
}

.faq-content {
  padding: 0 25px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  line-height: 1.6;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 1000px;
}

.faq-question[aria-expanded="true"] + .faq-answer .faq-content {
  padding: 20px 25px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 12px 0;
}

.faq-answer ul, 
.faq-answer ol {
  margin: 15px 0 15px 25px;
  padding-left: 15px;
}

.faq-answer li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.faq-answer ul {
  list-style-type: disc;
}

.faq-answer ol {
  list-style-type: decimal;
}

/* === CONTACTO === */
.contact-section {
  background-color: var(--secondary-bg);
  color: var(--text-dark);
  padding: 50px 0;
  text-align: center;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--primary-bg);
  border-radius: 5px;
}

.form-container {
  max-width: 480px;
  width: 100%;
  background: var(--secondary-bg);
  color: var(--text-dark);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2em;
  box-sizing: border-box;
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 500;
}

input[type="email"] {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus {
  border-color: #0099cc;
  outline: none;
}

/* === CHECKBOX PERSONALIZADO === */
.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: white;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  z-index: -1;
}

.checkmark {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-bg);
}

.checkbox-container:hover .checkmark {
  background-color: var(--primary-bg);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-container input:checked ~ .checkmark::after {
  opacity: 1;
}

.legal {
  font-size: 0.85em;
  color: #555;
  margin-bottom: 1em;
}

.legal a {
  color: #0077aa;
  text-decoration: underline;
  transition: color 0.3s;
}

.legal a:hover {
  color: #005577;
}

/* === BOTONES === */
button {
  background-color: var(--primary-bg);
  color: white;
  border: none;
  padding: 0.75em;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--accent);
}

.mensaje {
  margin-top: 1em;
  padding: 1em;
  border-radius: 4px;
  font-weight: bold;
  display: none;
}

.mensaje.visible {
  display: block;
  background-color: #e0f7e9;
  color: #007744;
}

.mensaje.error {
  background-color: #fdecea;
  color: #bb0000;
}

/* === FOOTER === */
.footer {
  background-color: var(--primary-bg);
  color: var(--text-light);
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.footer-links li a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--accent);
}

/* === SECCIÓN DE PRECIOS === */
.pricing-section {
  background-color: var(--primary-bg);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background-color: var(--first-blue);
  border-radius: 8px;
  padding: 30px;
  flex: 1 1 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: var(--toggle-transition);
  transform: translateY(0);
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.25em;
  font-weight: bold;
  margin: 15px 0;
}

.pricing-card ul {
  text-align: left;
  padding-left: 20px;
  margin: 20px 0;
  list-style: none;
}

.pricing-card ul li {
  margin-bottom: 10px;
}

.btn-plan {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(145deg, var(--accent), #0056b3);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--toggle-transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(2, 120, 255, 0.3);
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 120, 255, 0.4);
  background: linear-gradient(145deg, #0056b3, var(--accent));
}

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

/* Efecto de pulso suave para botones importantes */
@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(2, 120, 255, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(2, 120, 255, 0.6); }
  100% { box-shadow: 0 4px 15px rgba(2, 120, 255, 0.3); }
}

.featured .btn-plan {
  animation: pulse 2s infinite;
}

.featured {
  border: 2px solid var(--accent);
  background-color: var(--second-blue);
}

.nota {
  font-size: 0.9em;
  margin-top: 30px;
  color: #ccc;
}

.old-price { margin-left: 0.5rem; color: #888; font-size: 0.95em; }
.price .du { margin-left: 0.2rem; }
.modal-price s { color: #b00; opacity: 0.9; }

/* === SERVICIOS - ESTILOS ADICIONALES === */
.service-category {
  margin-bottom: 3em;
}

.service-card h4 {
  font-size: 1.5em;
  color: cyan;
  margin-bottom: 10px;
}

.price {
  font-size: 1.8em;
  font-weight: bold;
  margin: 10px 0;
}

.price-small {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 10px;
}

.service-card ul li {
  margin-bottom: 8px;
}

.service-card.full-width {
  flex: 1 1 100%;
  background-color: var(--second-blue);
}

/* === TOGGLE DE PLANES - ANIMACIONES MEJORADAS === */
.pricing-toggle {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.toggle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.toggle-label {
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-light);
  transition: var(--toggle-transition);
}

.button-outer-wrapper {
  display: inline-block;
  border-radius: 50px;
  padding: var(--toggle-padding);
  background-color: var(--dark-bg);
  cursor: pointer;
  transition: var(--toggle-transition);
  width: var(--toggle-width);
  height: var(--toggle-height);
  box-shadow: 
    rgba(0, 0, 0, 0.1) 0px 4px 12px inset, 
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  position: relative;
  border: 2px solid var(--first-blue);
  transition: var(--toggle-transition);
}

.button-outer-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 
    rgba(0, 0, 0, 0.2) 0px 6px 16px inset, 
    rgba(0, 0, 0, 0.4) 0px 22px 40px -14px inset;
}

.button-inner-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 46px;
  background: linear-gradient(180deg, var(--dark-bg), var(--third-blue));
  transition: var(--toggle-transition);
  overflow: hidden;
}

/* Estado inicial - Euro activo por defecto */
.button-inner-wrapper:not(.turn-on)::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(145deg, var(--accent2), #0056b3);
  border-radius: 42px;
  transition: var(--toggle-transition);
  box-shadow: 0 4px 15px rgba(2, 120, 255, 0.5);
  left: 0;
}

/* Estado activo - G1 activo */
.button-inner-wrapper.turn-on::before {
  left: 50%;
  background: linear-gradient(145deg, var(--accent), #7a4dff);
  box-shadow: 0 4px 15px rgba(170, 120, 255, 0.5);
}

.toggle-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: var(--toggle-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Estado activo - texto blanco brillante */
.button-inner-wrapper:not(.turn-on) #currencyToggle,
.button-inner-wrapper.turn-on #currencyToggleG1 {
  color: white !important;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transform: scale(1.02);
}

/* Estado inactivo - texto más tenue */
.button-inner-wrapper:not(.turn-on) #currencyToggleG1,
.button-inner-wrapper.turn-on #currencyToggle {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: normal;
  transform: scale(0.98);
}

/* Botones de periodo */
.button-inner-wrapper:not(.turn-on) #periodToggle,
.button-inner-wrapper.turn-on #periodToggleAnual {
  color: white !important;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transform: scale(1.02);
}

.button-inner-wrapper:not(.turn-on) #periodToggleAnual,
.button-inner-wrapper.turn-on #periodToggle {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: normal;
  transform: scale(0.98);
}

/* Efecto de resplandor suave */
.button-inner-wrapper::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0.;
  transition: var(--toggle-transition);
}

.button-inner-wrapper:hover::after {
  opacity: 1;
}

/* Animación del texto */
.toggle-btn {
  transform: scale(1);
  transition: var(--toggle-transition);
}

.button-inner-wrapper:not(.turn-on) #currencyToggle:hover,
.button-inner-wrapper.turn-on #currencyToggleG1:hover {
  transform: scale(1.05);
}

/* === RESUMEN DEL PLAN === */
.resumen-plan {
  background: var(--third-blue);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: bold;
  color: var(--text-light);
  border: 6px solid var(--primary-bg);
}

.ahorro-text {
  color: #28a745;
  font-weight: bold;
  margin-top: 8px;
  font-size: 0.95em;
}

/* === MODAL GENERAL - ANIMACIONES MEJORADAS === */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: var(--modal-transition);
}

.modal-overlay.active {
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: var(--first-blue);
  margin: 5% auto;
  padding: 25px;
  border: 1px solid var(--border-color);
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 30px 50px rgba(0, 20, 50, 1);
  transform: scale(0.8) translateY(50px);
  opacity: 1;
  transition: var(--modal-transition);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: -20px;
  right: -14px;
  font-size: 28px;
  color: var(--light-bg);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  font-weight: bold;
  transition: var(--toggle-transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--second-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
  color: var(--accent);
  transform: rotate(90deg) scale(1.1);
  background: #f8f9fa;
}

/* === SEPARADOR === */
.separador {
  color: var(--light-bg);
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--primary-bg);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    width: 100%;
    text-align: center;
    font-weight: bold;
  }

  .menu li a {
    padding: 2em;
    color: var(--text-light);
    display: block;
    border-bottom: 4px solid var(--second-blue);
    background-color: var(--first-blue);
  }

  .menu li a:hover {
    background-color: var(--accent);
  }
}

@media (min-width: 769px) {
  .pricing-toggle {
    flex-direction: row;
  }

  .toggle-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .pricing-toggle {
    flex-direction: column;
    align-items: center;
  }

  .button-outer-wrapper {
    width: 180px;
  }

  .toggle-label {
    font-size: 0.9em;
  }
}

/* === AJUSTES DE LAYOUT (del otro CSS) === */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}