/* ========================================
   AGENTES DE IA - ESTILOS ESPECÍFICOS
======================================== */

/* Hero Section */
.hero-agentes {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('images/hero_agentes.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.hero-agentes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(1px);
}

.hero-agentes .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-agentes h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-agentes p {
    font-size: 1.3rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: #7c3aed;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(124,58,237,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.4);
}

.btn-secondary {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-bottom-color: #7c3aed;
    color: #7c3aed;
}

/* Intro Section */
.intro-section {
    padding: 8rem 0;
    background: #f8f7ff;
    background-image: 
        radial-gradient(circle at 15% 85%, rgba(124,58,237,0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(124,58,237,0.10) 0%, transparent 50%),
        radial-gradient(circle at 35% 35%, rgba(124,58,237,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(124,58,237,0.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 40%, rgba(124,58,237,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 60%, rgba(124,58,237,0.07) 0%, transparent 50%);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 30%, #4a4a4a 60%, #f8f7ff 100%);
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 350px;
    height: 350px;
    border: 3px solid rgba(124,58,237,0.2);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        -200px 100px 0 -50px rgba(124,58,237,0.1),
        150px -80px 0 -30px rgba(124,58,237,0.08),
        -400px -50px 0 -80px rgba(124,58,237,0.12),
        300px 200px 0 -60px rgba(124,58,237,0.09),
        -100px -200px 0 -40px rgba(124,58,237,0.07);
}

.intro-title-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.intro-title-section::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 15%;
    width: 200px;
    height: 3px;
    background: rgba(124,58,237,0.25);
    transform: rotate(45deg);
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        120px 60px 0 rgba(124,58,237,0.2),
        -60px -120px 0 rgba(124,58,237,0.18),
        200px -40px 0 rgba(124,58,237,0.15),
        -150px 80px 0 rgba(124,58,237,0.12),
        300px 20px 0 rgba(124,58,237,0.14),
        -250px -60px 0 rgba(124,58,237,0.16),
        80px 150px 0 rgba(124,58,237,0.11),
        -180px 40px 0 rgba(124,58,237,0.13);
}

.intro-title-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 20%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(124,58,237,0.15);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        -150px 80px 0 -20px rgba(124,58,237,0.12),
        100px -60px 0 -15px rgba(124,58,237,0.10),
        -80px -100px 0 -25px rgba(124,58,237,0.08);
}

.intro-left h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
    margin: 0;
    position: relative;
}

.intro-left h2::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(124,58,237,0.12);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    box-shadow: 
        120px 40px 0 -10px rgba(124,58,237,0.08),
        -60px 80px 0 -15px rgba(124,58,237,0.10);
}

.intro-left h2::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 140px;
    height: 2px;
    background: rgba(124,58,237,0.15);
    transform: rotate(-45deg);
    z-index: -1;
    pointer-events: none;
    box-shadow: 
        -80px 30px 0 rgba(124,58,237,0.12),
        60px -40px 0 rgba(124,58,237,0.09);
}

.highlight-ia {
    position: relative;
}

.highlight-ia::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #7c3aed;
}

.intro-right {
    position: relative;
}

.intro-content-section {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.intro-content-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 5%;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(124,58,237,0.15);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.intro-content-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 120px;
    height: 2px;
    background: rgba(124,58,237,0.2);
    transform: rotate(-30deg);
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        -80px 40px 0 rgba(124,58,237,0.15),
        60px -30px 0 rgba(124,58,237,0.12),
        -200px -20px 0 rgba(124,58,237,0.14),
        150px 80px 0 rgba(124,58,237,0.11),
        -120px 100px 0 rgba(124,58,237,0.13),
        180px -60px 0 rgba(124,58,237,0.09);
}

