/* CARD */
.receita-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin: 30px auto;
    max-width: 850px;
    animation: fadeIn .5s ease;
}

/* ANIMAÇÃO */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* FOTO */
.receita-foto {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 18px; /* borda suave */
    object-fit: cover;
    max-height: 350px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.12);
}

/* TÍTULO */
.receita-titulo {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0 25px;
    color: #2c3e50;
}

/* INFO COM ÍCONES */
.receita-info {
    margin: 0 auto 25px auto;
    max-width: 600px;
}

.receita-info div {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px; /* aumenta o espaçamento entre o ícone e o texto */
}

.receita-info i {
    font-size: 22px;  /* maior e mais suave */
    color: #27A99A;
}

/* SUBTÍTULOS */
.receita-subtitulo {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1d3557;
}

/* TEXTOS */
.receita-ingredientes,
.receita-modo {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}
#tab-receitas {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.receita-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}
#tab-receitas.fru-tab-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}
