/**
 * Estilos do rodapé customizado - Academia Rafael Toro
 */

/* Container principal do rodapé */
.site-footer {
    background-color: #000F9E;
    color: #ffffff;
    padding: 2rem 1rem;
    margin-top: auto;
}

.toro-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.toro-footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

/* Logo */
.toro-footer-logo {
    flex-shrink: 0;
}

.toro-footer-logo a {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
}

.toro-footer-logo img {
    width: 220px;
    height: auto;
    max-width: 100%;
}

.toro-footer-info div {
    padding-bottom: 20px;
}

.toro-footer-info p {
    font-size: 17px;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: normal;
}

.toro-footer-info a {
    color: #fff !important;
    text-decoration: underline;
}

.toro-footer-info a:hover {
    color: #fff !important;
    opacity: 0.8;
}

.toro-footer-info a:visited {
    color: #fff !important;
}

/* Links do rodapé */
.toro-footer-links {
    color: #fff!important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem; /* 14px */
    margin: 0px;
    padding: 12px 0 0 0
}

.toro-footer-links li {
    margin: 0;
    padding: 0;
}

.toro-footer-links a {
    color: #fff!important;
    text-decoration: none;
}

.toro-footer-links a:hover {
    text-decoration: underline;
}

.toro-footer-links a:visited {
    color: #fff!important;
}


/* Responsivo - Desktop */
@media (min-width: 640px) {
    .toro-footer-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    
    .toro-footer-info {
        max-width: none;
    }
    
    .toro-footer-links {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Ajustes para o tema Storefront */
.site-footer .col-full {
    padding: 0;
}

/* Remove estilos padrão do Storefront se necessário */
.site-footer .site-info {
    display: none;
}
