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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

        /* Variáveis CSS - Nova Paleta SalusPay */
        :root {
            --primary-color: #ED1C24;
            --secondary-color: #404041;
            --accent-color: #1C75BC;
            --accent-light: #27AAE1;
            --accent-dark: #262262;
            --gray-light: #F7FAFC;
            --gray-medium: #58595B;
            --gray-dark: #404041;
            --white: #FFFFFF;
            --shadow: 0 4px 6px -1px rgba(237, 28, 36, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(237, 28, 36, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

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

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    line-height: 1;
}

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

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

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

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-whatsapp {
    background-color: white;
    color: #ED1C24;
    border: 2px solid #25D366;
}

.btn-whatsapp i {
    color: #25D366;
    margin-right: 8px;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: white;
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 16px 0;
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
}

.logo i {
    font-size: 28px;
}

.tagline {
    font-size: 12px;
    color: var(--gray-dark);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: #FFD700;
}

.highlight-red {
    color: #FF6B6B;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 250px;
}

.hero-badge-float i {
    color: var(--accent-color);
    font-size: 20px;
}

.hero-badge-float div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-badge-float strong {
    font-size: 14px;
    font-weight: 600;
}

.hero-badge-float span {
    font-size: 12px;
    color: var(--gray-dark);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-gray {
    background-color: var(--gray-light);
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* Como Funciona */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step-description {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Procedimentos */
.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.procedure-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.procedure-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.procedure-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.procedure-item span {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Benefícios */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: var(--white);
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.benefit-content p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Cadastro Steps */
.signup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.signup-step {
    text-align: center;
    padding: 32px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.signup-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.signup-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.signup-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.signup-step p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Depoimentos */
.testimonials {
    background-color: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--gray-dark);
    font-size: 14px;
}

/* Sobre */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Trust Elements */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 32px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trust-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.trust-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Contato */
.contact {
    background-color: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
    padding: 32px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: transparent !important;
    background: transparent !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: none !important;
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-color) !important;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

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

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

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

.cta-final .btn-primary:hover {
    background-color: #C53030;
    color: var(--white);
    transform: translateY(-4px);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: #A0ADB8;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: #A0ADB8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #A0ADB8;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .steps-grid,
    .procedures-grid,
    .signup-steps,
    .testimonials-grid,
    .trust-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}



/* Header Override - Branco com letras vermelhas */
.header {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.nav-brand .tagline {
    color: #ED1C24 !important;
}

.nav-link {
    color: #ED1C24 !important;
}

.nav-link:hover {
    color: #C53030 !important;
}

/* Botão Entrar visível no header branco */
.header .btn-outline {
    color: #ED1C24 !important;
    border-color: #ED1C24 !important;
    background-color: transparent !important;
}

.header .btn-outline:hover {
    background-color: #ED1C24 !important;
    color: white !important;
    border-color: #ED1C24 !important;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.logo {
    color: white !important;
}

.logo img {
    height: 48px !important;
}

/* Timeline Styles */
.section-dark {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    color: white;
}

/* Timeline Horizontal */
.timeline-horizontal-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.timeline-horizontal-line {
    position: absolute;
    top: 120px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    z-index: 1;
}

.timeline-horizontal-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-horizontal-step {
    position: relative;
    text-align: center;
}

.timeline-horizontal-number {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border: 6px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
    z-index: 3;
}

.timeline-horizontal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.timeline-horizontal-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.timeline-horizontal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.3);
}

.timeline-horizontal-content h3 {
    color: #000000 !important;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: none;
    text-align: center;
}

.timeline-horizontal-content p {
    color: #000000 !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: none;
    text-align: center;
}

.timeline-horizontal-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-horizontal-details span {
    display: block;
    font-size: 14px;
    color: #000000 !important;
    margin-bottom: 8px;
    padding-left: 0px;
    position: relative;
    text-align: center;
    font-weight: 500;
}

.timeline-horizontal-details span:before {
    display: none;
}

/* Responsividade para Timeline Horizontal */
@media (max-width: 1024px) {
    .timeline-horizontal-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .timeline-horizontal-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-horizontal-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-horizontal-container {
        padding: 40px 10px;
    }
    
    .timeline-horizontal-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .timeline-horizontal-content {
        padding: 25px 15px;
    }
    
    .timeline-horizontal-content h3 {
        font-size: 20px;
    }
    
    .timeline-horizontal-content p {
        font-size: 14px;
    }
}

/* Credenciamento Assistido */
.assisted-section {
    background: var(--gray-light);
    padding: 40px 0;
}

.assisted-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.assisted-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.assisted-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
}

.assisted-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.assisted-text p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.btn-whatsapp {
    background: white;
    color: #ED1C24;
    padding: 16px 24px;
    border: 2px solid #25D366;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 20px;
    color: #25D366;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .assisted-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}


/* Melhorias para seção Como Funciona */
.section-description {
    max-width: 800px;
    margin: 20px auto 40px;
    text-align: center;
}

.section-description p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Melhorias para botões "Seja Nosso Parceiro" */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41e3a 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
    background: linear-gradient(135deg, #c41e3a 0%, var(--primary-color) 100%);
}

/* Melhorias para contatos */
.contact-item a {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-item .btn-whatsapp {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 25px;
}

/* Footer melhorado */
.footer-section ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}



/* Botão Entrar com letra branca */
.btn-outline {
    color: white !important;
    border-color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color) !important;
}

/* Timeline melhorada com detalhes */
.timeline-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-details span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    padding-left: 10px;
    position: relative;
}

.timeline-details span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}




/* Credenciamento Assistido */
.assisted-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.assisted-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assisted-icon {
    background: #25D366;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assisted-icon i {
    font-size: 40px;
    color: white;
}

.assisted-text {
    flex: 1;
}

.assisted-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.assisted-text p {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

.assisted-button {
    flex-shrink: 0;
}

.btn-whatsapp-assisted {
    background: white;
    color: #ED1C24;
    border: 2px solid #25D366;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
}

.btn-whatsapp-assisted:hover {
    background: #25D366;
    color: white;
    transform: scale(1.1);
}

/* Responsividade para Credenciamento Assistido */
@media (max-width: 768px) {
    .assisted-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .assisted-text h3 {
        font-size: 24px;
    }
    
    .assisted-text p {
        font-size: 16px;
    }
}


.btn-whatsapp-assisted i {
    color: #25D366;
    font-size: 18px;
}



/* CORREÇÃO DEFINITIVA - ÍCONES DE CONTATO SEM FUNDO VERMELHO */
.contact-icon,
.contact-item .contact-icon,
#contato .contact-icon,
.contact-grid .contact-icon {
    width: 60px !important;
    height: 60px !important;
    background-color: transparent !important;
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
}

.contact-icon i,
.contact-item .contact-icon i,
#contato .contact-icon i,
.contact-grid .contact-icon i {
    font-size: 24px !important;
    color: #ED1C24 !important;
    background: transparent !important;
    background-color: transparent !important;
}

