﻿#map {
    height: 800px;
    width: 100%;
    position: relative;
}


.service-details {
    text-align: center;
    padding-bottom: 60px;
}

.title-one h2 {
    color: #083b2b;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.valores-arbol {
    max-width: 400px;
    margin: 0 auto 40px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

    .valores-arbol:hover {
        transform: scale(1.03);
        filter: brightness(1.05);
    }

.valores-descripcion {
    margin-top: 10px;
}

    .valores-descripcion h4 {
        color: #144b39;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .valores-descripcion p {
        color: #333;
        font-size: 0.95rem;
        max-width: 260px;
        margin: 0 auto;
        line-height: 1.5;
    }

.valores-descripcion {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

    .valores-descripcion > div {
        max-width: 220px;
        flex: 1 1 180px;
        text-align: center;
    }

    .valores-descripcion h4 {
        color: #144b39;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .valores-descripcion p {
        color: #333;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0 auto;
    }

@media (max-width: 768px) {
    .valores-descripcion {
        gap: 20px;
    }

        .valores-descripcion > div {
            max-width: 100%;
        }
}


.valores-descripcion div:hover h4 {
    color: #0c7a4e;
    transition: color 0.3s ease;
}

.valores-descripcion div:hover p {
    color: #1b1b1b;
}

@media (max-width: 992px) {
    .valores-arbol {
        max-width: 300px;
    }

    .valores-descripcion h4 {
        font-size: 1.1rem;
    }

    .valores-descripcion p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .valores-arbol {
        max-width: 250px;
    }
}