/*css o configuraion de estilos para la modificacion de la pagina de contactanos*/

.custom-title-block {
  display: inline-block;
  background-color: #d84040;
  border-radius: 8px;
  margin: 0 0 5px 0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}

.custom-title-text {
  
  color: #fff;
  /* Blanco para el texto */
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.product-extra-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.custom-title-block {
    margin-bottom: 5px !important;
}

.wpcf7 {
    margin-top: 5px !important;
}


/* Diseño base para los botones que estaran en cada producto tanto para visualizar la ficha tectnica y hacer contacto con el numero de whatssapp */
.product-extra-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.btn-pdf,
.btn-whatsapp {
  display: inline-flex;          
  align-items: center;           
  justify-content: center;       
  padding: 12px 24px;            
  border-radius: 8px;
  text-decoration: none !important; /* Elimina el subrayado */
  font-weight: bold;
  color: #fff !important;         /* Siempre blanco */
  font-size: 16px;
  margin-right: 15px;            
  transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
  min-width: 160px;              
  cursor: pointer;               /* Manito al pasar */
}

/* Estados del link */
.btn-pdf:link,
.btn-pdf:visited,
.btn-whatsapp:link,
.btn-whatsapp:visited {
  color: #fff !important; /* Siempre blanco */
}

/* Estilo PDF */
.btn-pdf {
  background-color: #d84040; 
}
.btn-pdf:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
  color: #fff !important;
}

/* Estilo WhatsApp */
.btn-whatsapp {
  background-color: #25D366;
}
.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  color: #fff !important;
}