/* ==================================================
   FUENTES
================================================== */

@font-face {
    font-family: 'Montserrat';
    src: url('"../fonts/Montserrat.ttf"') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}


/* ==================================================
   RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#080808;
    color:#fff;
    overflow-x:hidden;
}

a{
	text-decoration: none;
}

/* =========================================
   SISTEMA DE 12 COLUMNAS
========================================= */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================
   COLUMNAS ESCRITORIO
========================================= */

.col-1  { width: 8.333333%; }
.col-2  { width: 16.666667%; }
.col-3  { width: 25%; }
.col-4  { width: 33.333333%; }
.col-5  { width: 41.666667%; }
.col-6  { width: 50%; }
.col-7  { width: 58.333333%; }
.col-8  { width: 66.666667%; }
.col-9  { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

/* =========================================
   COLUMNAS CELULAR
========================================= */

@media (max-width: 768px) {

    [class*="col-"] {
        width: 100%;
    }

}

/* ==================================================
   NAVBAR
================================================== */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:30px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:
        background .4s ease,
        padding .4s ease,
        box-shadow .4s ease,
        transform .4s ease;

}


/* NAVBAR FIJO */

header.fixed{
    position:fixed;
    background:rgba(8,8,8,.95);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    padding:18px 6%;
    box-shadow:
        0 10px 35px rgba(0,0,0,.45);
    animation:slideDown .45s ease;
}


@keyframes slideDown{
    from{
        transform:translateY(-100%);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }
}


/* ==================================================
   LOGO
================================================== */

.logo a{
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
    font-size:40px;
    font-weight:900;
    color:#e4a72c;
}

.drums{
	font-family: Arial Narrow;
	color:#FFF;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:10px;
    margin-top:-5px;
}


/* ==================================================
   MENU DESKTOP
================================================== */

nav{
    display:flex;
    gap:35px;
}

nav a{
    position:relative;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

nav a:hover{
    color:#e4a72c;
    opacity:1;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#e4a72c;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}


/* ==================================================
   BOTÓN HAMBURGUESA
================================================== */

.menu-toggle{
    display:none;
    width:45px;
    height:45px;
    border:1px solid rgba(255,255,255,.35);
    background:transparent;
    cursor:pointer;
    position:relative;
    z-index:1001;
}

.menu-toggle span{
    position:absolute;
    left:10px;
    width:24px;
    height:2px;
    background:#fff;
    transition:.3s;
}


.menu-toggle span:nth-child(1){
    top:14px;
}

.menu-toggle span:nth-child(2){
    top:21px;
}

.menu-toggle span:nth-child(3){
    top:28px;
}


/* HAMBURGUESA ABIERTA */

.menu-toggle.active span:nth-child(1){
    top:21px;
    transform:rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    top:21px;
    transform:rotate(-45deg);
}


/* ==================================================
   MENÚ MOBILE
================================================== */
.mobile-menu{
    position:fixed;
    inset:0;
    z-index:1000;
    background: rgba(8,8,8,.98);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transform:translateY(-20px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
}

.mobile-menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mobile-menu ul{
    list-style:none;
    text-align:center;
}


.mobile-menu li{
    margin:15px 0;
}


.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size: 40px !important;
    font-weight:600;
    letter-spacing:-1px;
    transition:.3s;
}


.mobile-menu a:hover{
    color:#e4a72c;
}


/* ==================================================
   SLIDER
================================================== */

.slider{
    position:relative;
    width:100%;
    height:100vh;
    min-height:650px;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity 1.2s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
}


/* ==================================================
   IMAGEN
================================================== */

.slide-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.08);
    transition:
        transform 7s ease;
}


.slide.active .slide-bg{
    transform:scale(1);
}


.mobile-close {
    position: absolute;
    top: 25px;
    right: 6%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: .3s;
}

.mobile-close i {
    font-size: 20px;
    color: #e4a72c;
}

.mobile-close:hover {
    color: #e4a72c;
}

/* ==================================================
   OSCURECER IMAGEN
================================================== */

.slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.95) 10%,
            rgba(0,0,0,.50) 40%,
            rgba(0,0,0,.10) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.80),
            transparent 60%
        );

}


/* ==================================================
   CONTENIDO
================================================== */

.content{
    position:relative;
    z-index:10;
    width:88%;
    max-width:1250px;
    height:100%;
    margin:auto;
    display:flex;
    align-items:center;
}


