/* ==========================================================
   RODAPÉ - receitasqueadoro.com.br
   /css/rodape-site.css
   ========================================================== */

/* ===== CONTAINER PRINCIPAL ===== */
.rodape-container {
    width: 100%;
    margin-top: 30px;
    background: #F8F9FA;
    border-top: 2px solid rgba(234, 89, 0, 0.08);
}

/* ===== ADS RODAPÉ ===== */
.rodape-ads {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px 10px;
}

.rodape-ads ins {
    border-radius: 12px;
}

/* ===== CONTEÚDO ===== */
.rodape-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 20px 20px;
}

.rodape-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(234, 89, 0, 0.06);
}

/* ===== LOGO ===== */
.rodape-logo {
    flex-shrink: 0;
}

.rodape-logo a {
    display: block;
    transition: transform 0.3s ease;
}

.rodape-logo a:hover {
    transform: scale(1.02);
}

.rodape-logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* ===== INFO ===== */
.rodape-info {
    flex: 1;
}

.rodape-texto {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 8px;
}

.rodape-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rodape-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #EA5900;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rodape-links a:hover {
    color: #D64D00;
    text-decoration: underline;
}

.rodape-divisor {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #CCC;
}

/* ===== SOCIAL ===== */
.rodape-social {
    text-align: center;
    padding-top: 14px;
}

.rodape-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #5D4037;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(234, 89, 0, 0.04);
    border: 1px solid rgba(234, 89, 0, 0.06);
    transition: all 0.25s ease;
}

.rodape-social-link:hover {
    background: rgba(234, 89, 0, 0.08);
    border-color: #EA5900;
    transform: translateY(-2px);
}

.rodape-social-icon {
    font-size: 18px;
}

/* ===== RESPONSIVIDADE ===== */

@media screen and (max-width: 992px) {
    .rodape-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .rodape-links {
        justify-content: center;
    }

    .rodape-content {
        padding: 20px 16px 16px;
    }
}

@media screen and (max-width: 768px) {
    .rodape-container {
        margin-top: 20px;
    }

    .rodape-ads {
        padding: 10px 12px 6px;
    }

    .rodape-content {
        padding: 16px 12px 12px;
    }

    .rodape-logo img {
        height: 40px;
        max-width: 150px;
    }

    .rodape-texto {
        font-size: 13px;
    }

    .rodape-links a,
    .rodape-divisor {
        font-size: 13px;
    }

    .rodape-social-link {
        font-size: 13px;
        padding: 4px 14px;
    }
}

@media screen and (max-width: 400px) {
    .rodape-logo img {
        height: 32px;
        max-width: 120px;
    }

    .rodape-texto {
        font-size: 12px;
    }

    .rodape-links a,
    .rodape-divisor {
        font-size: 12px;
    }

    .rodape-social-link {
        font-size: 12px;
        padding: 4px 12px;
    }

    .rodape-social-icon {
        font-size: 16px;
    }
}

/* ===== IMPRESSÃO ===== */
@media print {
    .rodape-container {
        border-top: 1px solid #333;
        background: #fff;
        margin-top: 20px;
    }

    .rodape-ads {
        display: none !important;
    }

    .rodape-content {
        padding: 16px 0;
    }

    .rodape-logo img {
        height: 40px;
    }

    .rodape-texto {
        color: #000;
    }

    .rodape-links a {
        color: #333;
    }

    .rodape-social {
        display: none;
    }
}