
:root{
    --azul: #000F50;
    --verde: #20FF87;
    --branco: #FFF;
    --preto: #000;

}

/* Estilos Gerais */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px; /* Altura do header fixo */
}

body {
    padding-top: 76px;
    font-family: 'Clash Display', 'Inter', sans-serif !important;
    color:var(--azul);
    font-size: 24px;
}

strong {
    font-weight: 600 !important;
}

.container{
    max-width: 1420px; /* Largura máxima de 1420 pixels */
    width: 100%; /* Largura responsiva */
    
}

.btn-action {
    background-color: #20FF87;
    color: #000F50;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    padding: 16px 23px 16px 23px;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
    background-position: center right;
    background-repeat: no-repeat;
    min-width: 150px;
    border-radius: 4px;
}
.btn-action img{
    margin-left: 19px;
}

.btn-action-outline {
    background-color: #000F50;
    color: #20FF87;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    padding: 16px 23px;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
    background-position: center right;
    background-repeat: no-repeat;
    min-width: 150px;
    border-radius: 4px;
}

.btn-action-outline img{
    margin-right: 11px;
}

.btn-with-shadow {
    border-radius: 14px;
    background: #20FF87;
    display: flex;
    color: #000F50;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    flex-shrink: 0;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    display: inline-block;
    box-shadow: 4px 4px 0px #fff;
    text-decoration: none;
}

.btn-secondary{
    background-color: #000F50 !important;
    color: #20FF87 !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    padding: 16px 23px 16px 23px;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
    background-position: center right;
    background-repeat: no-repeat;
    min-width: 150px;
    border-radius: 4px;
}

.general-title {
    color: #20FF87;
    font-family: "Clash Display";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 35.814px; /* 99.483% */
    letter-spacing: -0.16px;
}

.general-lead {
    color: #FFF;
    font-family: "Clash Display";
    font-size: 24.302px;
    font-style: normal;
    font-weight: 500;
    line-height: 35.814px;
    letter-spacing: -0.16px;
}

.blue-text{
    color: var(--azul);
}

.green-text{
    color: var(--green);
}

.limited-text {
    cursor: pointer;
}

/*Floating Images*/
.floating-image-wrapper {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
}

.floating-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.z-2 {
    z-index: 2;
}
/* Backgrounds */
.bg-light {
    background-color: #f8f9fa !important;
}
.bg-blue {
    background-color: #000F50 !important;
}
.bg-green {
    background-color: #20FF87 !important;
}


/* Banner Section */
.banner {
    /* background: url('../img/banner.png') center/cover no-repeat; */
    /* background-size: contain; */
    /*height: 500px;*/
    /* padding: 0; */
    padding-top: 20px;
    margin-top: 20px;
}

.banner .banner-image {
    width: 100%;
    height: auto;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    border-radius: 50px;
}

.banner h1.title{
    color: var(--verde);
    text-transform: uppercase;
    font-size: 50px;
}

.banner h2.title{
    color: #F2F2F2;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 35.814px; /* 99.483% */
    letter-spacing: -0.16px;
    text-transform: uppercase;
}

.banner h3.title{
    color: var(--verde);
    text-transform: uppercase;
    font-size: 36px;
}


.banner .lead {
    font-size: 24px;
    color: var(--branco);
}


/* Botões Gerais */
.btn-primary {
    color: #000F50;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
    text-transform: capitalize;
    background-color: #20FF87;
}

.btn-outline-light:hover {
    color: #007bff;
}



/* Store Buttons */
.store-button {
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: scale(1.05);
}

/* Image Banner */

/*Seção Como Funciona */
#como-funciona .title{
    font-size: 55px;
    font-weight: 600;
    color: var(--preto) !important;
}

#como-funciona .lead{
    font-size: 24px;

}

#como-funciona .title-2{
    border-radius: 14px;
    background: #20FF87;
    display: flex;
    width: 370.181px;
    height: 59.526px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 77.778% */
    box-shadow: 4px 4px 0px #000F50;
}

