body {
    font-family: "Roboto", sans-serif;
    background: #F5F5F5;
}
section{
    padding-top: 1rem;
}

header .nav-link {
    font-weight: bold;
}

.hero-header {
    padding-top: 6rem;
}

.subrayado {
    border-top: 2px solid;
    width: 10%;
    margin: auto;
}

.divisor1 p{
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* .logo-feature i{
    font-size: 28pt;
    margin-bottom: 1rem;
} */

.feature-box {
    position: relative;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-feature {
    font-size: 24px;
    margin-bottom: 10px;
}

.chevron-btn {
    position: relative;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    color: #007bff; /* Cambia el color si lo deseas */
}

.chevron-btn:hover {
    color: #0056b3;
}

footer{
    background: #000000;
    color: #cccccc;
}
footer h4{
    margin-top: 1rem;
    font-size: 1.15rem;
}
footer img.logo-pie{
    width: 80%;
}
footer ul{
    margin-top: 0.5rem;
    list-style: none;
}
footer li{
    padding: 0.15rem 0px;
}

.btn-cta {
    background: linear-gradient(135deg, #2d8a4e, #4db86b);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(45, 138, 78, 0.4);
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background: linear-gradient(135deg, #1f6e39, #3a9e57);
    color: #fff;
    box-shadow: 0 6px 20px rgba(45, 138, 78, 0.6);
    transform: translateY(-2px);
}