.intro-image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.intro-text p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.intro-bottom::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(124,58,237,0.12);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.intro-bottom::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 20%;
    width: 160px;
    height: 3px;
    background: rgba(124,58,237,0.18);
    transform: rotate(60deg);
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        100px -50px 0 rgba(124,58,237,0.15),
        -70px 90px 0 rgba(124,58,237,0.12),
        200px 30px 0 rgba(124,58,237,0.14),
        -150px -40px 0 rgba(124,58,237,0.11),
        80px 120px 0 rgba(124,58,237,0.13),
        -200px 60px 0 rgba(124,58,237,0.10),
        250px -80px 0 rgba(124,58,237,0.09);
}

.intro-column h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

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

.intro-list li {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    padding-left: 0;
    position: relative;
    line-height: 1.6;
}



.intro-list li strong {
    color: #0f172a;
    font-weight: 600;
}

/* Citação Destacada */
.quote-section {
    padding: 6rem 0;
    background: #1e293b;
    text-align: center;
}

.quote-highlight {
    font-size: 2.55rem;
    font-weight: 300;
    color: white;
    line-height: 1.3;
    margin: 0;
    font-style: italic;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.quote-highlight::before {
    content: '"';
    color: #7c3aed;
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    top: -5px;
}

.quote-highlight::after {
    content: '"';
    color: #7c3aed;
    font-size: 2.4rem;
    font-weight: bold;
}

/* Linha de Separação */
.section-divider {
    padding: 1rem 0;
    background: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.divider-line {
    width: 60%;
    height: 4px;
    background: #7c3aed;
    border-radius: 2px;
}

/* Cenário Global */
.cenario-global {
    padding: 8rem 0;
    background: #1e293b;
    color: white;
}

.cenario-global h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.4;
}

.stats-board {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stats-row:first-child {
    grid-template-columns: repeat(3, 1fr);
}

.stats-row:last-child {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}

.wide-cell {
    flex: 1;
}

.stats-cell {
    padding: 3rem 2rem;
    min-height: 200px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    background: rgba(0,0,0,0.3);
}



.stats-cell h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.stat-group {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-desc {
    display: block;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.3;
}

.stats-source {
    margin-top: 2rem;
    text-align: center;
}

.stats-source p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

/* Discovery Section */
.discovery-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fdf2f8 100%);
}

.discovery-section h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.4;
}

.discovery-map {
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
    padding: 2rem 0;
}

.map-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.map-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.map-step:nth-child(even) .step-content {
    text-align: right;
}

