﻿@font-face {
    font-family: 'Nexa';
    src: url('Fuentes/NexaTextDemo-Bold.woff2') format('woff2'), url('Fuentes/NexaTextDemo-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
}

/* Contenido principal se extiende para ocupar el espacio disponible */
main {
    flex: 1;
}
/* General */
body {
    font-family: 'Nexa Bold', sans-serif;
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
}

h1, h2, h3 {
    font-family: 'Nexa Heavy', sans-serif;
}

/* Barra de navegación mejorada */
.navbar {
    background: linear-gradient(45deg, #222222, #4D4D4D) !important; /* Degradado de naranja a negro */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

    .navbar .navbar-brand {
        font-family: 'Nexa Heavy', sans-serif;
        font-size: 1.8rem;
        color: #ffffff !important;
        transition: color 0.3s ease;
    }

        .navbar .navbar-brand:hover {
            color: #E85E00 !important; /* Cambia al naranja al pasar el cursor */
        }

.navbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

    .navbar-nav .nav-item {
        margin-left: 20px;
    }

    .navbar-nav .nav-link {
        font-family: 'Nexa Bold', sans-serif;
        font-size: 1.1rem;
        color: #ffffff !important;
        padding: 10px 20px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        .navbar-nav .nav-link:hover {
            color: #E88A00 !important; /* Naranja brillante al pasar el cursor */
            transform: scale(1.1); /* Efecto de escala para un toque interactivo */
        }

.navbar-toggler-icon {
    background-color: #E88A00 !important; /* Icono de menú con color naranja */
}

/* Asegurar que el logo y los enlaces estén bien alineados */
.navbar-collapse {
    justify-content: flex-end;
}


/* Hero section */
.hero {
    background-color: #4D4D4D !important; /* Naranja brillante */
    color: #FFFFFF !important;
    padding: 50px 0;
}

/* Botones */
.btn-light {
    background-color: #E88A00 !important;
    color: #FFFFFF !important; /* Naranja brillante */
    border: 1px solid #4D4D4D !important;
}

    .btn-light:hover {
        background-color: white !important;
        color: #4D4D4D !important;
        font-weight: bold;
        border: 1px solid #E88A00 !important;
    }

.map-section {
    margin-top: 50px;
}

iframe {
    border: 0;
    width: 100%;
    height: 400px;
}

/* Footer */
footer {
    background-color: #4D4D4D !important; /* Negro al 70% */
    color: #FFFFFF !important;
    padding: 15px 0 !important;
}