.text{
    max-width:650px;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.eyebrow{
    color:#e4a72c;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:13px;
    margin-bottom:20px;
}


h1{
    font-size: clamp(50px,10vw,100px);
    line-height:.85;
    font-weight:900;
    letter-spacing:-5px;
    margin-bottom:30px;
}


h1 span{
    color:#e4a72c;
}

h2{
    font-size: clamp(30px,8vw,70px);
    line-height:.80;
    font-weight:900;
    letter-spacing:-4px;
    margin-bottom:20px;
}

h2 span{
    color:#e4a72c;
}

h3{
    font-size: clamp(15px,6vw,40px);
    line-height:.80;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:20px;
}


h3 span{
    color:#e4a72c;
}

h4{
    font-size: clamp(12px,5vw,25px);
    line-height:.80;
    font-weight:900;
    letter-spacing:-1px;
    margin-bottom:20px;
}

h4 span{
    color:#e4a72c;
}

.subtitle{
    font-size: clamp(14px,2vw,18px);
    line-height:1.2;
    color:#ddd;
    max-width:550px;
    margin-bottom:40px;
}

.subtitle strong{
    color:#fff;
}


/* ==================================================
   BOTÓN
================================================== */

.btn{

    display:inline-block;
    padding:16px 28px;
    border:1px solid #e4a72c;
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    transition:.3s;
}


.btn:hover{
    background:#e4a72c;
    color:#080808;
}


/* ==================================================
   CONTROLES
================================================== */

.controls{
    position:absolute;
    z-index:20;
    bottom:45px;
    left:6%;
    display:flex;
    align-items:center;
    gap:25px;
}


.arrow{
    width:48px;
    height:48px;
    border:none;
    background:transparent;
    color:#fff;
    cursor:pointer;
    font-size:35px;
    transition:.3s;
}

.arrow:hover{
    border-color:#e4a72c;
    color:#e4a72c;
}

.counter{
    font-size:13px;
    letter-spacing:3px;
    color:#aaa;
}


.counter strong{
    color:#e4a72c;
}


/* ==================================================
   DOTS
================================================== */

.dots{
    position:absolute;
    z-index:20;
    bottom:50px;
    right:6%;
    display:flex;
    gap:10px;
}


.dot{
    width:35px;
    height:2px;
    background:
        rgba(255,255,255,.3);
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    width:60px;
    background:#e4a72c;
}


@media (max-width: 600px) {
    /* Menú */
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Dots del slider */
    .dots {
        display: none;
    }
}


/* ==================================================
   SECCIONES
================================================== */

.section{
    min-height:700px;
    padding:120px 8% 0 8%;
    background:#0b0b0b;
}

.section:nth-child(even){
    background:#111;
}

.section h2{
    font-size: 60px;
    margin-bottom:25px;
}

.section h2 span{
    color:#e4a72c;
}

.section-pagina{
	background-color: #e4a72c; 
	color: #000; 
	border-bottom: solid 2px #FFF; 
	border-top: solid 2px #FFF; 
	margin-top: 110px; 
	min-height: 300px;
    padding:80px 8% 0 8%;
	min-height:400px;
}

p{
    max-width:95%;
    color:#aaa;
    font-size:15px;
    line-height:1.3;
}

ul li {
	margin-left: 50px;
    color:#aaa;
    font-size:14px;
    line-height:1.2;
}


/* ==================================================
   TABLET
================================================== */

@media(max-width:900px){

    nav{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

}


/* ==================================================
   CELULAR
================================================== */

@media(max-width:600px){
    header{
        padding:22px 6%;
    }

    header.fixed{
        padding:16px 6%;
    }

	.logo a{
		font-family: 'Montserrat', sans-serif;
		text-decoration: none;
		font-size:40px;
		font-weight:900;
		text-decoration: none;
		color:#e4a72c;
	}

    .slider{
        height:100svh;
        min-height:650px;
    }

    .slide-bg{
        object-position:right;
    }
	
    .slide::after{
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.60) 0%,
                rgba(0,0,0,.35) 35%,
                rgba(0,0,0,.88) 100%
            );
    }

    .content{
        width:84%;
        align-items:flex-end;
        padding-bottom:130px;
    }

    .text{
        width:100%;
    }

    .eyebrow{
        font-size:10px;
        letter-spacing:3px;
        margin-bottom:15px;
    }
	
	h1{
        letter-spacing:-2px;
    }

    h2{
        letter-spacing:-1px;
    }

    h3{
        letter-spacing:0;
    }
	
	p{
		min-width:100%;
		color:#AAA;
		font-size: 13px;
		line-height:1.1;
	}

	.section h2{
		font-size: clamp(25px,100vw,30px) !important;
		font-weight:900;
		letter-spacing:-2px;
		margin-bottom:20px;
	}
	
	.section h3{
		font-size: clamp(15px,6vw,20px);
		font-weight:900;
		letter-spacing:-1px;
		margin-bottom:10px;
	}

	.section h1 h2 h3 span{
		color:#e4a72c;
	}
	
    .btn{
        padding:14px 22px;
        font-size:10px;
    }


    /* ----------------------------------------------
       CONTROLES
    ---------------------------------------------- */
    .controls{
        left:8%;
        bottom:30px;
        gap:15px;
    }

    .arrow{
        width:42px;
        height:42px;
    }

    .counter{
        font-size:11px;
    }

    .dots{
        right:8%;
        bottom:50px;
    }

    .dot{
        width:22px;
    }

    .dot.active{
        width:38px;
    }

    /* ----------------------------------------------
       MOBILE MENU
    ---------------------------------------------- */
    .mobile-menu a{
        font-size:25px;
    }


    /* ----------------------------------------------
       SECCIONES
    ---------------------------------------------- */
    .section{
        min-height:600px;
        padding:120px 8% 0 8%;
    }

    .section h2{
        font-size:42px;
        line-height:1;
    }

    .section p{
        font-size:17px;
    }

}


