/*
Theme Name: Asehora
Theme URI: https://asehora.com
Author: Asehora
Author URI: https://asehora
Description: Tema personalizado con Bootstrap 5
Version: 1.0
License: GPLv2 or later
Text Domain: mi-tema-bootstrap
*/

  html, body { height: 100%; margin: 0; }

  .content {
    padding: 40px;
  }

body {
  /*background-image: url('https://asehora.com/wp-content/uploads/2025/11/20250909_ASEHORA_LOGOS_2-scaled.png');*/
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-attachment: fixed;
}

  * {
    font-family: 'Quicksand', sans-serif;
  }

  .btn-asehora {
    background: #1B1464;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
  }
  .btn-asehora:hover {
    background: #5C46FF;
    opacity: .75;
    color: black;
  }


/* Animación hover */
.nav-link-anim {
    transition: opacity .2s ease, transform .2s ease;
}
.nav-link-anim:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Logo hover */
.navbar-brand img:hover {
    transform: scale(1.05);
}


.navbar-toggler {
    border-color: rgba(255,255,255,0.5) !important;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* --- Contenedor 3/4 del ancho --- */
.custom-wrapper {
    max-width: 75%;
    margin: 0 auto;
    padding: 0 auto; 
}

/* --- LINEA --- */
.linea-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 80px;
}

/* Línea vertical */
.linea-step::before {
    content: "";
    position: absolute;
    left: calc(50%);
    top: 0;
    width: 2px;
    height: 100%;
    background: #000;
    transform: translateX(-50%);
}

/* Cuadradito */
.square-marker {
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    left: calc(50%);
    top: 45%;
    transform: translate(-50%, -50%);
}

/* Tamaño de la imagen */
.linea-img {
    max-width: 40%;
    display: block;
    margin: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .linea-step::before,
    .square-marker {
        display: none;
    }

    .linea-img {
        max-width: 100%;
    }
}
