/*
Theme Name: Astralintu
Template: hello-elementor
Author: Sapiens
Description: Child theme de Hello Elementor
Version: 1.0.2
*/
/* Abajo coloca todos tus estilos */


/* ========================================
   BOTONES ELEMENTOR - ESTILOS PERSONALIZADOS
   ======================================== */

/* Azul ************/
div.btn-filled-azul a.elementor-button {
  background-color: #00416E !important; /* Default */
  color: #ffffff;
  border-radius: 25px;
  padding: 12px 35px;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

/* Hover */
div.btn-filled-azul a.elementor-button:hover {
  background-color: #0063A9 !important;
}

/* Pressed */
div.btn-filled-azul a.elementor-button:active {
  background-color: #1CA0FF !important;
}

/* Turquesa ************/
/* Estilo base del botón */
div.btn-filled-celeste a.elementor-button {
  background-color: #85DDDF !important; /* Default */
  color: #00416E;            /* Texto */
  border: none;
  border-radius: 25px;
  padding: 12px 35px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Hover */
div.btn-filled-celeste a.elementor-button:hover {
  background-color: #A1EDEC !important;
}

/* Pressed (active) */
div.btn-filled-celeste a.elementor-button:active {
  background-color: #C7FFFB !important;
}


/* Learn more ************/
/* Estilo base del botón tipo enlace */
div.btn-link-learnmore a.elementor-button {
  background-color: transparent !important;
  color: #008AE2 !important; /* Texto azul oscuro */
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid #008AE2;
  padding-bottom: 1px;
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline-flex;        /* clave: alinear contenido en fila */
  align-items: center; 
}

/* Hover */
div.btn-link-learnmore a.elementor-button:hover {
  color: #0063A9 !important;
}

/* Pressed (active) */
div.btn-link-learnmore a.elementor-button:active {
  color: #55B8FF !important; /* Azul brillante */
}

/* Focus (opcional para consistencia visual) */
div.btn-link-learnmore a.elementor-button:focus {
  color: #00416E !important;
  outline: none;
}

/* Flecha a la derecha */
div.btn-link-learnmore a.elementor-button::after {
  content: " →";                         /* flecha */
  margin-left: 8px;                     /* espacio entre texto y flecha */
  font-size: 18px;
  color: inherit;                       /* mismo color que el texto */
  transition: color 0.2s ease;
  line-height: 1;
}


/* Estilo circular para el checkbox */
.elementor-field-subgroup input[type="checkbox"] {
  appearance: none;        /* Quita el estilo por defecto */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;             /* Tamaño del círculo */
  height: 20px;
  border: 2px solid #333;  /* Borde del círculo */
  border-radius: 50%;      /* Hace que sea circular */
  cursor: pointer;
  position: relative;
}

/* Estado marcado */
.elementor-field-subgroup input[type="checkbox"]:checked {
  background-color: #00416E !important; /* Color de relleno al marcar */
  border-color: #00416E !important;
}

/* Opcional: punto interno al marcar */
.elementor-field-subgroup input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #FAFAFA;
  border-radius: 50%;
}

.elementor-field-option {
  display: flex;
  align-items: center; /* Centra verticalmente */
  gap: 8px;            /* Espacio entre el círculo y el texto */
}

.elementor-field-option label {
  margin: 0;           /* Elimina márgenes extra */
}

.text-bullet {
  list-style-type: disc !important;   /* círculo sólido */
  padding-left: 20px !important;      /* espacio para que se vea el bullet */
  margin-top: 12px; 
  margin-bottom: 12px;
}

.text-bullet li {
  display: list-item !important;      /* asegura que se comporte como item de lista */
  list-style-position: outside !important;
  margin-bottom: 8px;                 /* separación entre cada li */
}

.text-link-faq {
    position: relative;
    text-decoration: none; /* quitamos el subrayado por defecto */
    color: inherit; 
    font-size: 16px !important;
}

/* línea inferior personalizada */
.text-link-faq::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; /* ajusta la distancia del subrayado */
    width: 100%;
    height: 1px;
    background-color: currentColor; /* usa el color del texto */
    transition: background-color 0.3s ease;
}

/* efecto hover */
.text-link-faq:hover {
    color: #008AE2 !important; /* cambia el color del texto */
}

.text-link-faq:hover::after {
    background-color: #008AE2; /* cambia el color de la línea */
}


/*********** Responsive padding para botones filled ****************/
@media (max-width: 768px) {
  div.btn-filled-azul a.elementor-button,
  div.btn-filled-celeste a.elementor-button,
  div.btn-filled-verde a.elementor-button {
    padding: 12px 20px;
  }
}
