/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    background: linear-gradient(135deg, #1ED054, #1cda57);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: #10B981;
    border-color: #10B981;
}

.btn-outline:hover {
    background: #10B981;
    color: white;
    transform: translateY(-2px);
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    max-width: 1200px;
    margin: 0px auto;
}

.logo {
    height: 56px;
    width: auto;
}

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


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0.8rem 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgb(100, 116, 139);
    font-weight: 600;
    transition: color 0.3s ease;
    
}

.nav-link:hover {
    color: #10B981;
}

.nav-link.active {
    color: #10B981;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #10B981;
    border-radius: 1px;
}

/* Dropdown de Segmentos */
.segmentos-dropdown {
    position: relative;
    display: inline-block;
}

.segmentos-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.segmentos-dropdown .nav-link::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.segmentos-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.segmentos-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #10B981;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2310B981" stop-opacity="0.1"/><stop offset="100%" stop-color="%2310B981" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.gradient-text {
    background: linear-gradient(135deg, #10B981, #059669);
    background: linear-gradient(135deg, #1ED054, #1cda57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #10B981;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.dashboard-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    top: 10%;
    right: -20%;
    width: 200px;
    height: 120px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -15%;
    width: 180px;
    height: 110px;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: -10%;
    width: 160px;
    height: 100px;
    animation-delay: 4s;
}

@keyframes float {

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

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

/* Segmentos Section */
.segmentos {
    padding: 6rem 0;
    background: white;
}

.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.segmento-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.segmento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.segmento-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #059669);
    background: linear-gradient(135deg, #1ED054, #1cda57);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.segmento-icon i {
    font-size: 1.5rem;
    color: white;
}

.segmento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.segmento-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.segmento-preview {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.segmento-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.segmento-card:hover .segmento-preview img {
    transform: scale(1.05);
}

/* Funcionalidades Section */
.funcionalidades {
    padding: 6rem 0;
    background: #f8fafc;
}

.funcionalidades-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.funcionalidade-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.funcionalidade-item.reverse {
    direction: rtl;
}

.funcionalidade-item.reverse>* {
    direction: ltr;
}

.funcionalidade-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.funcionalidade-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #059669);
    background: linear-gradient(135deg, #1ED054, #1cda57);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.funcionalidade-icon i {
    font-size: 1.5rem;
    color: white;
}

.funcionalidade-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
}

.funcionalidade-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.funcionalidade-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10B981;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.funcionalidade-link:hover {
    gap: 12px;
}

.funcionalidade-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.funcionalidade-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.funcionalidade-item:hover .funcionalidade-image img {
    transform: scale(1.05);
}

/* Sistema Preview Section */
.sistema-preview {
    padding: 6rem 0;
    background: white;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.preview-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-feature i {
    color: #10B981;
    font-size: 1.25rem;
}

.preview-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 400px;
}

.preview-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.preview-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-secondary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-secondary img {
    width: 100%;
    height: calc(50% - 0.5rem);
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #10B981, #059669);
    background: linear-gradient(135deg, #1ED054, #1cda57);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta .btn-primary {
    background: white;
    color: #10B981;
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: #10B981;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #10B981;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10B981;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #10B981;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.contact-info i {
    color: #10B981;
    width: 16px;
}

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

/* ====== Planos – mesmo look & feel dos cards de #segmentos ====== */
.planos {
    padding: 64px 20px;
    position: relative;
}

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

.planos .section-title {
    font-size: 28px;
    margin: 0 0 6px;
}

.planos .section-subtitle {
    color: #6b7280;
    font-size: 16px;
}

/* Toggle */
.planos-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 24px;
}

.toggle-btn {
    border: 1px solid #22c55e;
    background: #fff;
    color: #22c55e;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: #22c55e;
    color: #fff;
}

/* Grid de planos */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .planos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .planos-grid {
        grid-template-columns: 1fr;
    }
}

.plano-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.plano-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
}

