body {
    background-color: #fefefe;
    padding-top: 70px;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar .navbar-brand {
  letter-spacing: 0.2px;
  font-weight: 800;
  color: #0f172a !important;
}

.navbar .nav-link {
  color: #0f172a !important;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background-color .18s ease, transform .18s ease, color .18s ease;
}

.navbar .nav-link:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

/* .navbar .nav-link.active {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8 !important; 
} */

/* Toggler más limpio */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}

/* =========================
   DROPDOWN (look & feel)
   ========================= */
.dropdown-menu {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  min-width: 280px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  color: #0f172a;
  transition: background-color .18s ease, transform .18s ease;
}

.dropdown-item:hover {
  background: rgba(37, 99, 235, 0.10);
  transform: translateX(2px);
}

/* Flechita dropdown más suave */
.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: 2px;
}

/* =========================
   HOVER OPEN (solo desktop)
   ========================= */
@media (min-width: 992px) {
  /* Estado inicial del dropdown */
  .nav-item.dropdown .dropdown-menu {
    display: none;
  }

  /* Hacer que el dropdown se muestre en hover del nav-item */
  .nav-item.dropdown:hover > .dropdown-menu,
  .nav-item.dropdown.show > .dropdown-menu {
    display: block !important;
  }

  /* Para que el dropdown quede "abierto" visualmente */
  .nav-item.dropdown:hover > .nav-link,
  .nav-item.dropdown.show > .nav-link {
    background: rgba(37, 99, 235, 0.08);
  }

  /* Mantener el dropdown visible cuando está abierto y el mouse está sobre él */
  .dropdown-menu.show {
    display: block !important;
  }
}

/* =========================
   LANGUAGE SELECTOR
   ========================= */
.language-selector {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.language-dropdown {
  margin-left: 12px;
}

.language-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  color: #0f172a !important;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.18s ease;
}

.language-dropdown .dropdown-toggle:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.language-dropdown .dropdown-menu {
  min-width: 160px;
  padding: 8px;
}

.language-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.18s ease;
}

.language-dropdown .dropdown-item:hover {
  background: rgba(37, 99, 235, 0.10);
  transform: translateX(2px);
}

.language-dropdown .dropdown-item.active {
  background: rgba(37, 99, 235, 0.15);
  color: #1d4ed8;
}

.language-dropdown .dropdown-item i {
  width: 20px;
  margin-right: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.language-dropdown .dropdown-item.active i {
  opacity: 1;
}

/* =========================
   MOBILE tweaks
   ========================= */
@media (max-width: 991.98px) {
  .navbar .nav-link {
    border-radius: 12px;
    padding: 12px 14px;
  }
  .dropdown-menu {
    margin-top: 6px;
    min-width: 100%;
    box-shadow: none;
    border-radius: 12px;
  }
  
  .language-selector {
    margin-left: 0;
    width: 100%;
    margin-top: 8px;
  }
  
  .language-dropdown {
    width: 100%;
    margin-left: 0;
  }
  
  .language-dropdown .dropdown-toggle {
    width: 100%;
    justify-content: center;
  }
}
/* ===== HERO ===== */
.hero-section {
    min-height: 85vh;
    background-color: #fefefe;
    position: relative;
    overflow: hidden;
}

/* Animated background */
.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 60% 40% 55% 45%;
    filter: blur(40px);
    animation: float 18s infinite alternate ease-in-out;
}

.hero-bg::before {
    background: radial-gradient(circle, rgba(58,141,255,0.25), transparent 70%);
    top: -15%;
    left: -15%;
}

.hero-bg::after {
    background: radial-gradient(circle, rgba(244,180,0,0.25), transparent 70%);
    top: 45%;
    left: 55%;
    animation-duration: 24s;
}

@keyframes float {
    from {
        transform: translateY(0) translateX(0);
    }
    to {
        transform: translateY(-40px) translateX(40px);
    }
}


.hero-title {
    font-size: 1.5rem;
    color: #444;
}

.hero-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* ===== BUTTONS ===== */
/* ===== UNIFIED CUSTOM BUTTONS ===== */
.btn-primary-custom,
.btn-secondary-custom,
.btn-third-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0px !important;
  margin-bottom: 0px !important
  ;

  padding: 12px 26px;
  border-radius: 10px !important;;
  border: none;

  font-family: 'Segoe UI', sans-serif;   /* mismo font */
  font-size: 1rem;                        /* mismo size */
  font-weight: 500;                       /* ✅ mismo “grosor” */
  letter-spacing: 0.2px;
  line-height: 1;                         /* ✅ evita que se vean raros */
  text-decoration: none;

  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.btn-primary-custom:hover,
.btn-secondary-custom:hover,
.btn-third-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  text-decoration: none;
}

.btn-primary-custom:active,
.btn-secondary-custom:active,
.btn-third-custom:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

