/* --- General Styles --- */
:root {
    /* 🎨 Primary color palette */
    --primary-color:#353766; /* Azul corporativo */
    --secondary-color: #002244; /* Azul más oscuro */
    --accent-color: #00aaff; /* Azul brillante para resaltar */
    --background-color: #f4f7f9; /* Fondo claro */
    --text-color: #222; /* Texto principal */
    --text-light: #666; /* Texto secundario */
    --border-color: #ddd; /* Bordes y separadores */

    /* 🎨 Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* --- Reset & Global Styles --- */
body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* --- Header --- */
.header {
    background: var(--primary-color);
    padding: 15px 0;
}

.header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* --- Navigation --- */
.primary-menu-wrapper .menu ul {
    list-style: none;
    padding: 0;
}

.primary-menu-wrapper .menu li {
    display: inline-block;
    margin-right: 20px;
}

.primary-menu-wrapper .menu a {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.primary-menu-wrapper .menu a:hover {
    color: var(--accent-color);
}

/* --- Buttons --- */
button, .btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover, .btn:hover {
    background: var(--primary-color);
}

/* --- Headings & Text --- */
h1, h2, h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    font-weight: 700;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* --- Carousel (Home Slides) --- */
.ebt-carousel-wrapper {
    background: var(--primary-color);
    padding: 50px 0;
    text-align: center;
}

.ebt-carousel-caption {
    font-size: 20px;
    color: white;
    font-weight: bold;
}

/* --- Footer --- */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .primary-menu-wrapper .menu li {
        display: block;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .ebt-carousel-caption {
        font-size: 18px;
    }
}

.ebt-carousel-wrapper {
	background: transparent !important;
}

.dialog-off-canvas-main-canvas {
	min-height: 100%;
}

body, .dialog-off-canvas-main-canvas {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

.main-wrapper {
	flex: 1;
}