.feature-card {
    background-color: var(--azul) !important;
    border-radius: 56px !important;
    padding: 30px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.feature-card .card-title {
    color: #20FF87;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.625px; /* 108.124% */
}

.feature-card .card-title-bigger {
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 106.716px; /* 177.859% */
}

.feature-card .card-text {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 111.111% */
}

.feature-card .card-text-bigger {
    color: #FFF;
    font-size: 27.03px;
    font-style: normal;
    font-weight: 500;
    line-height: 32.07px; /* 118.647% */
}

.feature-card .card-link {
    color: #20FF87;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 175% */
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
    background-image: url(../img/icons/arrow-right-green.svg);
    background-position: center right;
    background-repeat: no-repeat;
    width: 130px;
}

.feature-card.green {
    background-color: var(--verde) !important;
}

.feature-card.green .card-text, .feature-card.green .card-title, .feature-card.green .card-link {
    color:#000F50;
}
.feature-card.green .card-link {
    background-image: url(../img/icons/arrow-right-blue.svg);
}



/* Seção de Destaque */
.destaques {
    padding-bottom: 50px;
}
.banner-destaque{
    background: none;
    padding-top: 50px;
    padding-bottom: 0;
}

.banner-destaque h1.title{
    text-transform: none;
}

.banner-destaque h3.title{
    text-transform: none;
}

.destaque-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.destaque-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.destaque-card .card-body {
    padding: 2rem;
}

.destaque-card.bg-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.destaque-card.bg-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.destaque-card.bg-image .card-body {
    position: relative;
    z-index: 2;
}

.destaque-card h3 {
    color: #333;
    font-weight: 600;
}

.destaque-card.bg-image h3,
.destaque-card.bg-image p {
    color: white;
}

.destaque-card p {
    color: #666;
    line-height: 1.6;
}



/* Responsividade */
@media (max-width: 768px) {
    .banner {
        min-height: 400px;
    }
    
    .banner .banner-image {
        width: 100%;
        height: auto;
    }
}

/* Footer */
footer {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

footer p.feito-com-amor{
    font-size: 16px;
}

footer .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 20px;
    color: var(--azul) !important;
}

footer .nav-link:hover {
    color: var(--verde) !important;
}

footer .btn-success {
    background-color: #25D366;
    border-color: #25D366;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

footer .fa-heart {
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 991.98px) {
    footer .nav {
        margin-bottom: 1rem;
    }

    footer .d-flex {
        flex-direction: column;
        align-items: center;
    }

    footer .btn-success {
        margin-top: 1rem;
    }

    footer p {
        text-align: center;
        justify-content: center;
    }
}

/* Header */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    font-size: 20px;
    color: var(--azul);
}
.navbar-nav .nav-link:hover {
    color: var(--verde);
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% !important;
}

/* Seção Facilidade */

/* Banner */
.banner-facilidade {
    background: url('../img/facilidade/banner.jpeg') center/cover no-repeat;
    background-size: cover;
    flex-shrink: 0;
    border-radius: 54px;
    padding: 60px;
}

.banner-facilidade h1.title{
    color: #20FF87;
    font-family: "Clash Display";
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 100% */
    letter-spacing: 0.2px;
    margin-bottom: 180px;
}

.banner-facilidade h2.title{
    color: #FBBC04;
    font-family: "Clash Display";
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 121.739% */
    text-transform: uppercase;
    margin-bottom: 50px;
}



.banner-facilidade .lead {
    font-size: 24px;
    color: var(--branco);
}

/* Seção Tecnologico */
#tecnologico h2.title {
    color: #000F50;
    font-family: "Clash Display";
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 121.739% */
}

#tecnologico h1.title {
    color: #000F50;
    font-family: "Clash Display";
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: 51.163px; /* 93.023% */
}

.feature-card.tech {
    padding: 30px 15px;
}

/*Seção Memórias*/
.banner-memorias{
    background: none;
    border-radius: 54px;
    padding: 58px 48px;
}

.banner-memorias h1.title{
    color: #20FF87;
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 90.909% */
}

.banner-memorias h2.title{
    color: #F2F2F2;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 121.739% */
}

.banner-memorias p.lead {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.671px; /* 127.795% */
    letter-spacing: -0.137px;
}

/*Seção Genial*/
.banner-genial{
    background: none;
    border-radius: 54px;
    padding: 58px 48px;
}

.banner-genial h1.title{
    text-transform: none;
    color: #000F50;
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 90.909% */
}

.banner-genial h2.title{
    color: #000F50;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 121.739% */
}

.banner-genial h3.title{
    text-transform: none;
    color: #000F50;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 30.671px; /* 95.846% */
    letter-spacing: -0.137px;
}

.banner-genial p.lead {
    color: #000F50;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.671px;
    letter-spacing: -0.137px;
}

/* Seção FAQ */
#faq h2.title {
    color: #000F50;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 100% */
    text-transform: capitalize;
}
.accordion-item {
    /* background: transparent; */
}

.accordion-button {
    background-color: #000F50;
    font-weight: 500;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #20FF87;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 100% */
}

.accordion-button:not(.collapsed) {
/*     box-shadow: 0 4px 6px rgba(0,0,0,.1); */
    background-color: #000F50;
    color: #20FF87;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;

}

.accordion-button::after {
    display: none;
}

.icon-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 50%;
    background-color: #000F50;
    border: 2px solid #20FF87;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .icon-circle {
    background-color: #000F50;
    border: 2px solid #20FF87;
}

.accordion-button .icon-plus {
    display: block;
}

.accordion-button .icon-minus {
    display: none;
}

.accordion-button:not(.collapsed) .icon-plus {
    display: none;
}

.accordion-button:not(.collapsed) .icon-minus {
    display: block;
}

.accordion-body {
    color: #F2F2F2;
    background-color: #000F50;
    text-align: justify;
    font-family: "Clash Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    cursor: pointer;
    transition: transform .2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 110px;
    height: 110px;
    object-fit: contain; 
    filter: drop-shadow(0px 6px 14px rgba(0, 0, 0, 0.35));
}