/* Colores (los de siempre) */
.btn-primary-custom { background-color: #639ef0; color: #fff; }
.btn-primary-custom:hover { background-color: #7bacf1; }

.btn-secondary-custom { background-color: #F4B400; color: #0e0e0e; }
.btn-secondary-custom:hover { background-color: #d9a200; }

.btn-third-custom { background-color: #8eb8f3; color: #0e0e0e; }
.btn-third-custom:hover { background-color: #3579f7; color: #fff; }

/* Si los estás usando como <a class="btn ..."> bootstrap a veces aplica font-weight */
a.btn-primary-custom,
a.btn-secondary-custom,
a.btn-third-custom {
  font-weight: 500 !important;  /* ✅ fuerza igualdad */
}


.packages-cta-btn:hover{
  background: #0c2d6e;
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(17,24,39,0.32);
  text-decoration: none;
}

@media (max-width: 768px){
  .packages-cta{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .packages-cta-btn{
    justify-content: center;
    width: 100%;
  }
}


/* Para que el fondo animado quede atrás */
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Para que el contenido esté encima del fondo */
.hero-section .container{
  position: relative;
  z-index: 1;
}

/* Foto centrada arriba */
.about-photo{
  display: block;
  margin: 0 auto;
  max-width: 320px;     /* ajusta a gusto */
  width: 100%;
  height: auto;
  border-radius: 14px;  /* opcional: se ve pro */
}



/* ===== REVIEWS ===== */
.reviews-section {
    background-color: #fafafa;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.review-card span {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.review-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.review-slide {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.review-img-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-name {
    display: block;
    font-weight: 600;
    color: #000;
}

.review-location {
    color: #666;
}

/* Flechas más limpias */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}


/* ===== FOOTER ===== */


.footer-section {
    background-color: #111;
    color: #ccc;
    padding: 48px 20px 20px;
  }
  
  .footer-section .container {
    max-width: 1100px;
  }
  
  .footer-section h5 {
    color: #fff;
    margin-bottom: 12px;
  }
  
  /* Layout */
  .footer-row {
    align-items: flex-start;
    row-gap: 28px;
  }
  
  /* BRAND */
  .footer-brand h5 {
    font-size: 18px;
  }
  .footer-brand p {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }
  
  /* QUICK LINKS (centrado y ordenado) */
  .footer-links-col {
    text-align: center;
  }
  
  .quick-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 36px;
    list-style: none;
    padding: 0;
    margin: 0 auto;          /* centra el bloque */
    width: fit-content;      /* evita que se estire */
    justify-content: center; /* centra columnas del grid */
  }
  
  .quick-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  .quick-links li a:hover {
    color: #fff;
  }
  
  /* SOCIAL (centrado dentro de su columna) */
  .footer-social {
    text-align: center;
  }
  
  .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    justify-content: center;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    background: #3A8DFF;
    transform: translateY(-3px);
  }
  
  /* Footer bottom */
  .footer-bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #aaa;
  }
  
  /* Desktop: deja el brand a la izquierda, y mantiene centrados links/social */
  @media (min-width: 768px) {
    .footer-brand { text-align: left; }
    .footer-links-col { text-align: center; }
    .footer-social { text-align: center; }
  }
  
  /* Mobile: todo centrado */
  @media (max-width: 767px) {
    .footer-brand { text-align: center; }
    .footer-brand p { margin: 0 auto; }
  }
  

/* ABOUT ME*/
/* ===== HERO ABOUT ===== */
.about-hero{
  min-height: 60vh;
  padding-top: 75px;
  padding-bottom: 75px;
  color: #fff;

  /* Fondo más fino: gradiente + brillo suave */
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(255, 214, 102, 0.12), transparent 55%),
    radial-gradient(800px 520px at 80% 35%, rgba(59, 130, 246, 0.12), transparent 55%),
    linear-gradient(135deg, #2b0000, #4b0101, #120000);
  position: relative;
  overflow: hidden;
}

/* Líneas / textura suave */
.about-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.05), transparent 45%);
  pointer-events: none;
}

