/* ==================================================
   IDENTIDADE OFICIAL FINCEL
   ================================================== */
:root {
    --fincel-azul: #1e6ea6;
    --fincel-roxo: #8c2b8f;
    --fincel-gradiente: linear-gradient(135deg, #1e6ea6 0%, #8c2b8f 100%);
    --fincel-fundo-escuro: #111217;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
    color: #333;
}

h1, h2, h3, h4, .navbar-brand {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
}

/* ==================================================
   NAVBAR
   ================================================== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand span {
    background: var(--fincel-gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-client {
    background: var(--fincel-gradiente);
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: .3s;
}

.btn-client:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(140, 43, 143, .3);
    color: #fff;
}

/* ==================================================
   HERO
   ================================================== */
.hero-carousel {
    background: var(--fincel-fundo-escuro);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
}

.hero-text .accent {
    background: var(--fincel-gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image img {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
    max-width: 480px;
}

/* Controles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--fincel-roxo);
    padding: 25px;
    border-radius: 50%;
}

/* ==================================================
   PLANOS
   ================================================== */
.plan-card {
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #eee;
    transition: .4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(140, 43, 143, .15);
}

.plan-header {
    padding: 40px 30px;
    text-align: center;
    background: #fafafa;
}

.plan-gb {
    font-size: 4rem;
    font-weight: 800;
    background: var(--fincel-gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fincel-roxo);
}

/* ==================================================
   FAQ
   ================================================== */
.faq-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.accordion-button:not(.collapsed) {
    background: rgba(140, 43, 143, .08);
    color: var(--fincel-roxo);
}

/* ==================================================
   FOOTER
   ================================================== */
footer {
    background: var(--fincel-fundo-escuro);
}

footer h3 {
    color: #fff;
}

footer a:hover {
    color: var(--fincel-roxo);
}

/* ==================================================
   RESPONSIVO
   ================================================== */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-image {
        display: none;
    }
}

.hero-carousel .carousel-item {
    min-height: 600px;
}

.hero-carousel .carousel-item .row {
    min-height: 600px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item,
    .hero-carousel .carousel-item .row {
        min-height: 450px;
    }
}


.hero-image img {
    height: 480px;
    object-fit: cover;
}

.logo-fincel {
    height: 42px;
    width: auto;
    transition: .3s ease;
}

/* Leve efeito ao passar o mouse */
.logo-fincel:hover {
    transform: scale(1.03);
}

/* Mobile */
@media (max-width: 768px) {
    .logo-fincel {
        height: 34px;
    }
}

