/* Reset e Variáveis */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --secondary: #0891b2;
    --accent: #059669;
    --success: #16a34a;
    --warning: #d97706;
    --purple: #7c3aed;
    --orange: #ea580c;
    
    --dark: #1e293b;
    --dark-light: #475569;
    --light: #e2e8f0;
    --white: #ffffff;
    --gray-light: #f8fafc;
    
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-3: linear-gradient(135deg, var(--accent), var(--success));
    --gradient-4: linear-gradient(135deg, var(--purple), var(--primary));
    
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 20px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

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

.nav-item {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-1);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
}

/* ======================
   SISTEMA DE ÍCONES
   ====================== */

/* Base para todos os ícones SVG */
.svg-icon,
[data-lucide] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

/* Tamanho padrão para ícones */
.svg-icon,
[data-lucide] {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Ícones de seções específicas */
.about [data-lucide],
.skills [data-lucide],
.services [data-lucide] {
    width: 1rem;
    height: 1rem;
}

.svg-icon svg,
[data-lucide] svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

/* Tamanhos específicos de ícones */
.service-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.skill-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.title-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.planet-icon {
    width: 1rem;
    height: 1rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.advantage-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.area-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.placeholder-icon {
    width: 3rem;
    height: 3rem;
}

.btn-icon,
.cta-icon {
    width: 1rem;
    height: 1rem;
}

.wave-icon,
.menu-icon {
    width: 1.2rem;
    height: 1.2rem;
}

/* Modal icons simplificado */
.project-modal [data-lucide] {
    width: 0.8rem;
    height: 0.8rem;
}

.modal-section h3 [data-lucide] {
    width: 0.9rem;
    height: 0.9rem;
}

.modal-close [data-lucide] {
    width: 1rem;
    height: 1rem;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-greeting {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-name {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.role {
    background: var(--gray-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.role.active {
    display: block;
    background: var(--gradient-1);
    color: white;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Hero Visual - Sistema Solar */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solar-system {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.programmer-center {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.4);
}

.programmer-avatar {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.programmer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.programmer-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-icon {
    width: 45px;
    height: 45px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 { width: 180px; height: 180px; animation-duration: 20s; }
.orbit-2 { width: 220px; height: 220px; animation-duration: 25s; }
.orbit-3 { width: 260px; height: 260px; animation-duration: 30s; }
.orbit-4 { width: 300px; height: 300px; animation-duration: 35s; }
.orbit-5 { width: 340px; height: 340px; animation-duration: 40s; }
.orbit-6 { width: 380px; height: 380px; animation-duration: 45s; }
.orbit-7 { width: 420px; height: 420px; animation-duration: 50s; }
.orbit-8 { width: 460px; height: 460px; animation-duration: 55s; }

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

.tech-planet {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.planet-label {
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.highlight-box {
    background: var(--gradient-2);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-light);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.skill-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
}

/* Services Section */
.services {
    padding: 5rem 0;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    color: var(--dark-light);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-light);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Solutions by Area */
.solutions-by-area {
    padding: 5rem 0;
    background: var(--gray-light);
}

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

.solution-area {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.solution-area:hover {
    transform: translateY(-5px);
}

.area-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.solution-area h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.solution-area p {
    color: var(--dark-light);
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech {
    background: var(--gray-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
}

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

.project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.project-card.featured {
    grid-column: span 2;
}

.project-image {
    height: 250px;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    background: white;
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.view-project:hover {
    transform: scale(1.05);
}

.project-info {
    padding: 2rem;
}

.project-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-info p {
    color: var(--dark-light);
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: var(--gray-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-results {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.result-item {
    text-align: center;
}

.result-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.result-item span {
    font-size: 0.9rem;
    color: var(--dark-light);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-portfolio {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.contact-card p {
    color: var(--dark-light);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-benefits {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-light);
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
}

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

.advantage-item {
    text-align: center;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: var(--dark-light);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-1);
    color: white;
}

.cta-content {
    text-align: center;
}

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

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-cta-main {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-response {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background: var(--dark);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--light);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light);
    font-size: 0.9rem;
}

/* Modal */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.project-modal.active .modal-content {
    transform: scale(1);
}

/* Modal responsivo para mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 0;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: calc(95vh - 120px);
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-section {
        margin-bottom: 1.5rem;
    }
    
    .modal-section h3 {
        font-size: 1.1rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .result-value {
        font-size: 1.2rem;
    }
    
    .tech-tags {
        gap: 0.3rem;
    }
    
    .tech-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .feature-list {
        font-size: 0.9rem;
    }
    
    .modal-actions {
        margin-top: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.modal-header {
    background: var(--gradient-1);
    color: white;
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 150px);
}

.modal-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.modal-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-light);
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.modal-section h3 [data-lucide],
.modal-section h3 .svg-icon {
    width: 0.9rem !important;
    height: 0.9rem !important;
    min-width: 0.9rem;
    max-width: 0.9rem;
    min-height: 0.9rem;
    max-height: 0.9rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Menu Mobile - removido daqui pois está duplicado no media query */

/* Estilos para skill items */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light);
}

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

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.result-label {
    font-size: 0.9rem;
    color: var(--dark-light);
}

.duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.modal-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light);
}

.form-success {
    text-align: center;
    padding: 3rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.success-icon {
    width: 4rem;
    height: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--success);
    margin-bottom: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1002;
        position: relative;
    }
    
    /* Menu mobile ativo */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1001;
        padding: 80px 20px 20px;
        gap: 20px;
        justify-content: flex-start;
        align-items: center;
        animation: slideInMobile 0.3s ease-out;
    }
    
    .nav-menu.active .nav-item {
        font-size: 1.2rem;
        padding: 15px 25px;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .nav-menu.active .nav-item:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
    }
    
    .nav-menu.active .nav-cta {
        background: var(--primary);
        color: white;
        border-radius: 25px;
        font-weight: 600;
        margin-top: 10px;
    }
    
    .nav-menu.active .nav-cta:hover {
        background: var(--secondary);
        transform: translateY(-2px);
    }
    
    /* Bloquear scroll quando menu aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Animação do menu mobile */
    @keyframes slideInMobile {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Ajustes de ícones para mobile */
    [data-lucide] {
        max-width: 1.2rem;
        max-height: 1.2rem;
    }
    
    .service-icon {
        width: 1.2rem;
        height: 1.2rem;
    }
    
    .skill-icon {
        width: 0.9rem;
        height: 0.9rem;
    }
    
    .advantage-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
    
    .orbit-1 { width: 130px; height: 130px; }
    .orbit-2 { width: 160px; height: 160px; }
    .orbit-3 { width: 190px; height: 190px; }
    .orbit-4 { width: 220px; height: 220px; }
    .orbit-5 { width: 250px; height: 250px; }
    .orbit-6 { width: 280px; height: 280px; }
    .orbit-7 { width: 310px; height: 310px; }
    .orbit-8 { width: 340px; height: 340px; }
    
    .tech-planet {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    
    .programmer-center {
        width: 100px;
        height: 100px;
    }
    
    .programmer-avatar {
        width: 80px;
        height: 80px;
    }
    
    .dev-icon {
        width: 35px;
        height: 35px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured {
        grid-column: span 1;
    }
    
    /* Ajustes para botões de projeto mobile */
    .view-project {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

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

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

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

/* Estados dos planetas */
.python .planet-icon { color: #3776ab; }
.automation .planet-icon { color: #ff6b35; }
.data .planet-icon { color: #06b6d4; }
.api .planet-icon { color: #16a34a; }
.web .planet-icon { color: #7c3aed; }
.excel .planet-icon { color: #217346; }
.selenium .planet-icon { color: #43b02a; }
.javascript .planet-icon { color: #f7df1e; }
.database .planet-icon { color: #336791; }
.powerbi .planet-icon { color: #f2c811; }
.cloud .planet-icon { color: #ff9900; }
.docker .planet-icon { color: #2496ed; }
.git .planet-icon { color: #f05032; }
.fastapi .planet-icon { color: #009688; }

/* Cores dos serviços */
.card-automation .service-icon { color: #ff6b35; }
.card-integration .service-icon { color: #7c3aed; }
.card-analytics .service-icon { color: #06b6d4; }
.card-consulting .service-icon { color: #16a34a; }
.card-mobile .service-icon { color: #6366f1; }
.card-devops .service-icon { color: #059669; }

/* Estados de loading */
.spinning {
    animation: spin 1s linear infinite;
}

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

/* Header com scroll */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

/* Note icon */
.note-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

/* Benefit icon */
.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

/* Tema Escuro */
[data-theme="dark"] {
    --dark: #ffffff;
    --dark-light: #e2e8f0;
    --light: #475569;
    --white: #0f172a;
    --gray-light: #1e293b;
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.9);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .skill-item,
[data-theme="dark"] .solution-area,
[data-theme="dark"] .project-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .benefit-item,
[data-theme="dark"] .contact-form-container {
    background: #1e293b;
}

[data-theme="dark"] .modal-content {
    background: #1e293b;
    color: white;
}

/* ======================
   ESTILOS DO BLOG
   ====================== */

/* Blog Hero */
.blog-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" fill="none"><path d="M0,0V120H1200V0C1200,0 600,60 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>') center bottom no-repeat;
    background-size: cover;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Newsletter CTA */
.newsletter-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
}

.newsletter-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--success);
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Filtros do Blog */
.blog-filters {
    padding: 2rem 0;
    background: var(--gray-light);
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    text-decoration: none;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

/* Posts do Blog */
.blog-posts {
    padding: 4rem 0;
}

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

.post-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.post-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-card.featured .post-image {
    height: auto;
    min-height: 300px;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-category {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.post-date {
    color: var(--dark-light);
}

.post-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--dark);
}

.post-card.featured .post-title {
    font-size: 1.8rem;
}

.post-excerpt {
    color: var(--dark-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--dark-light);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
}

/* Lead Magnet */
.lead-magnet {
    padding: 4rem 0;
    background: var(--gray-light);
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lead-magnet-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.lead-magnet-text p {
    color: var(--dark-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.lead-magnet-benefits {
    list-style: none;
    padding: 0;
}

.lead-magnet-benefits li {
    padding: 0.5rem 0;
    color: var(--dark);
    font-weight: 500;
}

.lead-magnet-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.lead-form h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.lead-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.lead-form button {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.lead-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* CTA do Blog */
.blog-cta {
    padding: 4rem 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.blog-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Estilos do Artigo */
.article-hero {
    padding: 120px 0 60px;
    background: var(--gray-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.article-header {
    max-width: 800px;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.article-date, .article-read-time {
    color: var(--dark-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.article-subtitle {
    font-size: 1.3rem;
    color: var(--dark-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-details strong {
    display: block;
    color: var(--dark);
}

.author-details span {
    color: var(--dark-light);
    font-size: 0.9rem;
}

/* Conteúdo do Artigo */
.article-content {
    padding: 4rem 0;
}

.article-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--dark);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

/* Boxes de Destaque */
.highlight-box, .info-box, .success-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid var(--warning);
}

.info-box {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-left: 4px solid var(--primary);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.success-box {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-left: 4px solid var(--success);
}

/* Blocos de Código */
.code-block {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.code-header {
    background: var(--dark);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-title {
    font-weight: 600;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: var(--secondary);
}

.code-block pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
    line-height: 1.5;
}

.code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
}

/* Lead Magnet Inline */
.lead-magnet-inline {
    background: var(--gradient-1);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    text-align: center;
}

.lead-magnet-inline h3 {
    margin-bottom: 1rem;
}

.lead-magnet-inline ul {
    text-align: left;
    max-width: 400px;
    margin: 1rem auto 2rem;
}

.btn-lead-magnet {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lead-magnet:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Sidebar do Artigo */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.sidebar-section h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.article-toc {
    list-style: none;
    padding: 0;
}

.article-toc li {
    margin-bottom: 0.5rem;
}

.article-toc a {
    color: var(--dark-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-toc a:hover {
    color: var(--primary);
}

.related-articles {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

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

.btn-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* CTA Final do Artigo */
.article-cta {
    padding: 4rem 0;
    background: var(--gray-light);
    text-align: center;
}

.article-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.article-cta p {
    color: var(--dark-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsividade para Blog */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .post-card.featured {
        grid-column: 1;
        display: block;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .code-block pre {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .code-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Jornada de Transformação */
.transformation-journey {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(8, 145, 178, 0.05));
    border-radius: var(--border-radius);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--dark-light);
    margin: 0;
    line-height: 1.3;
}

.journey-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    margin: 0 0.5rem;
}

/* Responsividade da Jornada */
@media (max-width: 768px) {
    .transformation-journey {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .journey-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

/* Animação de pulse para destacar formulário */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
    100% { transform: scale(1); }
}