/*
=================================================================
FOOTER STYLES - POUSADA CURRUPIRA
=================================================================
Estilos específicos para o rodapé com estrutura profissional,
fundo cinza escuro e tipografia consistente com o sistema.
=================================================================
*/

/* Footer Styles - Professional Structure */
.footer {
    background-color: #222831;
    color: #CCCCCC;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #F9B233;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-logo p {
    color: #F9B233;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #CCCCCC;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F9B233;
    color: #222831;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: #d4961f;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.footer-links li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #F9B233;
    border-radius: 50%;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #F9B233;
}

/* Footer Contact */
.footer-contact {
    space-y: 15px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact i {
    color: #F9B233;
    width: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #F9B233;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #3A4A5C;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.4;
}

.footer-credits p {
    margin: 0;
    font-size: 0.9rem;
    color: #999999;
}

.footer-credits i {
    color: #F9B233;
    margin: 0 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
} 