:root {
    --primary: #46BF8A;
    --primary-light: #6bdcab;
    --primary-dark: #2d9e6f;
    --secondary: #3aaed8;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #94a3b8;
    --dark-gray: #1e293b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(70, 191, 138, 0.3);
}

.btn-primary-mobile {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 10px rgba(70, 191, 138, 0.3);
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(70, 191, 138, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(70, 191, 138, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--light);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.25rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
    color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

/* Light Theme */
[data-theme="light"] {
    --dark: #f8fafc;
    --darker: #f1f5f9;
    --light: #0f172a;
    --gray: #475569;
    --dark-gray: #e2e8f0;
}

[data-theme="light"] .beneficio-card,
[data-theme="light"] .plano-card,
[data-theme="light"] .nicho-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .beneficio-card h3,
[data-theme="light"] .plano-header h3,
[data-theme="light"] .preco .valor {
    color: var(--darker);
}

[data-theme="light"] .beneficio-card p,
[data-theme="light"] .plano-header p {
    color: var(--gray);
}

[data-theme="light"] .navbar {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: #00000000;
    border: none;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: none;
}

.logo a:hover {
    transform: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: none;
}

.logo-img:hover {
    transform: none;
}

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

[data-theme="light"] .navbar nav a,
[data-theme="light"] .theme-toggle {
    color: var(--gray);
}

[data-theme="light"] .navbar nav a:hover {
    color: var(--darker);
}

[data-theme="light"] .logo {
    color: var(--darker);
}

[data-theme="light"] .btn-outline {
    border-color: var(--dark-gray);
    color: var(--gray);
}

[data-theme="light"] .btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hero */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.user-container {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 6px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    transition: var(--transition);
}

.user-container:hover {
    transform: translateY(-10px);
    background: rgba(70, 191, 138, 0.2);
}

.user-container:nth-child(1) {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
    width: 195px;
    height: 195px;
}

.user-container:nth-child(2) {
    top: 5%;
    right: 10%;
    animation-delay: -1s;
    width: 120px;
    height: 120px;
}

.user-container:nth-child(3) {
    top: 35%;
    left: 30%;
    animation-delay: -2s;
    width: 185px;
    height: 185px;
}

.user-container:nth-child(4) {
    top: 70%;
    left: 0%;
    animation-delay: -3s;
    width: 130px;
    height: 130px;
}

.user-container:nth-child(5) {
    top: 65%;
    right: 20%;
    animation-delay: -4s;
    width: 150px;
    height: 150px;
}

.user-photo {
    width: 120px;
    height: 120px;
    border-radius: 2%;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 15px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Removendo estilos dos ícones antigos */
.floating-elements::before {
    content: none;
}

.hero {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo img {
    height: 2.5rem;
}

.navbar nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar nav a {
    color: var(--gray);
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0.5rem;
}

.navbar nav a:hover {
    background: rgba(70, 191, 138, 0.1);
    color: var(--light);
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background: rgba(70, 191, 138, 0.1);
    transition: var(--transition);
}

.login-link:hover {
    background: rgba(70, 191, 138, 0.2);
    color: var(--light);
}

@media (max-width: 768px) {
    .cta-buttons {
        gap: 1rem;
    }
    
    .login-link {
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: -1;
    animation: rotate 30s linear infinite;
}

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

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

.hero-content {
    max-width: 600px;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    display: inline-block;
}

.no-credit-card {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-credit-card::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-cta {
        text-align: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .no-credit-card {
        justify-content: center;
        font-size: 0.85rem;
    }
}

.hero-image {
    position: relative;
    height: 500px;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

/* Nichos Section */
.nichos {
    padding: 6rem 0;
    position: relative;
    background: var(--darker);
    overflow: hidden;
}

.nichos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgZmlsbD0icmdiYSgxMDgsIDk5LCAyNTUsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.nichos .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.1rem;
}

.nichos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.nicho-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    margin: 0 auto;
}

.nicho-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(70, 191, 138, 0.15);
    border-color: rgba(70, 191, 138, 0.4);
}

.nicho-icon {
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    padding: 0;
}

.nicho-icon i {
    font-size: 1.8rem;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nicho-card:hover .nicho-icon {
    transform: scale(1.1);
    background: transparent;
    color: var(--primary);
}

.nicho-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.nicho-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nicho-card:hover h3::after {
    width: 100%;
}

.nicho-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.nicho-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Funcionalidades Section */
.funcionalidades {
    padding: 6rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.funcionalidades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgZmlsbD0icmdiYSgxMDgsIDk5LCAyNTUsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.funcionalidades .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 100%;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Benefícios Section */


.beneficios {
    padding: 6rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgZmlsbD0icmdiYSgxMDgsIDk5LCAyNTUsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.beneficios .container {
position: relative;
z-index: 1;
}

.segmento-titulo {
    margin-bottom: 2rem;
    margin-top: 3.75rem;
    text-align: center;
}

.segmento-titulo h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.segmento-grupo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    margin-top: 2rem;
}

/* Responsividade para tablets e desktops menores */
@media screen and (max-width: 1200px) {
    .segmento-grupo {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsividade para tablets */
@media screen and (max-width: 992px) {
    .segmento-grupo {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsividade para dispositivos móveis */
@media screen and (max-width: 768px) {
    .segmento-grupo {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nicho-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .segmento-titulo h3 {
        font-size: 1.25rem;
    }
    
    .nicho-icon i {
        font-size: 1.5rem;
    }
}

/* Responsividade para dispositivos móveis menores */
@media screen and (max-width: 480px) {
    .segmento-grupo {
        grid-template-columns: 1fr;
    }
    
    .nicho-card {
        padding: 2rem 1.5rem;
    }
    
    .segmento-titulo h3 {
        font-size: 1.1rem;
    }
}

.nicho-card {
    width: 100%;
    max-width: 200px;
    margin-left: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1rem;
}

.nicho-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    margin: 0 auto;
    order: 1;
}

.nicho-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.nicho-icon i {
    font-size: 2rem;
    color: var(--primary);
    margin: 0;
    padding: 0;
}

.beneficios-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}

.beneficio-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(70, 191, 138, 0.15);
    border-color: rgba(70, 191, 138, 0.4);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(70, 191, 138, 0.2) 0%, rgba(45, 158, 111, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.beneficio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.beneficio-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.beneficio-card:hover h3::after {
    width: 60px;
    background: var(--secondary);
}

.beneficio-card p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficio-card {
        padding: 2rem 1.5rem;
    }
}

/* Planos Section */
.planos {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.planos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.planos .container {
    position: relative;
    z-index: 1;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plano-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.1);
    border-color: rgba(70, 191, 138, 0.4);
}

.plano-card.destaque {
    border: 1px solid var(--primary);
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}

.plano-card.destaque:hover {
    transform: scale(1.05) translateY(-10px);
}

.destaque-tag {
    position: absolute;
    top: 1rem;
    right: -95%;
    left: -15%;
    background: #f0ad4e;
    color: #333;
    padding: 0.5rem 1.5rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

.plano-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plano-beneficios ul li i.fas.fa-times {
    color: #dc3545;
}

.plano-header {
    text-align: center;
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    background: transparent;
    border-radius: 1rem 1rem 0 0;
    padding-bottom: 0rem;
}

.plano-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.plano-preco {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.plano-card:first-child .plano-preco .btn,
.plano-card:not(:first-child) .plano-preco .btn {
    margin-top: 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: auto;
}

.espacamento-botao {
    height: 16px;
    width: 100%;
    display: block;
}

.plano-beneficios {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0rem;
}

.plano-beneficios .btn {
    margin-top: 1.5rem;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.plano-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plano-beneficios ul li i.fas.fa-times {
    color: #dc3545;
}

.plano-beneficios li {
    margin-bottom: 0.8rem;
    color: var(--light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.plano-beneficios i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
}

.planos-obs {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.planos-obs p {
    margin: 0.5rem 0;
}

@media (max-width: 1024px) {
    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plano-card.destaque {
        transform: none;
    }
    
    .plano-card.destaque:hover {
        transform: translateY(-10px);
    }
}

/* Logos Section */
.logos {
    padding: 4rem 0;
    background: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(10px);
}

.logos h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.navbar-mobile {
    background: rgba(2, 6, 23, 0.8);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    height: 70px;
    left: 0;
    right: 0;
    display: none;
}

.navbar {
    background: rgba(2, 6, 23, 0.8);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    height: 100px;
    left: 0;
    right: 0;
}

/* Visibilidade dos headers */
@media screen and (max-width: 1024px) {
    .navbar {
        display: none;
    }
    .navbar-mobile {
        display: block;
    }
}

/* Estilos específicos para o header mobile */
.navbar-mobile .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
}

.navbar-mobile .logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.navbar-mobile .logo-img {
    height: 40px;
    margin-top: auto;
    margin-bottom: auto;
}

.navbar-mobile .cta-buttons {
    display: flex;
    align-items: center;
}

.navbar-mobile .login-link {
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.navbar-mobile .login-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1.5rem;
}

.logo {
    width: 200px;
    height: 100%;
    border-radius: 8px;
    border: none;
    background-color: #00000000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.logo-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none;
    display: block;
    opacity: 1;
}

.logo img:hover {
    transform: none;
}

    padding: 1rem 0;
}



.depoimentos {
    padding: 6rem 0;
    background: var(--darker);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--darker);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.faq-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.faq-header h3 {
    color: var(--light);
    margin-bottom: 1rem;
}

.faq-content p {
    color: var(--gray);
    margin: 0;
}

.depoimentos-swiper {
    margin-top: 3rem;
    margin-bottom: 48px;
}

.swiper-wrapper {
    padding: 0 1rem;
}

.swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
}

.depoimento-card {
    background: #1e293bb3;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transition: transform 0.2s ease;
    height: 100%;
    width: 90%;
    max-width: 800px;
}

.depoimento-card:hover {
    transform: translateY(-2px);
}

.depoimento-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.depoimento-logo {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: 0px solid var(--primary);
}

.depoimento-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}





.autor-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.autor-info h4 {
    font-size: 1.1rem;
    color: #f7f4f4;
    margin: 0;
    font-weight: 600;
}

.autor-info span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: #eeeeee;
    flex: 1;
    padding: 0rem 0;
}

.depoimento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: var(--warning);
    font-size: 1rem;
}

.data {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Estilos para os botões do Swiper */
.swiper-button-prev,
.swiper-button-next {
    color: var(--dark);
    font-size: 1.25rem;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    color: var(--dark);
    font-size: 1.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.depoimento-card {
    background: var(--light);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.2s ease;
    min-height: 400px;
}

.depoimento-card:hover {
    transform: translateY(-2px);
}

.depoimento-content {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.depoimento-logo {
    width: 120px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 0px solid var(--primary);
}

.depoimento-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}





.autor-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.autor-info h4 {
    font-size: 1.1rem;
    color: #fdfdfdfb;
    margin: 0;
    font-weight: 600;
}

.autor-info span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: #e9e9e9;
    flex: 1;
    padding: 0rem 0;
}

.depoimento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: var(--warning);
    font-size: 1rem;
}

.data {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.depoimentos-swiper {
    padding: 2rem 0;
}

#depoimentos {
    padding-top: 100px;
    margin-top: -100px;
}

.depoimentos-swiper .swiper-button-next,
.depoimentos-swiper .swiper-button-prev {
    color: var(--primary);
}

.depoimentos-swiper .swiper-pagination-bullet {
    background: var(--light);
    opacity: 0.5;
}

.depoimentos-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depoimento-info {
    display: flex;
    gap: 2rem;
    width: 100%;
    margin: 0;
    flex: 1;
}

.info-texto {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    justify-content: space-between;
}

.empresa {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
    text-align: left;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0rem;
    margin: 0;
    flex: 1;
}

.depoimento-metadados {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin-top: 1.5rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgb(238, 237, 237);
    margin-bottom: 6px;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
    border: 2px solid var(--primary);
}

.logo-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 0px solid var(--primary);
    background-color: #00000000;
    object-fit: contain;
    margin: 0;
    align-self: flex-start;
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background-color: var(--dark);
}

.faq-grid {
    display: block;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-grid {
        max-width: 100%;
    }
}

.faq-item {
    background: var(--light);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: block;
    width: 100%;
}

.faq-item .faq-question {
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 100%;
}

.faq-item .faq-answer {
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 100%;
}

.faq-item h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
}

.faq-item i {
    font-size: 1.2rem;
    color: var(--gray);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.faq-item .faq-question,
.faq-item .faq-answer {
    position: relative;
    z-index: 1;
}

.faq-item .faq-answer {
    display: none;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
    height: auto;
    margin-top: 0rem;
    padding-top: 0rem;
}

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

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0rem;
}

.faq-item .faq-answer {
    display: none;
    color: var(--gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
    margin-top: 1rem;
}

.faq-item h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.faq-item i {
    font-size: 1.2rem;
    color: var(--gray);
    transition: transform 0.3s ease;
}

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

.faq-item .faq-answer p {
    margin: 0;
    font-size: 0.95rem;
}

.faq-answer {
    padding: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light);
    border-radius: 0 0 1rem 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s ease;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Estilos para os depoimentos */
.depoimentos-swiper {
    margin-top: 2rem;
}

.depoimento-card {
    background: #1e293bb3;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    min-height: 498px;
    display: flex;
    flex-direction: column;
}

.depoimento-content {
    display: flex;
    gap: 2rem;
    height: 100%;
    align-items: center;
}

.depoimento-logo {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimento-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.depoimento-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.autor-info h4 {
    color: #f0ebeb;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.autor-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.depoimento-texto {
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f5f5f5fb;
    padding: 0rem;
    background: rgba(0, 0, 0, 0);
    text-align: center;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    padding: 1.5rem;
}

.depoimento-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    padding: 0rem;
    background: rgba(0, 0, 0, 0);
    border-radius: 8px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light);
}

.autor-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.autor-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.preco {
    margin: 1.5rem 0;
}

.preco .valor {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.preco .periodo {
    font-size: 1rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.plano-header p {
    color: var(--gray);
    margin: 0;
}

.plano-beneficios {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.plano-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plano-beneficios ul li i.fas.fa-times {
    color: #dc3545;
}

.plano-beneficios li {
    margin-bottom: 0.8rem;
    color: var(--light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.plano-beneficios i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
}

.planos-obs {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.planos-obs p {
    margin: 0.5rem 0;
}

@media (max-width: 1024px) {
    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plano-card.destaque {
        transform: none;
    }
    
    .plano-card.destaque:hover {
        transform: translateY(-10px);
    }
}

/* Logos Section */
.logos {
    padding: 4rem 0;
    background: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(10px);
}

.logos h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray);
    font-weight: 500;
}

.logos-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-image {
        display: none;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .navbar nav {
        display: none;
    }
    
    .nichos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
