 body { margin: 0; font-family: 'Open Sans', sans-serif; background-color: #242424; color: #e3d3ab; }
/* Barra superior */
.top-bar {
    background-color: #201030;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.top-bar a {
    color: #e3d3ab;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #d1c29a;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #040404;
    border-bottom: 2px solid #7c7c74;
}

.logo img {
    width: 120px;
}

/* Enlaces de navegación */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #e3d3ab;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d1c29a;
}

/* Botones */
.btn-primary {
    background-color: #e3d3ab;
    color: #242424;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #d1c29a;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #e3d3ab;
    color: #e3d3ab;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e3d3ab;
    color: #242424;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    background: url('images/js.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #e3d3ab;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
    color: #d1d1d1;
}

/* Sección de Servicios */
.services {
    padding: 60px 20px;
    background-color: #2e2e2e;
    text-align: center;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #e3d3ab;
}

.services p {
    font-size: 18px;
    color: #d1d1d1;
}

/* Botones de Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.service-tags button {
    background-color: transparent;
    border: 2px solid #e3d3ab;
    color: #e3d3ab;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tags button:hover {
    background-color: #e3d3ab;
    color: #242424;
}


/* Pie de página */
.footer {
    background-color: #040404;
    color: white;
    text-align: center;
    padding: 15px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que cubra todo el header */
    opacity: 0.3; /* Ajusta la transparencia */
    z-index: 1; /* Debajo del contenido pero encima del fondo */
}