* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

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

/* Header principal */
.main-header {
    background: linear-gradient(135deg, #E90071 0%, #FE15A4 100%);
    position: relative;
    z-index: 10;
}

.header-top {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-top .container {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
}

.header-link {
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.header-link:hover {
    opacity: 0.8;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    position: absolute;
    left: 20px;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.login-btn:hover {
    opacity: 0.8;
}

.person-icon {
    width: 20px;
    height: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #E90071 0%, #FE15A4 100%);
    position: relative;
    overflow: visible;
    height: 55vh;
    min-height: 400px;
    max-height: 550px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-img-mobile {
    display: none;
}

/* Seção branca após a imagem */
.white-card-section {
    background: white;
    padding: 90px 20px 60px;
    position: relative;
    margin-top: 0;
}

/* Card branco inferior sobreposto */
.white-card-overlay {
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    max-width: 520px;
    width: calc(100% - 40px);
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.4;
}

.cta-button {
    background: linear-gradient(135deg, #E90071 0%, #FE15A4 100%);
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(233, 0, 113, 0.4);
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 0, 113, 0.5);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-section {
        height: 50vh;
        min-height: 380px;
        max-height: 500px;
        padding-bottom: 70px;
    }

    .white-card-section {
        padding: 110px 20px 50px;
        margin-top: -70px;
    }

    .white-card-overlay {
        padding: 30px 35px;
        max-width: 500px;
        margin-top: -110px;
    }

    .card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .card-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 16px;
    }

}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #E90071 0%, #FE15A4 100%);
    color: white;
    padding: 24px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cpf-form {
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #E90071;
    box-shadow: 0 0 0 3px rgba(233, 0, 113, 0.1);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
    min-height: 18px;
}

.form-hint {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 6px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #E90071 0%, #FE15A4 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 0, 113, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 968px) {
    .white-card-overlay {
        padding: 22px 28px;
        max-width: 480px;
        bottom: 15px;
    }

    .card-title {
        font-size: 26px;
    }

    .card-subtitle {
        font-size: 16px;
    }

    .white-card-section {
        padding: 85px 20px 50px;
        margin-top: 0;
    }

    .hero-section {
        padding-bottom: 90px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 55vh;
        min-height: 450px;
        max-height: 550px;
        padding-bottom: 80px;
    }

    .banner-img-desktop {
        display: none;
    }

    .banner-img-mobile {
        display: block;
        width: 100%;
        height: 90%;
        object-fit: contain;
        object-position: center top;
    }

    .white-card-section {
        padding: 90px 15px 40px;
        margin-top: 0;
    }

    .white-card-overlay {
        padding: 20px 18px;
        width: calc(100% - 30px);
        max-width: 100%;
        border-radius: 12px;
        bottom: 10px;
    }

    .card-title {
        font-size: 21px;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .card-subtitle {
        font-size: 15px;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
    }
}

    .card-title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .card-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .cpf-form {
        padding: 24px;
    }
}

/* Seção de Soluções */
.solutions-section {
    background: white;
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 40px;
    text-align: center;
}

.solutions-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.solutions-carousel::-webkit-scrollbar {
    display: none;
}

.solution-card {
    min-width: 320px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffe6f2;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #E90071;
}

.card-header svg {
    width: 20px;
    height: 20px;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-card strong {
    color: #E90071;
    font-weight: 600;
}

.card-link {
    color: #E90071;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 8px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #E90071;
    background: white;
    color: #E90071;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #E90071;
    color: white;
}

.carousel-counter {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

/* Seção de Novidades */
.news-section {
    background: #fff0f7;
    padding: 60px 0;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-badge {
    display: inline-block;
    background: #E90071;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.news-section .section-title {
    color: #1a237e;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.news-card.featured {
    display: block;
}

.news-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
}

.news-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.news-link {
    color: #E90071;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seção de Parceiros */
.partners-section {
    background: white;
    padding: 60px 0;
}

.partners-section .section-title {
    color: #1a237e;
    margin-bottom: 40px;
}

.title-blue {
    color: #000;
}

.title-pink {
    color: #E90071;
}

.partners-carousel-wrapper {
    overflow: hidden;
    margin: 40px 0;
    position: relative;
    width: 100%;
}

.partners-carousel {
    display: flex;
    gap: 15px;
    animation: scrollPartners 8s linear infinite;
    will-change: transform;
}

.partner-logo-item {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    padding: 10px;
}

.partner-logo-img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}


@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.partners-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: #E90071;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partners-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(233, 0, 113, 0.4);
}

/* Seção de Aplicativo */
.app-section {
    background: white;
    padding: 60px 0;
}

.app-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.app-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.app-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
}

.app-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.app-stores p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.store-btn {
    background: #1a237e;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.store-btn:hover {
    background: #283593;
}

/* Seção de Histórias */
.stories-section {
    background: #fff0f7;
    padding: 60px 0;
}

.stories-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.story-card {
    min-width: 320px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    scroll-snap-align: start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.story-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-avatar .avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
}

.story-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
}

.story-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Controles de navegação */
.stories-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.stories-arrow {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: white;
    border: 1px solid #ddd;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.stories-arrow:hover {
    border-color: #999;
    background: #f9f9f9;
}

.stories-arrow:active {
    transform: scale(0.95);
}

.stories-counter {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    min-width: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .story-card {
        min-width: 280px;
        padding: 24px;
    }
    
    .stories-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .story-card {
        min-width: 260px;
    }
    
    .stories-controls {
        gap: 12px;
    }
    
    .stories-arrow {
        width: 38px;
        height: 38px;
    }
}

/* Seção Blog */
.blog-section {
    background: white;
    padding: 60px 0;
}

.blog-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.blog-card {
    min-width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a237e;
    margin: 20px 20px 12px;
}

.blog-card p {
    font-size: 14px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.blog-link {
    color: #E90071;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin: 0 20px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Seção FAQ */
.faq-section {
    background: white;
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    gap: 16px;
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    flex-shrink: 0;
    color: #E90071;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.faq-help {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-help p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.help-btn {
    display: inline-block;
    background: #E90071;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(233, 0, 113, 0.4);
}

/* Footer */
.main-footer {
    background: #1a237e;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive adicional */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }

    .solution-card,
    .story-card,
    .blog-card {
        min-width: 280px;
    }

    .news-card.featured {
        grid-template-columns: 1fr;
    }

    .news-content {
        padding: 24px;
    }

    .partners-carousel {
        gap: 15px;
    }

    .partner-logo-item {
        width: calc(25% - 11.25px);
        min-width: 120px;
        height: 70px;
        padding: 10px 15px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

