/* Footer Styles - Maria Flor */
.footer-section {
    background-color: #1a1a1a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(128, 216, 208, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 200px;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.footer-logo-img:hover {
    opacity: 1;
    filter: brightness(1.3) contrast(1.15);
    transform: scale(1.02);
}

.footer-info {
    flex: 1;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-address {
    margin-bottom: 20px;
    text-align: center;
}

.footer-address p {
    margin: 5px 0;
    font-family: 'Santral', sans-serif;
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 18px;
}

.footer-shop {
    flex: 0 0 200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.btn-footer-shop {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(128, 216, 208, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-family: 'Santral', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(128, 216, 208, 0.15);
    white-space: nowrap;
}

.btn-footer-shop:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-footer-shop i {
    margin-right: 8px;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-family: 'Santral', sans-serif;
    font-size: 12px;
    color: #999;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo, .footer-info, .footer-shop {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-shop {
        justify-content: center;
    }
}
