/* ===== RESET E BASE ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #21272A;
}

* {
    box-sizing: border-box;
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
    background: rgb(255 255 255 / 92%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
}

.navbar-logo {
    width: 3%;
    margin-left: 0 !important;
    margin-right: 1rem;
}

.navbar-logo-secondary {
    width: 20%;
    margin-top: 10px;
    margin-left: -50px;
}

.navbar-content {
    justify-content: space-between;
}

.nav-link-custom {
    color: rgba(0, 0, 0, 0.6) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #5CAEE5 !important;
}

.botao-header {
    position: relative;
    padding: 10px 20px;
    border-radius: 60px;
    color: #000 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.botao-header:before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(45deg, #5CAEE5, #2871E4);
    -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-radius: 60px;
}

.botao-header:hover {
    background: linear-gradient(45deg, #5CAEE5, #2871E4);
    text-decoration: none;
    color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: url('../images/background_hero.png') no-repeat bottom;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 2rem;
}

.margin-hero{
    margin: 0 3rem 0 3rem;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem 0;
}


.hero-title {
    font-size: 3.5rem;
    /* color: #2871E4; */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, #5CAEE5, #2871E4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    padding: 0 2rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===== BOTÕES ===== */
.btn-primary {
    padding: 10px 30px;
    background: linear-gradient(45deg, #5CAEE5, #2871E4);
    border-radius: 60px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    text-decoration: none;
    background: linear-gradient(45deg, #468dff, #0048be);
}

.btn-secondary {
    padding: 10px 30px;
    background: transparent;
    border: 2px solid black;
    border-radius: 60px;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #000 !important;
}

/* ===== SEÇÃO DE PRÊMIOS ===== */
.premios-section {
    padding: 3rem 0;
    background: #fff;
    margin-bottom: 1rem;
}

.premios-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.premio-item {
    flex: 0 0 auto;
}

.premio-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.premio-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#parceiros h2{
    text-align: center;
}

/* ===== SEÇÃO DE BENEFÍCIOS ===== */
.beneficios-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #21272A;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-weight: 400;
}

.beneficios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.beneficio-card {
    background: white;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    outline: 2px #2871E4 solid;
    outline-offset: -2px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.15);
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.beneficio-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.beneficio-text {
    font-size: 1rem;
    font-weight: 500;
    color: #21272A;
    margin: 0;
    line-height: 1.4;
}

/* ===== SEÇÃO DE DIFERENCIAIS ===== */
.diferenciais-section {
    padding: 0;
}