.step-marker {
    width: 3rem;
    height: 3rem;
    background: #7c3aed;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

.step-content {
    flex: 1;
    max-width: 400px;
    transform: translateY(-10px);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    margin-top: 12px;
}

.map-step:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.map-step:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3px;
    height: calc(100% + 2.5rem);
    background: repeating-linear-gradient(
        to bottom,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.map-step:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.map-step:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 3px;
    height: calc(100% + 2.5rem);
    background: repeating-linear-gradient(
        to bottom,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.map-step:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.map-step:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3px;
    height: calc(100% + 2.5rem);
    background: repeating-linear-gradient(
        to bottom,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.map-step:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.map-step:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 3px;
    height: calc(100% + 2.5rem);
    background: repeating-linear-gradient(
        to bottom,
        #7c3aed 0px,
        #7c3aed 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.discovery-highlight {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #7c3aed;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.discovery-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}

/* Desenvolvimento Section */
.desenvolvimento-section {
    padding: 8rem 0;
    background: #f1f5f9;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59,130,246,0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59,130,246,0.10) 0%, transparent 50%),
        radial-gradient(circle at 45% 65%, rgba(59,130,246,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59,130,246,0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(59,130,246,0.07) 0%, transparent 50%);
    position: relative;
}

.desenvolvimento-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 12%;
    width: 280px;
    height: 280px;
    border: 3px solid rgba(59,130,246,0.2);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        180px 120px 0 -40px rgba(59,130,246,0.1),
        -120px 80px 0 -25px rgba(59,130,246,0.08),
        320px -60px 0 -70px rgba(59,130,246,0.12),
        -250px 180px 0 -50px rgba(59,130,246,0.09),
        100px -150px 0 -35px rgba(59,130,246,0.07);
}

.desenvolvimento-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 15%;
    width: 150px;
    height: 3px;
    background: rgba(59,130,246,0.25);
    transform: rotate(-35deg);
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        -100px 70px 0 rgba(59,130,246,0.2),
        80px -90px 0 rgba(59,130,246,0.18),
        -180px -30px 0 rgba(59,130,246,0.15),
        120px 140px 0 rgba(59,130,246,0.12),
        -220px 50px 0 rgba(59,130,246,0.14),
        160px -120px 0 rgba(59,130,246,0.16),
        -60px 200px 0 rgba(59,130,246,0.11),
        240px 30px 0 rgba(59,130,246,0.13);
}

.desenvolvimento-section h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.desenvolvimento-timeline {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
    z-index: 2;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.timeline-item {
    position: relative;
    display: flex;
    justify-content: center;
}

.timeline-content {
    width: 380px;
    background: #e0e7ff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #7c3aed;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.timeline-content p {
    margin: 0;
    line-height: 5;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.6 !important;
}

.timeline-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 2 !important;
    margin: 0;
}

/* Aplicações Section */
.aplicacoes-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fdf2f8 100%);
}

.aplicacoes-section h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.4;
}

/* Aplicações Completas */
.aplicacoes-completas {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

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

.numero-grande {
    font-size: 4.5rem;
    font-weight: 700;
    color: #7c3aed;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.resultado-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.resultado-desc {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.detalhe-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 300px;
    flex: 1;
}

.detalhe-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.detalhe-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.aplicacao-area {
    display: inline-block;
    background: #7c3aed;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* CTA Final */
.cta-final {
    padding: 8rem 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.cta-button {
    background: transparent;
    color: #7c3aed;
    border: 2px solid #7c3aed;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(124,58,237,0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #7c3aed;
    color: white;
}

/* Nav Active State */
.nav-menu a.active {
    color: #7c3aed;
}

.nav-menu a.active::after {
    width: 100%;
    background: #7c3aed;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desenvolvimento-grid,
    .aplicacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-agentes h1 {
        font-size: 2.5rem;
    }
    
    .hero-agentes p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .intro-left h2 {
        font-size: 3rem;
        text-align: center;
    }
    
    .intro-title-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .intro-image-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-bottom {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-right {
        padding: 0 1rem;
    }
    
    .highlight-ia::after {
        bottom: -5px;
        height: 3px;
    }
    
    .desenvolvimento-grid,
    .aplicacoes-completas {
        flex-direction: column;
        gap: 2rem;
    }
    
    .aplicacao-completa {
        gap: 1rem;
    }
    
    .numero-grande {
        font-size: 3.5rem;
    }
    
    .detalhe-card {
        max-width: none;
    }
    
    .map-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .map-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .step-marker {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .step-content {
        max-width: 100%;
        margin-top: 1rem;
    }
    
    .map-step::before,
    .map-step::after {
        display: none;
    }
    
    .desenvolvimento-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-content {
        width: 90%;
        max-width: 380px;
        padding: 0.8rem 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .cta-final h2 {
        font-size: 2rem;
    }
    
    .cta-final p {
        font-size: 1.1rem;
    }
    
    .quote-highlight {
        font-size: 1.7rem;
    }
    
    .quote-highlight::before,
    .quote-highlight::after {
        font-size: 1.5rem;
    }
    
    .cenario-global h2 {
        font-size: 2rem;
    }
    
    .stats-row {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .stats-row:first-child {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-row:last-child {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-cell {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }
    
    .stat-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }

@media (max-width: 480px) {
    .stats-row {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stats-row:first-child,
    .stats-row:last-child {
        grid-template-columns: 1fr;
    }
    
    .stats-cell {
        padding: 2rem 1.5rem;
    }
    

}
}

@media (max-width: 480px) {
    .hero-agentes {
        padding: 100px 0 60px;
    }
    
    .hero-agentes h1 {
        font-size: 2rem;
    }
    
    .intro-section,
    .discovery-section,
    .desenvolvimento-section,
    .aplicacoes-section {
        padding: 6rem 0;
    }
    
    .cta-final {
        padding: 6rem 0;
    }
}