.hero {
    position: relative;
    height: 100vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--off-white);
    padding-top: 130px;
    padding-bottom: 60px;
    background-color: #000;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.9;
    transition: opacity 1.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 510px;
}

.hero-content h1 {
    color: var(--off-white);
    font-size: clamp(27px, 3.8vw, 46px);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: clamp(14px, 1.7vw, 17px);
    margin-bottom: 40px;
    color: rgba(240, 241, 235, 0.9);
    max-width: 510px;
}

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

.hero-buttons .btn-secondary {
    color: var(--off-white);
    border-color: var(--off-white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--off-white);
    color: var(--oliva-profundo);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Diferenciais */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.diff-card {
    background-color: transparent;
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(146, 148, 116, 0.2);
    text-align: center;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.diff-card i {
    font-size: 32px;
    color: var(--oliva-claro);
    margin-bottom: 24px;
}

.diff-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 400;
}

.diff-card p {
    color: var(--oliva-claro);
    font-size: 15px;
    font-weight: 300;
}

/* Apresentação Preview */
.about-preview-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-text p {
    color: var(--oliva-profundo);
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-preview-inner {
        flex-direction: column;
    }
}

/* Serviços Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: transparent;
    border: 1px solid rgba(146, 148, 116, 0.2);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--oliva-profundo);
    background-color: var(--off-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card.highlight {
    background-color: var(--oliva-profundo);
    color: var(--off-white);
}

.service-card.highlight h3 {
    color: var(--off-white);
}

.service-card.highlight p {
    color: rgba(240, 241, 235, 0.8);
}

.service-card.highlight .service-link {
    color: var(--off-white);
    border-bottom: none;
}

.service-icon {
    font-size: 32px;
    color: var(--oliva-claro);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 400;
}

.service-card p {
    color: var(--oliva-profundo);
    font-size: 15px;
    flex-grow: 1;
    margin-bottom: 32px;
    font-weight: 300;
}

.service-link {
    font-weight: 500;
    color: var(--oliva-profundo);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-link:hover {
    gap: 12px;
    color: var(--oliva-claro);
}
