/*
========================================
Theme Name: Hello Elementor Child
Theme URI: https://tusitio.com
Description: Child theme para Hello Elementor
Author: Tu nombre
Author URI: https://tusitio.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
========================================
*/


/* =====================================================
   1. RESET / AJUSTES GENERALES
===================================================== */

#site-header,
#site-footer {
  display: none;
}

.bm-auth-logo{
  display: none;
}

/* =====================================================
   2. AUTH LAYOUT (LOGIN / REGISTER)
===================================================== */

.bm-auth-wrapper {
  display: flex;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bm-auth-left {
  flex: 1;
  background-image: url('assets/img/maps-background.jpg');
  background-size: cover;
  background-position: center;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo img{
  width: 300px;
}

.bm-auth-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  max-height: auto;
  overflow-y: auto;
}

.bm-login-card {
  width: 400px;
  max-width: 100%;
}
.bm-auth-card {
  width: 560px;
  max-width: 100%;
}

/* =====================================================
   3. AUTH HEADER (LOGO + TITLE)
===================================================== */

.bm-auth-logo {
  text-align: center;
  margin-bottom: 10px;
}

.bm-auth-logo img {
  max-width: 280px;
  height: auto;
}

.bm-auth-title {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin: 5px 0 25px;
}


/* =====================================================
   4. FORMULARIOS
===================================================== */

.bm-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bm-field label {
  display: inline;
  font-size: 14px;
  margin-bottom: 4px;
}

.bm-field input {
  padding: 9px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.bm-field input:focus {
  outline: none;
  border-color: #0185a8;
}

/* Grid 2 columnas (registro) */
.bm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bm-birth-grid{
  display:flex;
  gap:10px;
}

.bm-birth-grid input,
.bm-birth-grid select{
  flex:1;
}

/* =====================================================
   5. BOTONES
===================================================== */

/* Botón Login */
.bm-btn-primary {
  width: 100%;
  background: #0185a8;
  color: #fff;
  padding: 11px 0;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.bm-btn-primary:hover {
  background: #006c86;
}

/* Botón Registro */
.bm-btn-register {
  width: 100%;
  background: #21a947;
  color: #fff;
  padding: 11px 0;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.bm-btn-register:hover {
  background: #1a8638;
}


/* =====================================================
   6. TEXTOS Y LINKS
===================================================== */

.bm-auth-text {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.bm-forgot {
  text-align: center;
  font-size: 13px;
  margin-top: -4px;
}

.bm-forgot a {
  color: #444;
  text-decoration: none;
}

.bm-forgot a:hover {
  text-decoration: underline;
}

.bm-auth-footer {
  text-align: center;
  font-size: 13px;
  margin-top: 18px;
}

.bm-auth-footer a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.redes{
  margin-top:30px
}

.redes img{
  width: 36px
}

.redes ul{
  display: flex;
  gap: 10px;
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.whatsapp-home{
  position: fixed;
  right:20px;
  bottom: 20px;
  width: 50px
}

.whatsapp-map{
  position: fixed;
  left:10px;
  bottom: 10px;
  width: 40px
}


/* =====================================================
   7. MENSAJES Y ESTADOS
===================================================== */

/* Errores */
.bm-auth-errors {
  background: #ffe5e5;
  border: 1px solid #ff9c9c;
  color: #a30000;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Check "Revisa tu correo" */
.bm-check-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #21a947;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.bm-check-circle span {
  font-size: 32px;
  color: #21a947;
}


/* =====================================================
   8. PASSWORD TOGGLE
===================================================== */

.bm-pass-wrap {
  position: relative;
}

.bm-pass-wrap input {
  padding-right: 48px;
}

.bm-pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}

button.bm-pass-toggle:hover,
button.bm-pass-toggle:link,
button.bm-pass-toggle:visited,
button.bm-pass-toggle:active,
button.bm-pass-toggle:focus {
  background-color: transparent !important;
}

.bm-pass-toggle svg {
  width: 26px;
  height: 26px;
  fill: #666;
}

.bm-eye-closed {
  display: none;
}

.bm-pass-toggle.is-visible .bm-eye-open {
  display: none;
}

.bm-pass-toggle.is-visible .bm-eye-closed {
  display: block;
}


/* =====================================================
   9. PANEL LOADER
===================================================== */

.bm-panel-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px;
  font-size: 14px;
  color: #6b7280;
}

.bm-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #e5e7eb;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: bm-spin 0.8s linear infinite;
}

@keyframes bm-spin {
  to {
    transform: rotate(360deg);
  }
}


/* =====================================================
   10. HOW IT WORKS PAGE
===================================================== */

.bm-how-it-works-page {
  background: #ffffff;
  color: #1e293b;
  padding: 60px 20px 100px;
  min-height: 100vh;
}

.bm-container {
  max-width: 1100px;
  margin: 0 auto;
}

.register-btn img{
  width: 200px
}

.cf-footer{
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mapa-btn img {
  width: 200px;
}

/* Header negro */
.bm-top-header {
  background: #000000;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.bm-top-header__container {
  max-width: 1100px;
  margin: 0 auto;
}

.bm-top-header__logo {
  height: 40px;
}


/* Títulos y texto */
.bm-title-main {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #111827;
}

.bm-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111827;
}

.bm-how-it-works-page p {
  margin-bottom: 20px;
}

.bm-note {
  background: #f1f5f9;
  padding: 18px 22px;
  border-left: 4px solid #6366f1;
  border-radius: 10px;
  margin: 40px 0;
  color: #334155;
}


/* =====================================================
   11. PACKAGE CARDS
===================================================== */

.bm-package {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.bm-package:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.bm-package__head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.bm-package__icon {
  width: 42px;
  height: 42px;
}

.bm-package__title {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
}

.bm-package__title span {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}

.bm-package__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bm-package__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #475569;
  font-size: 15px;
}

.bm-package__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
  font-weight: bold;
}

.price{
  background-color: #f1f1f1;
  padding:10px 20px;
  border-radius: 10px;
  font-size: 20px;
  margin-top:20px;
  font-weight:600;
  text-align: right;
}

/* Colores por paquete */
.bm-package--basic { border-left: 5px solid #2F2F37; }
.bm-package--one { border-left: 5px solid #198DB7; }
.bm-package--two { border-left: 5px solid #F9CB12; }
.bm-package--institutional { border-left: 5px solid #E41283; }
.bm-package--library { border-left: 5px solid #5C38A8; }
.bm-package--school { border-left: 5px solid #2C3FB4; }
.bm-package--social { border-left: 5px solid #FF751F; }


/* =====================================================
   12. RESPONSIVE
===================================================== */

@media (max-width: 960px) {

  .bm-auth-wrapper {
    flex-direction: column;
  }

  .bm-auth-left {
    display: none;
  }

  .bm-auth-right {
    padding: 24px 16px;
  }

  .bm-auth-card {
    width: 100%;
    padding: 32px 22px;
  }

  .bm-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

.bm-auth-logo{
  display: block;
}

  .bm-title {
    font-size: 28px;
  }

  .bm-package {
    padding: 22px;
  }

  .bm-package__title {
    font-size: 18px;
  }

  .bm-how-it-works-page p {
    font-size: 15px;
  }
}