.gradient-bg {
    background: linear-gradient(180deg, #F8F8FC 0%, white 100%);
}

.main-card {
    background: linear-gradient(45deg, #5CAEE5, #2871E4);
    margin-left: auto;
    margin-right: auto;
    padding: 80px 100px;
    border-radius: 30px;
    color: white;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white !important;
}

.informacoes-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.diferenciais-image img {
    border-radius: 15px;
    max-width: 100%;
}

.diferenciais-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.lista-dores {
    list-style: none;
    padding: 0;
}

.lista-dores li {
    font-size: 1.2rem;
    padding: 0.5rem 0.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid white;
}

/* ===== SEÇÃO DE RECURSOS ===== */
.recursos-section {
    padding: 5rem 0;
    background: #eeeeee;
}

.recurso-item {
    margin-bottom: 4rem;
    align-items: center;
}

.recurso-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recurso-content {
    padding: 2rem;
}

.recurso-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #21272A;
}

.recurso-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* ===== SEÇÃO DE DEPOIMENTOS ===== */
.depoimentos-section {
    padding: 5rem 0;
    background: white;
}

.depoimentos-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.depoimento-item {
    padding: 2rem;
}

.depoimento-content {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.depoimento-texto {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #333;
}

.depoimento-autor {
    text-align: center;
}

.autor-nome {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #21272A;
}

.autor-cargo,
.autor-empresa {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.empresa-logo {
    height: 40px;
    margin-top: 1rem;
}

/* ===== SEÇÃO DE PREÇOS ===== */
.precos-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.precos-table {
    margin-top: 3rem;
}

.preco-card {
    display: grid;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #c9c9c9;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    height: 100%;
    position: relative;
    transition: all 0.3s ease;

}

.preco-card p{
    color: #7c7c7c;
    font-size: 0.65rem;
}

.preco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.plano-destaque {
    background: linear-gradient(45deg, #5CAEE5, #2871E4);
    color: white;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.plano-nome {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #21272A;
}

.plano-preco h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #5CAEE5;
    margin-bottom: 0.5rem;
}

.plano-preco p {
    color: #5CAEE5;
}

.plano-recursos {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plano-recursos li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.plano-recursos li:last-child {
    border-bottom: none;
}




.btn-plano {
    width: 100%;
    font-size: 0.75rem;
    color: #000;
    padding: 1rem 2rem;
    background: #eeee;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: flex-end;
}

.btn-plano:hover {
    background: #000;
    color: #fff;
}

/* ===== SEÇÃO DE COMPARATIVO ===== */
.comparativo-section {
    padding: 5rem 0;
    background: white;
}

.comparativo-table {
    margin-top: 3rem;
}

.comparativo-coluna {
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    background: #e9eaf7;
    border-left: 5px solid #2871E4;
}

.comparativo-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparativo-lista {
    list-style: none;
    padding: 0;
}

.comparativo-lista li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 2rem;
}

.comparativo-lista li:last-child {
    border-bottom: none;
}

/* .sem-maps .comparativo-lista li::before {
    content: 'x';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.com-maps .comparativo-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
} */

/* ===== SEÇÃO DE INTEGRAÇÕES ===== */
.integracoes-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.integracoes-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.integracao-item {
    flex: 0 0 auto;
}

.integracao-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.integracao-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== SEÇÃO DE FORMULÁRIO ===== */
.formulario-section {
    padding: 5rem 0;
    background: #eee;
}

.formulario-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #21272A;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    font-weight: 400;
}

.formulario-inputs {
    padding: 0 2rem;
}

.field {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    background: white;
    border: 1px solid #C1C7CD;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #5CAEE5;
    box-shadow: 0 0 0 3px rgba(92, 174, 229, 0.1);
}

.actions {
    text-align: center;
    padding-top: 2rem;
}

.btn-enviar {
    padding: 15px 50px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

/* ===== ELEMENTOS OCULTOS ===== */
.hidden-iframe {
    width: 0;
    height: 0;
    display: none;
}

.hidden-form {
    display: none;
}

/* FORMULARIO FINAL */
.container-formulario{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-content: center;
}

.formulario-info
{
    text-align: start;
    padding: 0 2rem;
}

/* ===== RODAPÉ ===== */
.footer-section {
    background: #21272A;
    color: white;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-about {
    text-align: center;
}

.footer-logo {
    width: 30%;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-contact h4,
.footer-links h4,
.footer-policies h4,
.footer-social h4 {
    color: #5CAEE5;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #5CAEE5;
}

.policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5CAEE5;
    color: white;
    transform: translateY(-2px);
}

.footer-newsletter {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.footer-newsletter h4 {
    color: #5CAEE5;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #555;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: #ccc;
}

.newsletter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #5CDDA7, #30B2DA);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #4BC396, #2A9BC9);
}

.footer-awards {
    background: #fff;
    padding: 17px 0 17px 0;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
}

.awards-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.award-item {
    flex: 0 0 auto;
}

.award-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.award-logo:hover {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #468dff, #0048be);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: linear-gradient(45deg, #5CAEE5, #2871E4);
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 0;
    text-align: center;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .margin-responsivo{
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .beneficios-grid {
        flex-direction: column;
    }
    
    .beneficio-card {
        margin-bottom: 1rem;
    }
    
    .recurso-content {
        padding: 1rem;
        text-align: center;
    }
    
    .recurso-title {
        font-size: 1.5rem;
    }
    
    .preco-card-destaque {
        transform: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .premios-list,
    .awards-list,
    .integracoes-logos {
        gap: 0.6rem;
    }
    
    .premio-logo,
    .award-logo,
    .integracao-logo {
        height: 75px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .recurso-title {
        font-size: 1.3rem;
    }

}