/* ==================================================
   PANTALLAS MUY PEQUEÑAS
================================================== */

@media(max-width:380px){

    h1{
        font-size:55px;
    }

    .subtitle{
        font-size:17px;
    }

    .mobile-menu a{
        font-size:22px;
    }
}




/* ==================================================
   FOOTER
================================================== */

.footer {
    background: #050505;
    padding: 80px 0 25px;
    border-top: 1px soli
        rgba(255,255,255,.08);
}

/* =========================================
   BRAND
========================================= */
.footer-brand .brand {
    display: inline-flex;
    flex-direction: column;
    line-height: .85;
}

.footer-brand .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.footer-brand .drums {
    color: #e4a72c;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-top: 8px;
}

.footer-brand p {
    margin-top: 25px;
    color: #777;
    font-size: 14px;
    line-height: 1.3;
}


/* =========================================
   TÍTULOS
========================================= */
.footer h3 {
    font-size:28px;
    line-height:.80;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:20px;
}


/* =========================================
   MENÚ
========================================= */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: .3s;
}

.footer-menu a:hover {
    color: #e4a72c;
    padding-left: 5px;
}

/* =========================================
   CONTACTO
========================================= */
.footer-contact p {
    color: #888;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* =========================================
   LÍNEA
========================================= */
.footer-line {
    width: 100%;
    height: 2px;
    background:
        rgba(255,255,255,.08);
    margin: 60px 0 25px;
}


/* =========================================
   PARTE INFERIOR
========================================= */
.footer-bottom {
    align-items: center;
}

.footer-bottom a {
	text-decoration: none;
	color: #888888
}

.footer-bottom p {
    color: #555;
    font-size: 12px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-social a {
    color: #777;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s;
}

.footer-social a:hover {
    color: #e4a72c;
}


/* =========================================
   FOOTER CELULAR
========================================= */

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }

    .footer [class*="col-"] {
        width: 100%;
        margin-bottom: 45px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-line {
        margin: 15px 0 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom [class*="col-"] {
        margin-bottom: 20px;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }
}



/* ==================================================
   PROGRAMAS
================================================== */
.programas {
    position: relative;
    background: #080808;
    padding: 100px 0;
    overflow: hidden;
}


/* ==================================================
   TITULO
================================================== */
.programas-titulo {
    margin-bottom: 60px;
}

.programas-titulo span {
    display: block;
    color: #e4a72c;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0px;
}

.programas-titulo p {
    max-width: 550px;
    margin-top: 20px;
    color: #888;
    font-size: 16px;
}


/* ==================================================
   TARJETAS
================================================== */
.programa {
    position: relative;
    min-height: 280px;
    margin-bottom: 30px;
    padding: 35px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition:
        transform .45s ease,
        border-color .45s ease,
        background .45s ease;
}


/* ==================================================
   LINEAS DEL ECUALIZADOR
================================================== */
.programa::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 70px;
    opacity: .14;
    background:

        linear-gradient(#e4a72c, #e4a72c)
        0 50% / 3px 22px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        7px 50% / 3px 32px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        14px 50% / 3px 45px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        21px 50% / 3px 58px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        28px 50% / 3px 42px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        35px 50% / 3px 65px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        42px 50% / 3px 50px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        49px 50% / 3px 36px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        56px 50% / 3px 48px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        63px 50% / 3px 28px no-repeat,

        linear-gradient(#e4a72c, #e4a72c)
        70px 50% / 3px 20px no-repeat;

    transform: translateX(0);

    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        opacity .45s ease;
}


/* ==================================================
   HOVER TARJETA
================================================== */
.programa:hover {
    transform: translateY(-10px);
    border-color: rgba(228,167,44,.60);
    background: rgba(255,255,255,.16);
}


/* ==================================================
   HOVER LINEAS
================================================== */
.programa:hover::after {
    transform: translateX(45px);
    opacity: .35;
}


/* ==================================================
   ICONO
================================================== */
.programa-icono {
    position: relative;
    z-index: 2;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #e4a72c;
    font-size: 28px;
    border: 1px solid rgba(228,167,44,.40);
    border-radius: 50%;
}


/* ==================================================
   TITULO DEL PROGRAMA
================================================== */
.programa h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
}

.programa h3 span {
    display: block;
    color: #e4a72c;
}


/* ==================================================
   DESCRIPCION
================================================== */
.programa p {
    position: relative;
    z-index: 2;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin: 18px 0;
}


/* ==================================================
   ENLACE
================================================== */
.programa a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .3s;
}

.programa a i {
    margin-left: 8px;
    color: #e4a72c;
}

.programa a:hover {
    color: #e4a72c;
}


/* ==================================================
   EFECTO SUAVE AL PASAR EL MOUSE
================================================== */
.programa:hover .programa-icono {
    background: rgba(228,167,44,.08);
    border-color: #e4a72c;
}


/* ==================================================
   CELULAR
================================================== */
@media (max-width: 768px) {
    .programas {
        padding: 70px 0;
    }

    .programas-titulo {
        margin-bottom: 40px;
    }

    .programa {
        min-height: 250px;
        padding: 28px;
    }

    .programa::after {
        right: 10px;
        bottom: 15px;
        opacity: .10;
    }


    /* En celular no necesitamos
       el movimiento del hover */

    .programa:hover {
        transform: none;
    }

    .programa:hover::after {
        transform: translateX(0);
        opacity: .10;
    }
}
/* =========================================
   ICONO
========================================= */
.programa-icono {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #e4a72c;
    font-size: 28px;
    border: 1px solid
        rgba(228,167,44,.4);
    border-radius: 50%;
}


/* =========================================
   TITULO
========================================= */
.programa h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.programa h3 span {
    display: block;
    color: #e4a72c;
}

/* =========================================
   DESCRIPCION
========================================= */
.programa p {
    position: relative;
    z-index: 2;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin: 18px 0;
}


/* =========================================
   ENLACE
========================================= */
.programa a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .3s;
}