.plano-card.destaque {
    border: 2px solid #22c55e;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 2;
    background: white;
    color: #333;
}

.plano-card.destaque::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #22c55e, #16a34a, #22c55e);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.plano-badge {
    position: absolute;
    top: 3px;
    left: 16px;
    background: #e8f9ef;
    color: #16a34a;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    margin: 4px;
}

.badge-prim {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.plano-titulo {
    margin: 20px 0 2px;
    font-size: 20px;
}

.plano-card.destaque .plano-titulo {
    color: #1a202c;
}

.plano-subtitulo {
    margin: 0 0 12px;
    color: #6b7280;
}

.plano-card.destaque .plano-subtitulo {
    color: #64748b;
}

.preco-orig {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 10px 0 6px;
}

.price .mensal,
.price .anual {
    font-size: 28px;
    font-weight: 800;
}

.plano-card.destaque .price .mensal,
.plano-card.destaque .price .anual {
    color: #1a202c;
}

.price .unit {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-left: 4px;
}

.parcelas {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.plano-card.destaque .parcelas {
    color: #64748b;
}

/* Lista de features */
.features {
    list-style: none;
    margin: 8px 0 16px;
    padding: 0;
}

.features li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 8px 0;
    color: #374151;
}

.plano-card.destaque .features li {
    color: #1a202c;
}

.features i {
    color: #16a34a;
    margin-top: 2px;
}

/* Botões */
.btn-fill,
.btn-ghost {
    text-align: center;
    display: inline-block;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
    transition: .2s ease;
    text-decoration: none;
}

.btn-fill {
    background: #16a34a;
    color: #fff;
}

.btn-fill:hover {
    filter: brightness(.95);
}

.btn-ghost {
    border: 1px solid #16a34a;
    color: #16a34a;
    background: #fff;
}

.btn-ghost:hover {
    background: #e8f9ef;
}

/* Módulos */
.modulos-title {
    text-align: center;
    margin: 40px 0 16px;
    font-size: 22px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 991px) {
    .module-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .module-grid {
        grid-template-columns: 1fr;
    }
}

.module-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.module-card p {
    margin: 0 0 10px;
    color: #6b7280;
}

.module-price {
    font-weight: 800;
}

.module-price .unit {
    font-weight: 600;
    font-size: 12px;
    color: #6b7280;
}

/* Estados de cobrança (default = mensal) */
.price .anual,
.parcelas.anual,
.module-price.anual {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ffda47;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffda47;
}

.modal-body {
    line-height: 1.6;
    color: #64748b;
}

.modal-body h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Cursor pointer para imagens clicáveis */
.clickable-image {
    cursor: pointer !important;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        font-size: 16px;
        padding: 1.2rem 2rem;
        width: 100%;
        display: block;
        text-align: left;
        color: #333;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background-color: #f8f9fa;
        color: #10B981;
    }

    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        margin: 0;
        padding: 0;
        border-top: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
    }

    .dropdown-item {
        padding: 1rem 3rem;
        font-size: 1rem;
        color: #666;
        border-bottom: 1px solid #e9ecef;
        background: #f8f9fa;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background-color: #e9ecef;
        color: #10B981;
    }

    .segmentos-dropdown .nav-link::after {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .hamburger:hover {
        background-color: #f8f9fa;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .segmentos-dropdown .nav-link::after {
        display: none;
    }

    /* Hero Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    /* Funcionalidades Mobile */
    .funcionalidade-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .funcionalidade-item.reverse {
        direction: ltr;
    }

    /* Planos Mobile */
    .planos-grid {
        grid-template-columns: 1fr;
    }

    .plano-card.destaque {
        transform: none;
    }

    /* Preview Mobile */
    .preview-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .preview-secondary {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }

    .preview-secondary img {
        width: 120px;
    }

    /* CTA Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .plano-card {
        padding: 2rem;
    }

    .preview-secondary img {
        width: 100px;
    }
}