
.boton-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 50px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.boton-whatsapp:hover {
    background-color: #1ebc59;
    transform: scale(1.1);
}







.boletin {
    background-color: #c01121	;
    color: white;
}

.grid_boletin {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    text-align: left;
    padding: 50px 30px;
    font-weight: bold;
    gap: 30px;
}

.boletin_icono {
    font-size: 3rem;
    text-align: center;
}

.boletin_texto h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.boletin_texto p {
    font-weight: normal;
    line-height: 1.5;
    font-size: 1rem;
}

/* Input + Botón en una sola línea */
.boletin_formulario {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.boletin_formulario input {
    padding: 10px 15px;
    border: none;
    font-size: 1rem;
    border-radius: 8px 0 0 8px;
    outline: none;
    width: 60%;
    min-width: 200px;
}

.boletin_formulario .btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #c01121	;
    border: none;
    font-weight: bold;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.boletin_formulario .btn:hover {
    background-color: #fbe6e1;
    color: #b73e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.boletin_formulario .btn:hover {
    background-color: #f4f4f4;
}

/* Responsive */
@media (max-width: 992px) {
    .grid_boletin {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .boletin_icono {
        margin-bottom: 20px;
    }

    .boletin_texto {
        padding: 0 10px;
    }

    .boletin_formulario {
        justify-content: center;
    }

    .boletin_formulario input {
        width: 60%;
        max-width: 300px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .boletin_formulario .btn {
        width: 60%;
        max-width: 300px;
        border-radius: 8px;
    }
}


.boletin_icono {
    font-size: 5rem; /* tamaño aumentado */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.boletin_icono:hover {
    transform: scale(1.15);
}







.contact-section {
    background-color: #ececec;
    padding: 60px 20px;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
  }
  
  .contact-image img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .contact-form h2 {
    color: #c01121	;
    margin-bottom: 10px;
  }
  
  .contact-form p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    resize: none;
  }
  
  .contact-form textarea {
    grid-column: span 2;
  }
  
  .contact-form button {
    background-color: #c01121	;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #cf4e2e;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-form textarea {
      grid-column: span 1;
    }
  }
  






  .footer {
    background-color: #000000;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
    color: white;
  }
  
  .grid_footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer h4 {
    color: #c01121	;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  
  .footer-about img {
    max-width: 140px;
    margin-bottom: 15px;
  }
  
  .footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
  }
  
  .footer-links ul li {
    margin: 5px 0;
  }
  
  .footer-links ul ul {
    padding-left: 15px;
    margin-top: 5px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #ddd;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 0.95rem;
  }
  
  .footer-links a i {
    margin-right: 6px;
    color: #c01121	;
  }
  
  .footer-links a:hover {
    background-color: #222;
    color: #fff;
  }
  
  .footer-contact p {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #ccc;
    margin: 8px 0;
  }
  
  .footer-contact i {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .footer-contact .whatsapp {
    color: #25D366;
  }
  
  .footer-contact .correo {
    color: #007bff;
  }
  
  .footer-contact .ubicacion {
    color: #c01121	;
  }
  
  /* === BARRA COPYRIGHT === */
  .footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .grid_footer {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-links ul ul {
      padding-left: 0;
    }
  
    .footer-links a {
      display: block;
      margin: 5px 0;
    }
  
    .footer-contact p {
      justify-content: center;
    }
  }
  