:root {
    --primary: #0097a8;
    --secondary: #f9ab00;
    --whatsapp: #25D366;
    --background: rgba(255, 255, 255, 0.9);
}

.button {
  background-color: #04AA6D; /* Green */
  border: none;
  border-radius: 20px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 16px;
  height: auto;
  margin: 0 auto;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://www.loshermanosplomeros.com//img/fondo.webp') no-repeat center center fixed;
    background-size: cover;
    color: #00C853;
}

.header {
    background: var(--background);
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #00C853;
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: var(--background);
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.servicio {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}
footer a {
  color: #ff6b6b;
  text-decoration: none;
}
#imglogo {
  clip-path: circle(50%);
  margin: 0 auto;
  padding: 0 auto;
  text-align: center;
  position: sticky;
}

img {
    max-width: 60%; /* Reduce la imagen */
    height: auto; /* Mantiene la proporción */
    border-radius: 45px;
    display: block;
    margin: 0 auto; /* Centra las imágenes */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p {
    animation: fadeIn 1.2s ease-in-out;
}
#form-presupuesto {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #00C853;
}


#form-presupuesto label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #00C853;
    opacity: 0.8;
}

#form-presupuesto input,
#form-presupuesto select,
#form-presupuesto textarea {
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#form-presupuesto button {
    background-color: #007a8b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    height: auto;
    font-size: 1.1em;
 
}

#form-presupuesto button:hover {
    background-color: #007a8b;
}
#form-presupuesto h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00C853; /* Color verde existente */
}

#form-presupuesto label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #00C853; /* Añade esta línea */
}

/* Si los placeholders no se ven bien, puedes añadir esto */
#form-presupuesto ::placeholder {
    color: #00C853;
    opacity: 0.8;
}