/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/**
	Contact Form 7
 */
/* Contenedor general del formulario */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fafafa;
}

/* Estilos para campos de texto, email y textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: #66afe9;
  outline: none;
}

/* Estilo para el botón de envío */
.wpcf7 input[type="submit"] {
  background: #333;
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  background: #555;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 480px) {
  .wpcf7-form {
    padding: 15px;
  }
}
/* Otros */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wpcf7-list-item.first {
	margin: 0 0 0 1em !important;
}
.wpcf7 br {
	display: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  color: #fff;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 70%;
  height: auto;
}

