/* RESET E CONFIGURAÇÕES GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #1a2a4c;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2a4c;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* BOTÕES */
.cta-button {
    display: inline-block;
    background-color: #ff6f00;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #e66400;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a2a4c;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #1a2a4c;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #1a2a4c;
    color: #fff;
}

/* CABEÇALHO */
.navbar {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0056b3;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.cta-button-nav {
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}
.cta-button-nav:hover {
    background-color: #004494;
    color: #fff;
}

/* HERO SECTION */
.hero-section {
    background-color: #f0f4f8;
    text-align: center;
    padding: 100px 0;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* PARA QUEM É SECTION */
.para-quem-section {
    background-color: #fff;
}
.business-types {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.type {
    text-align: center;
    font-weight: 600;
}
.type span {
    font-size: 3rem;
}

/* DIFERENCIAIS SECTION */
.diferenciais-section {
    background-color: #f0f4f8;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.feature-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0056b3;
}

/* APP SECTION */
.app-section {
    background-color: #fff;
}
.app-section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.app-image {
    flex: 1;
    min-width: 280px;
}
.app-image img {
    max-width: 100%;
    border-radius: 20px;
}
.app-features {
    flex: 1.5;
    min-width: 300px;
}
.app-features h3 {
    text-align: left;
    margin-bottom: 20px;
}
.app-features p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.app-features ul {
    list-style: none;
    padding: 0;
}
.app-features ul li {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}
.app-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6f00;
}


/* PROVA SOCIAL SECTION */
.prova-social-section {
    background-color: #0056b3;
    color: #fff;
}
.prova-social-section h3 {
    color: #fff;
}
.case-study {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.case-study .quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
}
.case-study .author {
    font-weight: 700;
}
.prova-social-section .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* CALCULADORA SECTION */
.calculadora-section {
    background-color: #f9f9f9;
}
.calculator {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}
.calculator label {
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
.calculator input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
}
.calculator button {
    background-color: #1a2a4c;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}
.calculator button:hover {
    background-color: #0d1526;
}
.resultado-lucro {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0056b3;
}

/* PLANOS SECTION */
.planos-section {
    background-color: #f0f4f8;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}
.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    text-align: center;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border-color: #ff6f00;
    transform: scale(1.05);
}
.badge {
    background-color: #ff6f00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}
.pricing-card h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}
.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}
.pricing-card ul li {
    margin-bottom: 15px;
}

/* CTA FINAL SECTION */
.cta-final-section {
    background-color: #1a2a4c;
    color: #fff;
    text-align: center;
}
.cta-final-section h3 {
    color: #fff;
}
.cta-final-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* FOOTER */
.footer {
    background-color: #0d1526;
    color: #ccc;
    text-align: center;
    padding: 40px 0;
}
.footer h3 {
    color: #fff;
    margin-bottom: 20px;
}
.footer p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.footer a {
    color: #ff6f00;
    text-decoration: none;
}
.footer .copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #888;
}

/* RESPONSIVIDADE PARA CELULARES */
@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    
    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }
    .navbar nav ul {
        gap: 15px;
        padding: 10px 0;
    }
    .app-section-content {
        flex-direction: column;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}