/*
Theme Name: Innspiral
Author: Denis Ventura
Author URI: http://www.denisventura.com/
Description: Custom theme for Innspiral.
Version: 1.0
License: Premium
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Fondo oscurecido */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal */
.modal-content {
  background: #ffffff;
  position: relative;
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  font-family: 'Work Sans', sans-serif;
  animation: slideUp 0.4s ease-out;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Inputs */
.modal-content input[type="text"],
.modal-content input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid #1D414F;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
}

/* Botón enviar */
.modal-content button[type="submit"] {
  background-color: #21ABA4; /* Aqua corporativo */
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.modal-content button[type="submit"]:hover {
  background-color: #1D414F;
}

/* Botón de descarga */
.modal-download {
  margin-top: 1.5rem;
}
.modal-download a {
  background-color: #FF603B; /* Naranja corporativo */
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: inline-block;
  transition: background-color 0.3s;
}
.modal-download a:hover {
  background-color: #e04324;
}

/* Estilos Complementarios */
.modal-content .close-button {
    top: 10px;
    right: 10px;
    background: #FF603B;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: white;
    border: 2px solid #FF603B;
}
.modal-content .close-button:hover {
    background: white;
    color: #FF603B;
}
.prose li {
  margin-bottom: 15px;
}
.w-60p {
  width: 60%;
}
.h-60p {
  height: 60%;
}
.w-50p {
  width: 50%;
}
.h-50p {
  height: 50%;
}
