#locacoes {
    font-family: 'Inter', sans-serif;
    max-width: 1500px;
    margin: 40px auto;
    padding: 30px;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.locacoes-text-content {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
    padding-top: 20px;
}

#locacoes .section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    line-height: 1.2;
}

#locacoes p.lead-text {
    font-size: 1.1rem;
    margin-bottom: 1.2em;
    text-align: justify;
    hyphens: auto;
    color: #ffffff;
}

#locacoes p.lead-text span.brand {
    color: #dc2626;
    font-weight: bold;
}

.feature-card {
    background-color: transparent;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #dc2626;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

p.feature-price,
p.feature-desc {
    font-size: 1.1rem;
    color: #dddddd;
    margin-bottom: 15px;
}

ul.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

li.feature-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
}

li.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.locacoes-image {
    flex: 1;
    max-width: 705px;
    height: 705px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.locacoes-image img {
    width: 100%;
    height: auto;
    margin-top: 100px; /* Aqui está o ajuste para mover a imagem para baixo */
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.locacoes-image img[src*="kits.jpg"],
img[src*="kits.jpg"] {
    position: relative;
    z-index: 50;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* Responsividade */
@media (max-width: 1200px) {
    #locacoes {
        flex-direction: column;
        gap: 30px;
    }
    
    .locacoes-text-content {
        max-width: 100%;
        padding-top: 0;
    }
    
    .locacoes-image {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .locacoes-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #locacoes {
        padding: 20px;
    }
    
    #locacoes .section-title {
        font-size: 1.8rem;
    }
    
    #locacoes p.lead-text,
    p.feature-price,
    p.feature-desc,
    li.feature-item {
        font-size: 1rem;
    }
}