.programa a i {
    margin-left: 8px;
    color: #e4a72c;
}

.programa a:hover {
    color: #e4a72c;
}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 768px) {
    .programas {
        padding: 70px 0;
    }

    .programas-titulo {
        margin-bottom: 40px;
    }

    .programa {
        min-height: 250px;
        padding: 28px;
    }
}


/* =========================================
   INSTRUMENTOS
========================================= */

.instrumento {
	font-family: Arial Narrow;
    padding: 30px;
    overflow: hidden;
    cursor:auto;
	font-size: 16px;
	letter-spacing: 0px;
}


/* Imagen normal */

.instrumento img {
    transition:
        transform .45s ease,
        filter .45s ease;
}


/* Hover */

.instrumento:hover img {
    transform: scale(1.15);
    filter: grayscale(100%);
}



/* ==================================================
   TABLAS
================================================== */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
    border-collapse: collapse;
}
.table th,
.table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}
/* ==================================================
   TABLA CON BORDES
================================================== */
.table-bordered {
    border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}
/* ==================================================
   TABLA SIN BORDES
================================================== */
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
    border: 0;
}
/* ==================================================
   FILAS ALTERNADAS
================================================== */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}
/* ==================================================
   EFECTO HOVER
================================================== */
.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075);
}
/* ==================================================
   CABECERA OSCURA
================================================== */
.table-dark {
    color: #fff;
    background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #454d55;
}
/* ==================================================
   CABECERA JAGUMA
================================================== */
.table-jaguma thead {
    color: #000;
    background-color: #e4a72c;
}
.table-jaguma th {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.table-jaguma td {
    color: #aaa;
    font-size: 13px;
}
/* ==================================================
   TABLA RESPONSIVE
================================================== */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive > .table {
    margin-bottom: 0;
}