
.footer {
    background-color: #f8f8f8;
   padding-top: 10px;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin-top: 50px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}
.footer-section {
    flex: 1 1 150px;
    margin-bottom: 20px;
    gap:10px;
}

.footer-section img{
    height: 60px;
}
.footer-section i{
    font-size: 3em;
    margin: 10px 0px;
}
.footer-section h3 {
    margin-top: 0;
}
.footer-section p{
    font-size: 0.9em !important;
    font-weight: 400;
    color: var(--secundario);
}
.footer-section p.phone{
    font-weight: 600;
    font-size: 1em;
}
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: var(--secundario);
    
}
.social-icons a:hover{
    color: var(--primario);
}
.social-icons a i{
    font-size: 2em;
}
.subscribe-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
.subscribe-form button {
    background-color: var(--secundario);
    color: white;
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 0.9em;
    font-family: inherit;
}
.footer-links {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap:15px;
    margin-top: 20px;
    max-width: 1200px;
    
}
.footer-links-column {
    width: 300px;
    margin-bottom: 20px;
}
.footer-links-column h4 {
    margin-top: 0;
}
.footer-links-column ul {
    list-style-type: none;
    padding: 0;
}
.footer-links-column ul li {
    margin-bottom: 3px;
    font-size: 0.8em;
    font-weight: 500;
}
.footer-links-column ul li a{
    color: var(--secundario);
}
.footer-links-column ul li a:hover{
    color: var(--primario);
}

.footer .linea{
    border: 1px solid #cccccc66;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid #ddd;
    height: 35px;
    width: 100%;
    background-color: var(--color3);
}
.footer-bottom p{
    font-size: 0.8em;
    color: white;
}
.footer-bottom p a{
    color: white;
    font-weight: 600;
}
@media (max-width: 768px) {
    .footer-content, .footer-links {
        /* flex-direction: column; */
    }
    .footer-section, .footer-links-column {
        /* flex-basis: 100%; */
    }
}


/* Media Queries para dispositivos móviles */
@media only screen and (max-width: 768px) {
    
    .footer-content{
        width: 90%;
    }

    .footer-section{
        margin-bottom: 5px;
        flex: 1 1 200px;
        text-align: center;
        gap:2px;
    }

    .subscribe-form input[type="email"] {
        width: 50%;
    }

     .footer-links{
        flex-wrap: wrap;
        width: 90%;
        gap:2px;
        margin-top: 1px;
        /* justify-content: space-between; */
        
        
    }
    .footer-links-column {
        flex: 1 1 200px; /* Grow, shrink, basis */
        min-width: 150px; /* Ancho mínimo antes de wrap */
        max-width: 250px; /* Ancho máximo para mantener consistencia */
    }
    
  }
  
  @media (max-width: 550px) {
  
 
  
  }