/* Footer Styles */
footer {
    background: var(--bg-cream);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(139, 123, 111, 0.2);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 24px;
    color: var(--text-darker);
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--text-darker);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-tagline {
    font-style: italic;
    font-size: 16px;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--text-darker);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 123, 111, 0.2);
    padding-top: 30px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-darker);
    text-decoration: underline;
}

.footer-links span {
    color: var(--text-dark);
}

/* Fixed Action Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
    box-sizing: border-box;
}

.fixed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fixed-btn-agendar {
    background: var(--button-brown);
    color: #ffffff !important;
    padding: 14px 35px;
    border-radius: 30px;
    width: auto;
    height: auto;
    min-width: 160px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
}

.fixed-btn-agendar:hover {
    background: var(--text-darker);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.fixed-btn-whatsapp {
    background: #25D366;
}

.fixed-btn-whatsapp:hover {
    background: #20BA5A;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 20px;
        right: 10px;
        gap: 12px;
    }

    .fixed-btn {
        width: 55px;
        height: 55px;
        font-size: 11px;
    }

    .fixed-btn-agendar {
        padding: 8px 15px;
        font-size: 13px;
        min-width: 120px;
    }

    footer {
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 5px;
    }

    .footer-links span {
        display: none;
    }
}
