/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Profissional */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #00ACC1;
    --success-color: #00d4aa;
    --warning-color: #ff6b35;
    --danger-color: #dc3545;
    
    /* Cores de Fundo */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #1a1a2e;
    --bg-light: #ffffff;
    
    /* Cores de Texto */
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --text-light: #ffffff;
    --text-muted: #adb5bd;
    
    /* Gradientes Profissionais */
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-secondary: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #00ACC1 0%, #ff6b35 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(26, 26, 46, 0.1);
    --shadow-md: 0 4px 8px rgba(26, 26, 46, 0.15);
    --shadow-lg: 0 8px 16px rgba(26, 26, 46, 0.2);
    --shadow-xl: 0 12px 24px rgba(26, 26, 46, 0.25);
    
    /* Bordas */
    --border-color: #e9ecef;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Tipografia */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* ===== CONFIGURAÇÕES GERAIS ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ===== HEADER PROFISSIONAL ===== */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

.logo-large {
    height: 70px;
    width: auto;
    transition: all var(--transition-normal);
}

.brand-text {
    font-family: var(--font-secondary);
    font-weight: 800;
    color: var(--primary-color);
}

.brand-text .special-v {
    color: var(--highlight-color);
    font-weight: 900;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--highlight-color) !important;
    background: rgba(0, 172, 193, 0.05);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: var(--highlight-color) !important;
    background: rgba(0, 172, 193, 0.1);
    font-weight: 600;
}

.nav-link.active::before {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
    transition: all var(--transition-normal);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 46, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION PROFISSIONAL ===== */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    margin-bottom: 2rem;
}

.hero-badge .badge {
    background: var(--highlight-color) !important;
    color: var(--text-light) !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-section h1 .text-highlight {
    color: var(--highlight-color) !important;
    position: relative;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--highlight-color);
    width: 24px;
    text-align: center;
}

.highlight-item span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: var(--highlight-color);
    border: none;
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.hero-buttons .btn-primary:hover {
    background: #00ACC1;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.hero-buttons .btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    width: calc(33.333% - 0.67rem);
    min-width: 180px;
    max-width: 250px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--highlight-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* ===== SEÇÕES GERAIS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .badge {
    background: var(--highlight-color) !important;
    color: var(--text-light) !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SEÇÃO DE SERVIÇOS ===== */
.services-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--highlight-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--highlight-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* ===== SEÇÃO DE PREÇOS ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--highlight-color);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-value {
    margin-bottom: 2rem;
}

.pricing-value .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--highlight-color);
    display: block;
    line-height: 1;
}

