/*
Theme Name: eCommerceClub
Theme URI: https://ecommerceclub.cl
Author: Radar
Author URI: https://www.radar.cl
Description: Tema personalizado para eCommerceClub.cl
Version: 1.0
*/

 body {
     margin: 0;
     padding: 1rem;
     font-family: "Roboto", Arial, sans-serif;
     background-color: #5d0078 !important;
     color: #ffffff;
    }
    header {
      padding: 0;
      text-align: center;
    }
    header img.elogo {
     width: 100%;
     max-width: 300px !important;
     height: auto;
     margin: 0 auto;
    }
    main {
      padding: 0 2rem;
      text-align: center;
    }
    form {
      max-width: 600px;
      margin: 2rem auto;
      text-align: left;
    }
    form label {
      display: block;
      margin-top: 1rem;
      font-weight: bold;
    }
    form input {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.3rem;
      box-sizing: border-box;
    }
    footer {
      color: white;
      text-align: center;
      padding: 1rem;
    }
    footer a {
      color: #ffffff;
      margin: 0 0.5rem;
      text-decoration: none;
    }
    
    .social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #FFD700; /* dorado como efecto hover, opcional */
}

input.whatsapp-submit {
  background-color: #25D366;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  position: relative;
  padding-left: 2.5rem; /* espacio para el ícono */
}

/* Ícono de WhatsApp con pseudo-elemento */
input.whatsapp-submit::before {
  content: "\f232"; /* código del ícono de WhatsApp */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

input.whatsapp-submit:hover {
  background-color: #1ebe5b;
  transform: translateY(-2px);
}

.radar-logo {
    max-width: 200px;
    margin-bottom: 50px;
}



    @media (max-width: 600px) {
      main {
        padding: 1rem;
      }
    }