/*
Theme Name: MiTemaLigero
Template: twentytwentythree
*/

/*
Theme Name: MiTemaLigero
Template: twentytwentythree
*/

/* Importar fuente Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Estilos del Footer */
.kayros-footer {
    background-color: #333333;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding: 40px 0 20px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 300px;
}

/* Columna 1 */
.footer-col-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    display: block;
    height: auto;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #f8f9fa;
    padding-left: 5px;
}

/* Columna 2 */
.footer-col-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.location-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
}

.location-icon-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.location-icon-text i {
    font-size: 20px;
    color: #ffffff;
}

.how-to-get {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.how-to-get:hover {
    color: #25D366;
    text-decoration: underline;
}

.address {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #e0e0e0;
    padding-left: 30px;
}

/* Columna 3 */
.footer-col-3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 20px;
    color: #ffffff;
    width: 24px;
    text-align: center;
}

.contact-item span,
.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #25D366;
}

.email-link:hover {
    color: #4285F4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #b0b0b0;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-col {
        min-width: 100%;
    }
    
    .footer-col-1 {
        align-items: center;
        text-align: center;
    }
    
    .location-section,
    .contact-section {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .kayros-footer {
        padding: 30px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-link,
    .address,
    .contact-item {
        font-size: 14px;
    }
    
    .location-section,
    .contact-section {
        padding: 20px;
    }
}
