/* ================== Pop-up Estilo Sketch (GDC) ================== */

.gdc-sketch-modal {
  background-size: cover;
  background-position: center right; /* Alinea el edificio a la derecha */
  border: none;
  border-radius: 0; /* Bordes rectos como en la imagen */
  min-height: 600px; /* Altura suficiente para que se vea el edificio */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contenedor del contenido para centrarlo y darle ancho */
.gdc-sketch-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 60px 20px;
  text-align: center;
  max-width: 500px; /* Limitamos el ancho para que no tape todo el edificio */
  margin: 0 auto; /* Centrado horizontalmente */
  margin-top: 50px; /* Un poco de aire arriba */
}

/* Título */
.sketch-title {
  font-family:
    "Helvetica Neue", Helvetica, Arial, sans-serif; /* Fuente limpia */
  font-weight: 700;
  color: #000;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 40px;
}

/* Formulario */
.sketch-form {
  width: 100%;
  max-width: 350px; /* Ancho similar al de la imagen */
}

/* Input "Tu correo" */
.sketch-input {
  border: 1px solid #333; /* Borde negro fino */
  border-radius: 0; /* Rectangular */
  padding: 12px 15px;
  background-color: #fff;
  font-size: 1rem;
  color: #333;
}
.sketch-input::placeholder {
  color: #666;
}
.sketch-input:focus {
  box-shadow: none;
  border-color: #000;
}

/* Botón Naranja */
.sketch-btn-orange {
  background-color: #ff5e00; /* Naranja vibrante de la imagen */
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px;
  border: none;
  border-radius: 0; /* Rectangular */
  width: 100%;
  transition: background 0.3s;
}
.sketch-btn-orange:hover {
  background-color: #e04d00;
  color: white;
}

/* Link Desuscribirme */
.sketch-unsubscribe {
  color: #444;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 300;
}
.sketch-unsubscribe:hover {
  text-decoration: underline;
  color: #000;
}

/* Redes Sociales */
.sketch-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #1a1a1a; /* Circulo negro */
  color: white !important;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-circle:hover {
  transform: translateY(-3px);
  background-color: #000;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
  .gdc-sketch-modal {
    background-position: center; /* Centrar imagen en móvil */
  }
  .sketch-title {
    font-size: 1.5rem;
    background-color: rgba(
      255,
      255,
      255,
      0.7
    ); /* Fondo semi-transparente para leer texto sobre edificio */
    padding: 10px;
  }
}
