/* css/infraestrutura.css */

.infra-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-body);
    overflow: hidden;
    text-align: center;
}

.infra-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-main);
}
.infra-hero-text h1 .text-accent {
    color: var(--accent);
}

.infra-hero-text p.sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}
.blob-cyan {
    width: 400px; height: 400px;
    background: var(--accent);
    top: -50px; left: -50px;
}
.blob-purple {
    width: 400px; height: 400px;
    background: var(--secondary);
    bottom: -100px; right: -100px;
}

.infra-content-section {
    padding: 40px 0 100px;
    position: relative;
    z-index: 2;
}

.infra-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(24, 27, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

.infra-container p {
    margin-bottom: 24px;
}

.infra-container strong {
    color: var(--text-main);
    font-weight: 600;
}

.infra-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .infra-hero {
        padding: 120px 0 60px;
    }
    .infra-hero-text h1 {
        font-size: 2.5rem;
    }
    .infra-container {
        padding: 30px 20px;
        text-align: left;
    }
}
