/**
 * FFC Customizations - Frontend Styles
 *
 * @version 1.0.0
 * @author  Felipe Fabri (W3Hub Soluções)
 */

/* --- Estilos para o Bloco [takeaway] --- */
.ffc-takeaway-box {
    background-color: #f0f8ff; /* AliceBlue */
    border-left: 5px solid #0073aa; /* Cor azul do WordPress */
    padding: 20px 25px;
    margin: 2em 0;
    border-radius: 5px;
}
.ffc-takeaway-box p:last-child {
    margin-bottom: 0;
}

/* --- Estilos para o Bloco [related] --- */
.ffc-related-links {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 20px 25px;
    margin: 2em 0;
    border-radius: 5px;
}
.ffc-related-links-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: bold;
}
.ffc-related-links ul {
    margin-bottom: 0;
    list-style-position: inside;
}
.ffc-related-links p:last-child,
.ffc-related-links ul:last-child {
    margin-bottom: 0;
}

/* --- Estilos para o Bloco [ffc_button] --- */
.ffc-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    border: 2px solid transparent;
}
.ffc-button-primary {
    background-color: #0073aa;
    color: #fff;
}
.ffc-button-primary:hover,
.ffc-button-primary:focus {
    background-color: #005a87;
    color: #fff;
}
.ffc-button-secondary {
    background-color: transparent;
    color: #0073aa;
    border-color: #0073aa;
}
.ffc-button-secondary:hover,
.ffc-button-secondary:focus {
    background-color: #0073aa;
    color: #fff;
}
