/* arr.css - FOOTER */
.arrf-footer {
  background: #121212;
  color: #fff;
  padding: 0 16px;
  height: 80px; 
  border-top: 1px solid rgba(255,255,255,0.04);
  /* position: fixed; */
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99990;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  /* display: none; */
}

.arrf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.arrf-logo {
  height: 28px;
  vertical-align: middle;
}

.arrf-btn {
  background: #c91414;
  color: #fff;
  border: 0;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}

/* MODAL */
.arrf-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 100000;
  padding: 20px;
  box-sizing: border-box;
}

.arrf-modal-box {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 520px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* HEADER DEL MODAL */
.arrf-modal-header {
  background: #c91414;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.arrf-title {
  margin: 0;
  font-size: 24px; 
  font-weight: 700;
}

.arrf-subtitle {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 500;
}

/* BOTÓN CERRAR MODAL */
.arrf-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* FORMULARIO */
#arrf-form {
  display: flex;
  flex-direction: column;
  padding: 20px;      
  gap: 12px;          
}

#arrf-form .arrf-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 13px;
}

#arrf-form .arrf-label.required::after {
  content: "*";
  color: #c91414;     
  margin-left: 2px;
}

#arrf-form .arrf-input,
#arrf-form .arrf-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#arrf-form .arrf-input:focus,
#arrf-form .arrf-textarea:focus {
  outline: none;
  border-color: #c91414;
  box-shadow: 0 0 4px rgba(201,20,20,0.4);
}

#arrf-form .arrf-textarea {
  resize: vertical;
  min-height: 72px;
}

#arrf-form .arrf-actions {
  margin-top: 12px;
  text-align: center;
}

#arrf-form .arrf-submit {
  background: #c91414;
  color: #fff;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

#arrf-form .arrf-msg {
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
  color: #333;
}

#arrf-root {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .arrf-modal-box {
    width: 95%;
  }
  .arrf-title {
    font-size: 20px;
  }
  .arrf-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 415px) {
  .arrf-btn {
    padding: 8px 12px;  
    font-size: 12px;     
    border-radius: 4px;   
  }
}

.grecaptcha-badge {
  bottom: 90px !important; 
  z-index: 100001 !important; 
}