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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1e003e 0%, #3c096c 100%);
    overflow-x: hidden;
}

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

/* Header - Corrigido */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 0, 62, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(30, 0, 62, 0.98);
    box-shadow: 0 2px 20px rgba(108, 99, 255, 0.3);
}

#header nav {
    padding: 1rem 0;
}

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

.logo {
    color: #6c63ff;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
}

#nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

#nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

#nav-links a:hover {
    color: #6c63ff;
}

#mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

#mobile-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation - Corrigido */
@media (max-width: 768px) {
    #nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(30, 0, 62, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    #nav-links.active {
        display: flex;
        left: 0;
    }
    
    #mobile-menu {
        display: flex;
    }
    
    #mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    #mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    #mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e003e 0%, #3c096c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: #6c63ff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #6c63ff;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #6c63ff, #5851d8);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #5851d8, #6c63ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-full {
    width: 100%;
}

/* Phone Mockup */
.phone-mockup {
    background: linear-gradient(45deg, #6c63ff, #5851d8);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
}

.phone-mockup i {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #3c096c 0%, #1e003e 100%);
}

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

.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
    border-color: rgba(108, 99, 255, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6c63ff;
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #6c63ff, #5851d8);
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e003e 0%, #3c096c 100%);
}

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

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(108, 99, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list .icon {
    color: #28a745;
    font-size: 1.5rem;
}

.benefits-image {
    text-align: center;
}

.benefits-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #3c096c 0%, #1e003e 100%);
}

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

.pricing-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #6c63ff;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.4);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #6c63ff;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.features-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e003e 0%, #3c096c 100%);
}

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

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 8px;
    background: rgba(30, 0, 62, 0.5);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.contact-item .icon {
    color: #6c63ff;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e003e 0%, #3c096c 100%);
    padding: 3rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(108, 99, 255, 0.3);
}

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

.footer-section h3 {
    color: #6c63ff;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #6c63ff;
}

.footer-bottom {
    border-top: 1px solid rgba(108, 99, 255, 0.2);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(30, 0, 62, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(30, 0, 62, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

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

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Dashboard Carousel */
.dashboard-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dashboard-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.dashboard-img.active {
    opacity: 1;
}

/* Indicadores do carousel */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #fff;
}

/* Manager Details Section */
.manager-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.manager-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 1.2rem;
    color: #2c3e50; /* Mudança: de #6c757d para #2c3e50 (muito mais escuro) */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.manager-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.manager-feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.manager-feature-card.featured {
    border: 2px solid #25D366;
    position: relative;
    overflow: hidden;
}

.manager-feature-card.featured::before {
    content: "GRÁTIS";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #25D366;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-header i {
    font-size: 2rem;
    color: #25D366;
    margin-right: 15px;
    min-width: 40px;
}

.feature-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.manager-feature-card p {
    color: #2c3e50; /* Mudança: de #6c757d para #2c3e50 (muito mais escuro) */
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    color: #2c3e50; /* Mudança: de #6c757d para #2c3e50 (muito mais escuro) */
    margin-bottom: 8px;
    padding-left: 10px;
}

.feature-highlight {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.feature-highlight i {
    color: #856404;
    margin-right: 10px;
    font-size: 1.1rem;
}

.feature-highlight span {
    color: #856404;
    font-size: 0.9rem;
    font-weight: 500;
}

.manager-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .manager-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .manager-feature-card {
        padding: 20px;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-header i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .manager-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}
}

/* Logos */
.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.gestor-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(108, 99, 255, 0.3));
    transition: transform 0.3s ease;
}

.gestor-logo:hover {
    transform: scale(1.05);
}

.ib24-logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Ajustar o header do card do IB24 */
.manager-feature-card.featured .feature-header {
    align-items: center;
}

.manager-feature-card.featured .feature-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

/* Responsive para logos */
@media (max-width: 768px) {
    .gestor-logo {
        max-width: 150px;
    }
    
    .ib24-logo {
        width: 35px;
        height: 35px;
    }
    
    .manager-feature-card.featured .feature-header {
        flex-direction: row;
        text-align: left;
    }
    
    .manager-feature-card.featured .feature-header .ib24-logo {
        margin-right: 10px;
        margin-bottom: 0;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq .section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #007bff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.faq-cta p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}