body{
    font-family: "Barlow";
}
a{
    transition: 0.5s;
    text-decoration: none;
}
.nav__menu{
    color: var(--Negro, #000) !important;
    font-family: 'Barlow';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.nav__menu:hover{
    color: #7CB420 !important;
    font-family: 'Barlow';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.active__header{
    color: #7CB420 !important;
    font-family: 'Barlow';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.btn__presupuesto{
    font-family: 'Barlow';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    border: 1px solid #7CB420;
    color: #7CB420;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #fff; /* Color base del botón */
    transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
}

.btn__presupuesto:hover{
    font-family: 'Barlow';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    border: 1px solid #7CB420;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    background-color: #7CB420; /* Color base del botón */
    transition: 0.5s ease-in-out; /* Transición suave del efecto de sombra */
}




footer{
    background-color: #00477A;
    padding: 50px;
}
.footer__secciones{
    color: var(--Celeste, #F7F9FC);
font-family: 'Barlow';
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}
.nav__footer{
    color: var(--Celeste, #F7F9FC);
    font-family: 'Barlow';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 0;
    opacity: 0.8;
}

.nav__footer:hover{
    color: #7CB420;
    font-family: 'Barlow';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.input-with-arrow {
    position: relative;
    display: flex;
    width: 80%;
}
.input-with-arrow input {
    flex: 1;
    padding-right: 2.5rem; /* Adjust this value based on the icon size */
}
.input-with-arrow .fa-arrow-right {
    position: absolute;
    right: 1rem; /* Adjust this value based on your design */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #7CB420;
}
.input-with-arrow button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: none;
    background: transparent;
    padding: 0 1rem;
    color: white;
    cursor: pointer;
}
.input-with-arrow input::placeholder {
    color: white; /* Set placeholder color to white */
    font-family: 'Barlow', sans-serif; /* Set the desired font family */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adjust spacing as needed */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.contact-item a {
    color: var(--Celeste, #F7F9FC);
    font-family: 'Barlow';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.contact-item a:hover {
    color: #7CB420;
}