body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px;
    background-color: #FCFAF0;
    color: #4F6F5A;
}

/* Ajusta el tamaño del logo y la alineación */
.logo {
    height: 50px;
    width: auto;
}

.nav-wido{
    background-color: #FCFAF0;
}
.logo-img {
max-width: 150px; /* Tamaño máximo del logo */
height: auto;
}

@media (max-width: 768px) {
.logo-img {
max-width: 120px; /* Ajuste para pantallas más pequeñas */
}
}

.navbar .navbar-brand {
margin-right: 20px; /* Espacio entre el logo y el menú */
}
/* Cambia el grosor y el color de las palabras de los enlaces */
.navbar-nav .nav-link {
font-weight: 600; /* Grosor de la fuente (ej. 400 = normal, 600 = semibold, 700 = bold) */
color: #4F6F5A; /* Color personalizado */
transition: color 0.3s ease-in-out; /* Suaviza el cambio de color */
}

/* Efecto hover para los enlaces */
.navbar-nav .nav-link:hover {
color: #2C3E50; /* Color al pasar el cursor */
font-weight: 700; /* Opcional: aumentar grosor en hover */
}

/* Opcional: Resaltar el enlace activo */
.navbar-nav .nav-item .nav-link.active {
color: #2C3E50; 
border-bottom: 2px solid #2C3E50; /* Línea inferior para resaltar la página activa */
}

.elementor-divider {
    text-align: center;
    margin: 20px 0;
}

.elementor-divider-separator {
    display: inline-block;
    width: 30%; /* Ancho ajustable en porcentaje */
    max-width: 150px; /* Máximo ancho, puedes ajustarlo */
    height: 2px; /* Grosor de la línea */
    background-color: #4F6F5A; /* Color de la línea */
    margin: 0 auto;
}


.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen para que cubra toda la sección sin deformarse */
    filter: brightness(0.5); /* Oscurece un poco la imagen para mejor contraste del texto */
}

.hero h1, 
.hero p, 
.hero a {
    position: relative;
    color: #FCFAF0; /* Asegura que el texto contraste con la imagen */
    z-index: 2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

.ideas-section {
    background-color: #4F6F5A;
    color: #FCFAF0;
    text-align: center;
    padding: 150px 20px; /* Aumentado para mayor altura */
    max-height: 400px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}


.animated-text {
    font-size: 2.5rem;
    font-weight: 300;
    display: inline-block;
}

.animated-text span {
    font-weight: 900; /* Black font weight */
    color: #FCFAF0;
    animation: pulse 2s infinite;
}

/* Animación para la palabra "realidad" */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsividad */
@media (max-width: 768px) {
    .animated-text {
        font-size: 2rem;
    }
}
.service-card-green {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #4F6F5A;
}

.service-card-green:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #FCFAF0;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.testimonial-card {
    max-width: 300px;
    margin: auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    background-color: #FCFAF0;
    border-radius: 10px;
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05); /* Agrandar ligeramente la imagen al pasar el cursor */
}

.overlay-proyecto {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo oscuro con opacidad */
    color: #fff;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay-proyecto {
    opacity: 1; /* Mostrar overlay al pasar el cursor */
}

.overlay-proyecto h5 {
    margin: 0;
    font-size: 1.5rem;
}

.overlay-proyecto p {
    margin: 10px 0;
    font-size: 1rem;
}

.overlay-proyecto .btn-link {
    background-color: #4F6F5A;
    color: #FCFAF0;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.overlay-proyecto .btn-link:hover {
    background-color: #3E5A47; /* Cambio de color al hacer hover */
}

#contacto {
    color: #FCFAF0;
}
footer {
    background: #FCFAF0;
    color: #4F6F5A;
    padding: 20px 0;
    text-align: center;
}