/* Dra. Kátia Bertti — Footer Styles (Centralized Column Layout) */

.footer-centralized {
    background-color: var(--ink);
    color: hsla(0, 0%, 100%, 0.85);
    padding: 5rem 0 3rem;
    font-family: 'Inter', sans-serif;
}

.container-footer {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--page-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3.5rem;
    overflow: hidden;
}

/* Brand Section */
.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--rose-soft);
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 800px;
}

/* Navigation */
.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    list-style: none;
    padding: 0;
    width: 100%;
}

.footer-nav-list a {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: var(--rose-soft);
}

/* Contacts */
.footer-contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    width: 100%;
}

.footer-contact-links li a,
.footer-contact-links li span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact-links i {
    color: var(--rose-soft);
    font-size: 1rem;
    width: 20px;
}

/* Social Circles */
.social-circles {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-circles a {
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-circles a:hover {
    background-color: var(--rose);
    border-color: var(--rose);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Legal Disclaimer */
.footer-legal-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-legal-text {
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Bottom Copyright */
.footer-bottom-section {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.developer-credit a {
    color: var(--rose-soft);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.developer-credit a:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .footer-nav-list {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
    .footer-nav-list a {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
    .footer-contact-links {
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }
    .footer-contact-links li a span {
        text-align: center;
        line-height: 1.5;
    }
}

@media (min-width: 768px) {
    .footer-contact-links {
        flex-direction: row;
        gap: 3rem;
    }
}