.pricing-value .period {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing-button.primary {
    background: var(--highlight-color);
    color: var(--text-light);
}

.pricing-button.primary:hover {
    background: #00ACC1;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pricing-button.secondary {
    background: var(--accent-color);
    color: var(--text-light);
}

.pricing-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== SEÇÃO DE CONTATO ===== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-info {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.contact-info i {
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: all var(--transition-normal);
}

.form-control:focus {
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 172, 193, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ===== SEÇÃO CTA ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--highlight-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    display: inline-block;
}

.cta-button:hover {
    background: #00ACC1;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-normal);
}

footer a:hover {
    color: var(--highlight-color);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

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

/* ===== BOTÕES ===== */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--highlight-color);
    border: none;
    color: var(--text-light);
}

.btn-primary:hover {
    background: #00ACC1;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-primary:hover {
    background: var(--highlight-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

/* ===== UTILITÁRIOS ===== */
.text-highlight {
    color: var(--highlight-color);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.border-highlight {
    border-color: var(--highlight-color);
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #00ACC1;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--border-radius);
        margin-top: 1rem;
        padding: 1rem;
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
    }
    
    .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .hero-image {
        max-width: 160px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
        align-items: center;
        justify-content: center;
    }
    
    .stat-item {
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 2rem;
        margin: 0;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 700px;
        margin-bottom: 1rem;
    }
}

.hero-image {
    display: block;
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(26,26,46,0.10);
}

/* ===== SEÇÃO FAQ ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--highlight-color);
}

.accordion-button {
    background: var(--bg-primary);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.accordion-button:not(.collapsed) {
    background: var(--highlight-color);
    color: var(--text-light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--highlight-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ACC1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SEÇÃO DE PARCERIAS ===== */
.partnerships-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.partnership-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--highlight-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--highlight-color);
}

.partnership-card:hover::before {
    transform: scaleX(1);
}

.partnership-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.partnership-card:hover .partnership-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.partnership-icon i {
    font-size: 3rem;
    color: var(--text-light);
}

.partnership-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.partnership-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.partnership-benefits li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.partnership-benefits li i {
    color: var(--success-color);
    font-size: 1.1rem;
    min-width: 20px;
}

/* ===== RESPONSIVIDADE PARA NOVAS SEÇÕES ===== */
@media (max-width: 767.98px) {
    .faq-section,
    .partnerships-section {
        padding: 60px 0;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partnership-card {
        padding: 2rem;
    }
    
    .partnership-icon {
        width: 80px;
        height: 80px;
    }
    
    .partnership-icon i {
        font-size: 2.5rem;
    }
    
    .partnership-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .partnership-card {
        padding: 1.5rem;
    }
    
    .partnership-benefits {
        text-align: center;
    }
    
    .partnership-benefits li {
        justify-content: center;
    }
}

/* ===== SEÇÃO DE PROCESSO (GRID MODERNO) ===== */
.process-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,172,193,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.process-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: visible;
    border: 1px solid var(--border-color);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--highlight-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--highlight-color);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.process-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    color: var(--text-light);
}

.step-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.process-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.step-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.step-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.step-details li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.step-details li i {
    color: var(--success-color);
    font-size: 1.1rem;
    min-width: 20px;
}

/* ===== RESPONSIVIDADE PARA PROCESSO ===== */
@media (max-width: 767.98px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 2rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }
    
    .step-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .process-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-info h3 {
        font-size: 1.2rem;
    }
    
    .step-info p {
        font-size: 0.9rem;
    }
    
    .step-details li {
        font-size: 0.85rem;
    }
}

/* ===== SEÇÃO DE TIPOS DE NEGÓCIOS ===== */
.business-types-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.business-intro {
    margin-top: 4rem;
}

.intro-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.intro-highlights {
    margin: 3rem 0;
}

.intro-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--highlight-color);
}

.intro-highlights .highlight-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-lg);
    border-left-width: 8px;
}

.intro-highlights .highlight-item i {
    font-size: 2rem;
    color: var(--highlight-color);
    width: 30px;
    text-align: center;
}

.intro-highlights .highlight-item span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.intro-cta {
    color: var(--highlight-color) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--highlight-color);
    transition: all var(--transition-normal);
}

.intro-cta:hover {
    background: var(--highlight-color);
    color: var(--text-light) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    height: 600px;
}

.business-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.business-card:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-xl);
}

.business-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.business-card:hover img {
    transform: scale(1.15);
}

.business-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    color: var(--text-light);
}

.business-overlay h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Ajustes para cards específicos */
.business-card:nth-child(1) {
    grid-column: 1;
    grid-row: span 2;
}

.business-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.business-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.business-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.business-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.business-card:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
}

.business-card:nth-child(7) {
    grid-column: 2 / span 2;
    grid-row: 3;
}

.business-card.special-card {
    background: var(--gradient-primary);
    border: 2px solid var(--highlight-color);
    position: relative;
    overflow: hidden;
}

.business-card.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.1) 0%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}

