/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #8B2BB0;
    --color-primary-light: #A855C7;
    --color-primary-dark: #6A1F87;
    --color-primary-darker: #4A145F;
    --color-white: #FFFFFF;
    --color-bg-light: #F8F9FA;
    --color-text-dark: #1A202C;
    --color-text-medium: #4A5568;
    --color-text-light: #718096;
    --color-success: #38A169;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(139, 43, 176, 0.1);
    --shadow-lg: 0 8px 24px rgba(139, 43, 176, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-white);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    width: 300px;
    height: 60px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    box-shadow: 4px 4px #4A145F;
}

.btn-secondary:hover {
    background: rgba(139, 43, 176, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    padding: 14px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(139, 43, 176, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zapty-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-medium);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-primary);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 0px;
    margin-top: 50px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0;
}

.hero-content {
    flex: 1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 4px 2px #4A145F;
}

.hero-illustration i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.2);
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    border: 2px solid #4A145F;
    box-shadow: 4px 2px #4A145F;
    animation: float 3s ease-in-out infinite;
}

/* Animações individuais para cada card (efeito cascata) */
.card:nth-child(1) {
    top: 10px;
    right: 70px;
    animation-delay: 0s;
}

.card:nth-child(2) {
    bottom: 30px;
    left: -30px;
    animation-delay: 0.5s;
}

.card:nth-child(3) {
    bottom: 80px;
    right: -40px;
    animation-delay: 1s;
}

/* Keyframes da animação */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-diferencial {
    padding: 80px 0;
    background: var(--color-white);
    text-align: left;
    margin-top: 14px;
    margin-bottom: 24px;
    /* border-bottom: 1px solid rgb(231, 230, 230); */
    border-top: 1px solid rgb(231, 230, 230);
}

.whatsapp-diferencial h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.steps-diferencial {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.step-diferencial {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    min-width: 200px;
    flex: 1;
    max-width: 320px;
    transition: none;
}

.step-diferencial:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    color: #D1D5DB;
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.step-number.active {
    color: var(--color-primary);
}

.step-diferencial h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.step-diferencial p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-diferencial {
        flex-direction: column;
        gap: 32px;
    }

    .step-diferencial {
        max-width: 100%;
        width: 100%;
    }
}

/* ===== JORNADA SECTION ===== */
/* ===== JORNADA SECTION ===== */
.jornada {
    padding: 48px 0;
    background: var(--color-bg-light);
}

.jornada-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.jornada-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0 1 380px; /* não cresce além de 280px */
    max-width: 380px;
}

.jornada-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 80px; /* alinha verticalmente com o meio das imagens */
}

.jornada-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 161, 105, 0.1);
    color: #38A169;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.jornada-tag--purple {
    background: rgba(139, 43, 176, 0.1);
    color: var(--color-primary);
}

.jornada-img-phone {
    width: 260px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.jornada-img-dashboard {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.jornada-caption {
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 300px;
    line-height: 1.6;
}

.jornada-arrow i {
    font-size: 18px;
    background: rgba(139, 43, 176, 0.1);
    padding: 6px;
    border-radius: 50%;
    border: 2px solid rgba(139, 43, 176, 0.2);
}

/* Remove arrow, adiciona número */
.jornada-arrow {
    display: none;
}

.jornada-number {
    font-size: 32px;
    font-weight: 800;
    color: #D1D5DB;
    line-height: 1;
}

.jornada-item:nth-child(2) .jornada-number {
    color: #38A169;
}

.jornada-item:nth-child(3) .jornada-number {
    color: var(--color-primary);
}

.jornada-arrow span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-light);
    text-align: center;
}

.jornada-tag--green {
    background: rgba(56, 161, 105, 0.1);
    color: #38A169;
}

@media (max-width: 768px) {
    .jornada-grid {
        flex-direction: column;
    }

    .jornada-arrow {
        transform: rotate(90deg);
    }

    .jornada-img-phone,
    .jornada-img-dashboard {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .jornada-grid {
        flex-direction: column;
        align-items: center;
    }

    .jornada-item,
    .jornada-item--wide {
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
}

/* ===== MÓDULOS SECTION ===== */
.modulos {
    padding: 80px 0;
    background: var(--color-white);
}

.modulos-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.modulo-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modulo-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modulo-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
}

.modulo-header p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.modulo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.modulo-tag--purple {
    background: rgba(139, 43, 176, 0.1);
    color: var(--color-primary);
}

.modulo-tag--green {
    background: rgba(56, 161, 105, 0.1);
    color: #38A169;
}

.modulo-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modulo-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 48px rgba(139, 43, 176, 0.12);
}

@media (max-width: 768px) {
    .modulos-grid {
        flex-direction: column;
    }
}

/* ===== EDITOR SECTION ===== */
.editor {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.editor-grid {
    display: flex;
    align-items: center;
    gap: 64px;
}

.editor-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.editor-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.editor-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

.editor-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

.editor-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.editor-features li i {
    color: var(--color-primary);
    font-size: 14px;
    background: rgba(139, 43, 176, 0.1);
    padding: 4px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.editor-image {
    flex: 1.2;
}

.editor-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editor-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 56px rgba(139, 43, 176, 0.14);
}

@media (max-width: 768px) {
    .editor-grid {
        flex-direction: column;
        gap: 32px;
    }

    .editor-content h2 {
        font-size: 26px;
    }
}

/* ===== SEGMENTOS SECTION ===== */
.segmentos {
    padding: 80px 0;
    background: var(--color-white);
}

.segmentos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.segmento-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.segmento-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: var(--color-white);
}

