:root {
    /* --main-color: #18c66a; */
    --main-color: #028841;
    --dark-1: #0eab58;
    --dark-2: #0f8648; 
    --dark-3: #12693c;
    --dark-4: #115633;
    --dark-5: #03301b;
    --light-1: #42e68f;
    --light-2: #80f5b6;
    --light-3: #b8fad6;
    --light-4: #dafeea;
    --light-5: #effef6;
    --why-title: #015a2b;
}
* {
    font-family: "Open Sans", sans-serif;
    font-variation-settings: "wdth" 100;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.first-section {
    /* border: 1px solid #18c66a; */
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.first-section h1 {
    font-size: 27px;
    font-weight: 600;
    color: var(--main-color);
}

.first-section img {
    width: 70%;
    max-width: 400px;
}

.btn-ejemplo {
    color: white;
    border-radius: 40PX;
    display: inline-block;
    width: auto;
    background-color: white;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-size: 18px;
    padding: 5px 20px;
    /* filter: drop-shadow(0px 0px 10px var(--light-1)); */
}

.btn-ejemplo:hover {
    background-color: var(--main-color);
    color: white;
    border: 2px solid var(--light-1);
}

.second-section {
    padding: 40px 20px;
    gap: 30px;
}

.welcome-section {
    /* border: 1px solid #18c66a; */
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.why-section {
    gap: 30px;
    padding-bottom: 70px;
}

.second-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.second-title {
    font-size: 24px;
    font-weight: 400;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 45%;
}

.card-img {
    background-color: var(--light-3);
    width: 100%;
    height: 300px;
    box-shadow: 0px 1px 6px var(--light-3);
}

.card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}

.why-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.why-item {
    background-color: var(--light-3);
    padding: 10px 15px;
    border-radius: 20px;
}

.why-title  {
    color: var(--why-title);
    font-size: 15px;
    font-weight: 600;
}

.why-response {
    color: #4d4d4d;
    font-size: 14px;
}