.business-card.special-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.2) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.business-overlay.special-overlay {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.business-overlay.special-overlay h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.business-overlay.special-overlay p {
    color: var(--highlight-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVIDADE PARA TIPOS DE NEGÓCIOS ===== */
@media (max-width: 991.98px) {
    .business-types-section {
        padding: 80px 0;
    }
    
    .business-intro .row {
        flex-direction: column-reverse;
    }
    
    .intro-content {
        margin-top: 3rem;
        text-align: center;
    }
    
    .intro-content h3 {
        font-size: 1.8rem;
    }
    
    .business-grid {
        height: 500px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-card:nth-child(1) {
        grid-column: 1;
        grid-row: span 2;
    }
    
    .business-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .business-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .business-card:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .business-card:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
    
    .business-card:nth-child(6) {
        grid-column: 1;
        grid-row: 4;
    }
    
    .business-card:nth-child(7) {
        grid-column: 2;
        grid-row: 4;
    }
}

@media (max-width: 767.98px) {
    .business-types-section {
        padding: 60px 0;
    }
    
    .intro-content h3 {
        font-size: 1.6rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
    
    .intro-highlights .highlight-item {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .intro-highlights .highlight-item i {
        font-size: 1.5rem;
    }
    
    .intro-highlights .highlight-item span {
        font-size: 1.1rem;
    }
    
    .intro-cta {
        font-size: 1.3rem !important;
        padding: 1.2rem;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .business-card {
        height: 250px;
    }
    
    .business-card:nth-child(1),
    .business-card:nth-child(2),
    .business-card:nth-child(3),
    .business-card:nth-child(4),
    .business-card:nth-child(5),
    .business-card:nth-child(6),
    .business-card:nth-child(7) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .business-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .business-overlay h4 {
        font-size: 1.2rem;
    }
    
    .business-overlay.special-overlay {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .business-overlay.special-overlay h4 {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .business-overlay.special-overlay p {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .intro-content h3 {
        font-size: 1.4rem;
    }
    
    .business-card {
        height: 200px;
    }
    
    .business-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .business-overlay h4 {
        font-size: 1.1rem;
    }
    
    .business-overlay.special-overlay {
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }
    
    .business-overlay.special-overlay h4 {
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    
    .business-overlay.special-overlay p {
        text-align: center;
        font-size: 0.8rem;
        margin-bottom: 0;
    }
}
/* ===== DISCOUNT POPUP MODAL ===== */
#discountModal .modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

#discountModal .modal-header {
    background: var(--gradient-primary);
    padding: 1rem 1.5rem 0;
}

#discountModal .btn-close {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.5rem;
    transition: all var(--transition-normal);
}

#discountModal .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#discountModal .modal-body {
    padding: 2rem;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.discount-badge i {
    font-size: 1.1rem;
}

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

#discountModal .modal-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#discountModal .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.discount-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.discount-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.discount-highlights .highlight-item i {
    font-size: 1.2rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.discount-highlights .highlight-item span {
    font-weight: 500;
    color: var(--text-primary);
}

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

.modal-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.modal-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-md);
}

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

.modal-buttons .btn-outline-secondary {
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.modal-buttons .btn-outline-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Responsive adjustments for modal */
@media (max-width: 767.98px) {
    #discountModal .modal-dialog {
        margin: 1rem;
    }
    
    #discountModal .modal-body {
        padding: 1.5rem;
    }
    
    #discountModal .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    #discountModal .modal-body {
        padding: 1rem;
    }
    
    #discountModal .modal-title {
        font-size: 1.3rem;
    }
    
    .discount-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ===== DISCOUNT PRICING STYLES ===== */
.discount-pricing-badge {
    background: var(--gradient-accent) !important;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow-md);
}

.discount-pricing-badge i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.discount-note {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.discount-note small {
    color: var(--highlight-color);
    font-weight: 600;
}

.discount-note i {
    margin-right: 0.25rem;
}

/* Price with discount styling */
.pricing-value .price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    line-height: 1;
}

.pricing-value .original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.6;
    line-height: 1;
}

.pricing-value .discounted-price {
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.3em;
    line-height: 1;
}