.segmento-circle i {
    font-size: 36px;
    color: var(--color-text-medium);
    transition: var(--transition);
}

.segmento-item:hover .segmento-circle {
    border-color: var(--color-primary);
    background: rgba(139, 43, 176, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.segmento-item:hover .segmento-circle i {
    color: var(--color-primary);
}

.segmento-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-medium);
    transition: var(--transition);
}

.segmento-item:hover span {
    color: var(--color-primary);
}

.segmentos-cta {
    display: flex;
    justify-content: center;
}

.segmentos-cta .btn-primary {
    padding: 16px 48px;
    font-size: 16px;
    border-radius: 40px;
}

@media (max-width: 768px) {
    .segmento-circle {
        width: 75px;
        height: 75px;
    }

    .segmento-circle i {
        font-size: 26px;
    }

    .segmentos-grid {
        gap: 20px;
    }
}

/* ===== PLANOS SECTION ===== */
.plans {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.plans-grid {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--color-white);
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 32px;
    width: 330px;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.plan-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
}

.plan-card h3 {
    text-align: center;
    margin-top: 16px;
}

.plan-price {
    text-align: center;
    margin: 20px 0;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-dark);
}

.period {
    font-size: 16px;
    color: var(--color-text-light);
}

.plan-description {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: var(--color-primary);
    font-size: 14px;
}

.btn-plan {
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 4px 4px #4A145F;
}

.btn-plan:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.plans-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--color-text-light);
}

/* ===== FEATURES SECTION (REESCRITA) ===== */
.features {
    padding: 80px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--color-bg-light);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #E2E8F0;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 43, 176, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 4px 4px #4A145F;
}

.feature-icon i {
    font-size: 32px;
    color: var(--color-primary);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
    color: var(--color-white);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 0;
    background: var(--color-bg-light);
}

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

.faq-item {
    background: var(--color-white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question:hover {
    background: rgba(139, 43, 176, 0.05);
}

.faq-question i {
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: #1A202C;
    color: var(--color-white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    color: #A0AEC0;
    line-height: 1.6;
    margin-top: 16px;
}

.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.link-group h4 {
    margin-bottom: 16px;
    color: var(--color-white);
}

.link-group a {
    display: block;
    color: #A0AEC0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #2D3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #A0AEC0;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-primary-light);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text-light);
}

.modal-body {
    padding: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 43, 176, 0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 22px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #createStoreBtn {
        display: none;
    }

    .card {
        font-size: 8px;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 380px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-illustration {
        width: 300px;
        height: 300px;
    }

    .card {
        padding: 6px 12px;
    }

    .card i {
        font-size: 5rem;
    }

    .card:nth-child(1) {
        top: 10px;
        right: 70px;
        animation-delay: 0s;
    }

    .card:nth-child(2) {
        bottom: 20px;
        left: 5px;
        animation-delay: 0.5s;
    }

    .card:nth-child(3) {
        bottom: 50px;
        right: -20px;
        animation-delay: 1s;
    }

    .hero {
        padding-bottom: 0;
    }

    .steps-diferencial {
        flex-direction: column;
        align-items: center;
    }

    .step-diferencial {
        max-width: 100%;
        width: 100%;
    }
}

/* ===== BOTÃO DE LOGIN ===== */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 43, 176, 0.3);
}

.btn-login i {
    font-size: 14px;
}


@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Esconder nav links */
    .nav-links {
        display: none;
    }

    /* Botão de login fica visível */
    .header-buttons {
        display: flex;
        margin-left: auto;
        margin-right: 12px;
    }

    .mobile-menu-btn {
        display: block;
    }
}










/* ===== BOTÃO DE LOGIN (mesmo estilo do btn-primary) ===== */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(-2px);
}

.btn-login:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.btn-login i {
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .btn-login {
        padding: 8px 16px;
        font-size: 12px;
    }

    .header-buttons {
        margin-left: auto;
        margin-right: 12px;
    }

    /* Esconder botão "Criar minha loja" no mobile se quiser */
    .header-buttons .btn-primary {
        display: none;
    }
}



.hero-images-wrapper {
    display: flex;
    align-items: flex-end; /* alinha ambas no bottom */
    justify-content: flex-start;
    position: relative;
    width: 100%;
    height: 460px;
}

.hero-img-phone {
    width: 220px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    position: relative;
    bottom: 50px;
    z-index: 2;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img-dashboard {
    width: 220px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    position: absolute;
    left: 240px;
    bottom: 0; /* ancora no bottom junto com o celular */
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img-phone:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px rgba(139, 43, 176, 0.25);
}

.hero-img-dashboard:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px rgba(139, 43, 176, 0.15);
}

@media (max-width: 992px) {
    .hero-images-wrapper {
        height: 360px;
    }

    .hero-img-dashboard, .hero-img-phone {
        width: 380px;
        left: 120px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        justify-content: center;
    }

    .hero-images-wrapper {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        position: static;
    }

    .hero-img-dashboard, .hero-img-phone {
        width: 280px;
        position: static;
        left: auto;
    }
}