body {
    font-family: 'Georgia', serif;
}

.navbar {
    background-color: #4b3428;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab');
    background-size: cover;
    background-position: center;
}

.btn-dorado {
    background-color: #d4a017;
    border: none;
    font-weight: bold;
}

.btn-dorado:hover {
    background-color: #b8860b;
}

.titulo-seccion {
    color: #4b3428;
    font-weight: bold;
}

.servicio-card {
    border: none;
    transition: 0.3s;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.estadisticas {
    background-color: #4b3428;
}

.contador {
    font-size: 3rem;
    font-weight: bold;
    color: #d4a017;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px 18px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
    animation: float 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}
.servicio-card {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.servicio-card:hover {
    background-color: #d4a017;
    color: white;
    transform: translateY(-6px);
}

.servicio-card:hover p {
    color: white !important;
}
.proyecto-img {
    transition: 0.4s ease;
    cursor: pointer;
}

.proyecto-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