/* Título */
.about-hero h1{
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Texto del hero */
.about-hero-text{
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

/* Botón más elegante (si usas .btn-secondary-custom) */
.btn-secondary-custom{
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-secondary-custom:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.35);
  filter: brightness(1.03);
}

/* ===== ABOUT PHOTO ===== */
.about-photo{
  width: 290px;
  height: 290px;
  object-fit: cover;
  border-radius: 999px;

  /* Borde con efecto “glass” */
  border: 4px solid rgba(255,255,255,0.18);

  /* Glow + sombra */
  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    0 0 0 10px rgba(255,255,255,0.04);

  transition: transform .2s ease, box-shadow .2s ease;
}
.about-photo:hover{
  transform: translateY(-3px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 10px rgba(255,255,255,0.05);
}

/* ===== ABOUT DETAILS (CLARO) ===== */
.about-details{
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(59,130,246,0.06), transparent 60%),
    radial-gradient(900px 420px at 85% 0%, rgba(244,180,0,0.07), transparent 60%),
    #ffffff;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

/* “Card” invisible para el texto (se ve más pro) */
.about-details .col-lg-9{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

/* Párrafos más elegantes */
.about-details p{
  font-size: 1.06rem;
  line-height: 1.9;
  color: #334155; /* slate */
  margin-bottom: 16px;
}

/* Un pequeño “divider” sutil entre párrafos */
.about-details p + p{
  padding-top: 10px;
  border-top: 1px dashed rgba(15, 23, 42, 0.10);
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .about-hero{
    padding-top: 105px;
    padding-bottom: 55px;
  }

  .about-hero-text{
    font-size: 1rem;
    padding: 0 10px;
  }

  .about-photo{
    width: 210px;
    height: 210px;
  }

  .about-details .col-lg-9{
    padding: 20px 18px;
    border-radius: 16px;
  }
}

/* =========================
   ABOUT: Credentials section
   ========================= */

   .credentials-wrap {
    max-width: 950px;
    margin: 0 auto;
  }
  
  /* Accordion look */
  .credentials-accordion .accordion-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  }
  
  .credentials-accordion .accordion-button {
    font-weight: 800;
    color: #0f172a;
    background: #ffffff;
    padding: 18px 18px;
  }
  
  .credentials-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
  }
  
  .credentials-accordion .accordion-button:not(.collapsed) {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.06);
  }
  
  .credentials-subtitle {
    color: #475569;
    font-weight: 600;
  }
  
  /* Grid cards */
  .cred-card {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    padding: 0;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  
  .cred-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  }
  
  .cred-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    background: #f1f5f9;
  }
  
  .cred-meta {
    padding: 12px 14px 14px;
  }
  
  .cred-meta h6 {
    margin: 0 0 4px;
    font-weight: 800;
    color: #0f172a;
    font-size: 1rem;
  }
  
  .cred-meta span {
    display: block;
    color: #64748b;
    font-weight: 600;
    font-size: 0.92rem;
  }
  
  /* Note */
  .credentials-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-weight: 600;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
  }
  
  /* Modal */
  .cred-modal {
    border-radius: 18px;
    overflow: hidden;
  }
  
  .cred-modal .modal-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .cred-modal .modal-body {
    background: #0b1220;
    padding: 14px;
  }
  
  #credModalImg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #0b1220;
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 576px) {
    .cred-card img {
      height: 160px;
    }
  }
  
/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* 👈 ahora va a la derecha */
    left: auto;    /* 👈 anulamos la izquierda */
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}


.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);
    color: #fff;
}



/* ================= PACKAGES ================= */

.packages-section {
    padding: 80px 20px;
    background: #f9fafb;
    ;
    color: #fff;
  }
  
  .packages-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .packages-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .packages-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000;
  }
  
  .packages-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* GRID */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  /* CARD */
  .package-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }
  
  .package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .package-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3035;
  }
  
  .package-desc {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .package-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    color: #4b556300;
  }
  
  .package-benefits li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #4b5563;
  }
  
  .package-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3A8DFF;
  }
  
  /* FOOTER */
  .package-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
  }
  
  .btn-package {
    padding: 10px 18px;
    background: #3A8DFF;
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn-package:hover {
    background: #2c6fd6;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .packages-header h1 {
      font-size: 2rem;
    }
  }
  
/* ================= INFO PACKAGE PAGE ================= */

.info-package-section {
  padding: 120px 16px 80px;
  background: #f9fafb;
}

.info-package-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}

/* LEFT SIDE */
.info-left {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.info-left h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.info-left p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
}

.info-left h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
}

/* BENEFITS */
#packageBenefits {
  padding-left: 0;
  list-style: none;
}

#packageBenefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 0.98rem;
}

#packageBenefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* EXTRA INFO */
.info-extra {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.info-extra p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* RIGHT SIDE (PAYMENT) */
.info-right {
  position: sticky;
  top: 120px;
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: fit-content;
}

.info-right h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

/* PAYMENT BOX */
.payment-box {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.payment-box p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 16px;
}

/* PAYPAL BUTTON (future-ready) */
.payment-box a,
.payment-box button {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  background: #ffc439;
  color: #111827;
  border: none;
  transition: all 0.2s ease;
}

.payment-box a:hover,
.payment-box button:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .info-package-container {
    grid-template-columns: 1fr;
  }

  .info-right {
    position: static;
  }
}

/* ================= EDUCATIVE CONTENT ================= */

#educativeContent .card {
  border: none;
  border-radius: 14px;
  transition: all 0.3s ease;
}

#educativeContent .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

#educativeContent .card-body {
  padding: 1.5rem;
}

#educativeContent .card-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#educativeContent .card-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

#educativeContent iframe {
  border-radius: 10px;
}

#educativeContent img {
  border-radius: 12px;
}

/* PDF Button */
#educativeContent .btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 16px;
}

/* Section spacing */
section.container {
  max-width: 1200px;
}

/* Button back Packages */

.btn-back {
  position: fixed;
  top: 80px;            /* pa que no choque con el navbar */
  left: 20px;
  background-color: #ffffff;
  color: #0d6efd;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  z-index: 900;
}

.btn-back:hover {
  background-color: #0d6efd;
  color: #ffffff;
}

#black-text {
  font-weight: 700;       
  color: #111827;         
}
