.elementor-46 .elementor-element.elementor-element-35e7c9f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-7bdbcdd *//* ==============================
   SEÇÃO CARDS FLUIRE
============================== */
.fluire-cards {
    padding: 100px 0;
    background: #ffffff;
}

.fluire-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fluire-cards-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 34px;
    color: #1f2430;
    margin-bottom: 60px;
    text-align: center;
    padding: 0px 0px 80px;
}

/* ==============================
   GRID
============================== */
.fluire-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* ==============================
   CARD
============================== */
.fluire-card {
    background: #434361;
    border-radius: 22px;
    padding: 42px 36px;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* Hover bem sutil */
.fluire-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.24);
}

/* ==============================
   TEXTO
============================== */
.fluire-card h3 {
    font-family: 'Oxygen', sans-serif;
    font-size: 22px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

/* ==============================
   CTA "SAIBA MAIS"
============================== */
.fluire-card-cta {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #e6e6f0;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: color 0.3s ease;
}

/* Setinha */
.fluire-card-cta .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover delicado só na CTA */
.fluire-card:hover .fluire-card-cta {
    color: #ffffff;
}

.fluire-card:hover .fluire-card-cta .arrow {
    transform: translateX(4px);
}

/* ==============================
   RESPONSIVO
============================== */
@media (max-width: 1024px) {
    .fluire-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .fluire-cards {
        padding: 80px 0;
    }

    .fluire-cards-title {
        font-size: 26px;
        text-align: left;
    }

    .fluire-cards-grid {
        grid-template-columns: 1fr;
    }

    .fluire-card {
        padding: 32px 28px;
    }
}
/* ==============================
   CARD
============================== */
.fluire-card {
    position: relative;
    background: linear-gradient(135deg, #434361 0%, #3a3a58 50%, #434361 100%);
    border-radius: 22px;
    padding: 42px 36px;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;

    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;

    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* Brilho metálico */
.fluire-card::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -50%;
    width: 200%;
    height: 300%;

    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,0.12) 50%,
        transparent 60%
    );

    transform: rotate(25deg);
    transition: 0.9s ease;
}

/* Hover */
.fluire-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.24);
}

/* Movimento do brilho */
.fluire-card:hover::after {
    top: 120%;
    left: 100%;
}/* End custom CSS */