.hero {
    background-image: url('../img/evvahome.webp'); /* Ajusta la ruta según sea necesario */
    background-size: cover;
    background-position: center center;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        height: 50vh; /* Menor altura en dispositivos móviles */
    }
}
.custom-margins {
    padding-left: 25px; /* Ajusta este valor según necesites */
    padding-right: 15px; /* Ajusta este valor según necesites */
}
.btn-pill {
    border-radius: 50rem; /* Ajusta esto según necesites para obtener la forma deseada */
}
.btn-work-with-us {
    background-color: green; /* Cambia #tuColor por el código hexadecimal que prefieras */
    color: #fff; /* Ajusta el color del texto si es necesario */
}
.navbar {
    border-bottom: 1px solid #dee2e6; /* Un color suave que combine con el diseño */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Ajusta la opacidad y el desplazamiento según sea necesario */
}

/* Estilo para los ítems de navegación al hacer hover */
.navbar-nav .nav-link:hover {
    font-weight: bold; /* Hace el texto más grueso */
    text-decoration: underline; /* Subraya el texto */
    text-decoration-color: #0dcaf0; /* Color del subrayado */
    text-decoration-thickness: 3px; /* Grosor del subrayado */
    text-underline-offset: 6px; /* Distancia del subrayado al texto */
}
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Gris semi-transparente */
    width: 100%; /* Asegura que el overlay cubra toda el área */
    height: 100%; /* Asegura que el overlay cubra toda el área */
    display: flex;
    align-items: center; /* Centra el contenido verticalmente */
    justify-content: center; /* Centra el contenido horizontalmente */
}
.hero-overlay h1 {
    font-size: 3rem; /* Ajusta este valor según necesites */
}
.btn-custom {
    background-color: #0dcaf0; /* Color de fondo del botón */
    border-color: #00d5ff;; /* Color del borde del botón */
    color: #ffffff; /* Color del texto del botón */
}

.btn-custom:hover {
    background-color: #00BCD4; /* Color de fondo al pasar el mouse */
    border-color: #00BCD4; /* Color del borde al pasar el mouse */
}
.btn-custom svg, .btn-custom img {
    margin-left: 8px; /* Ajusta este valor según necesites */
    fill: #ffffff; /* Establece el color del ícono a blanco */
}
/* Ajustar el tamaño del botón */

.whatsapp-btn {
    right: 1rem; /* Mantén una distancia del borde derecho */
    /*top: 0%; /* Coloca el botón a mitad de pantalla */
   /* transform: translateY(-50%); /* Centra el botón verticalmente en su posición */
    z-index: 1050; /* Asegura que el botón se sobreponga a otros elementos */
    font-size: 24px; /* Ajusta el tamaño del ícono */
    bottom :120px; 
}
/*para qeu vaya lento*/
html {
    scroll-behavior: smooth;
}
#services p.text-muted {
    font-size: 16px; /* Tamaño de fuente más pequeño */
    margin-top: 10px; /* Ajusta el margen si es necesario */
    /*color: #db810a; /* Un color más sutil */
}
#features .card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    height: 100%; /* Hace que todas las tarjetas tengan una altura del 100% */
}

#features .card:hover {
    transform: translateY(-5px);
}


/* Estilos para las tarjetas en la sección de características */
#features .card {
    height: 100%;
    border: none; /* Eliminar el borde para un aspecto más limpio */
    overflow: hidden; /* Para asegurar que el contenido no desborde */
}

/* Ajuste de la altura del cuerpo de la tarjeta */
#features .card-body {
    height: 100%;
    display: flex; /* Utilizar flexbox para alinear contenido verticalmente */
    flex-direction: column; /* Alinear el contenido verticalmente */
}

/* Ajuste de la altura de la imagen en la tarjeta */
#features .card-img-top {
    flex: 1; /* Hace que la imagen ocupe el espacio disponible */
    object-fit: cover; /* Ajusta la imagen para que cubra toda la altura de la tarjeta */
}

/*ESTULOS PARA LA PAGINA TRABAJE CON NOSOTROS*/
.hero-section.trabaje-hero {
    background-color: #f8f9fa;
    padding-top: 170px;
    min-height: 80vh;
    text-align: center;
}

.hero-section.trabaje-hero div.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section.trabaje-hero h1 {
    margin-bottom: 50px; /* Espacio aumentado entre el título y el párrafo */
}

.hero-section.trabaje-hero p {
    margin-bottom: 50px; /* Espacio aumentado entre el párrafo y el botón */
}

.hero-section.trabaje-hero div.d-flex {
    justify-content: center;
}
.hero-section.trabaje-hero .btn-primary {
    border-radius: 30px; /* Hace que el botón sea ovalado */
    padding: 12px 24px; /* Ajusta el tamaño del botón */
    background-color: #007bff; /* Color del botón */
    border-color: #007bff; /* Color del borde del botón */
}

.hero-section.trabaje-hero .btn-primary:hover {
    background-color: #0056b3; /* Cambia el color al pasar el cursor sobre el botón */
    border-color: #0056b3; /* Cambia el color del borde al pasar el cursor sobre el botón */
}

