:root {
    --azul-oscuro: #464f69;
    --verde-eng: #00a8a8;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: white;
    height: 80px;
}

.logo {
    height: 60px; /* Ajusta según el tamaño de tu logo.png */
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.nav-link.active {
    color: var(--verde-eng);
    font-weight: bold;
}

.btn-digital {
    background-color: var(--azul-oscuro);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section con Imagen de Fondo */
.hero-section {
    height: calc(100vh - 80px);
    /* Imagen de fondo local */
    background: url('backgroud.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-main {
    width: 100%;
    text-align: center;
}

.text-banner {
    background-color: rgba(0, 0, 0, 0.5); /* Franja oscura del título */
    padding: 30px 0;
    margin-bottom: 0;
}

h1 {
    color: white;
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0;
}

.subtitle-banner {
    background-color: rgba(0, 0, 0, 0.3); /* Franja más clara del subtítulo */
    padding: 10px 0;
    margin-bottom: 40px;
}

.subtitle-banner p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-action {
    background-color: var(--azul-oscuro);
    color: white;
    padding: 15px 50px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}