
/* Carousel base class */
.carousel {
    height: 350px;
    margin-top: 0px;
    background-color: transparent;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    z-index: 10;
    /*background-color: #E45F17;*/
    opacity:0.90;
    -moz-opacity: 0.90;
    filter: alpha(opacity=0);
    line-height: 40px;
    margin: 15px 0 30px;
    /*sombra no box*/
    box-shadow: 5px 8px 18px -4px rgba(0,0,0,0.44);
}

/* Bump up size of carousel content */
.carousel-caption  p {
    margin-bottom: 20px;
    font-size: 1.5em;
    line-height: 1.1;
}

.carousel-caption  h1 {
    font-size: 2em;
    line-height: 1.1;
}

/* Declare heights because of positioning of img element */
.carousel .item {
    margin: 0px;
    height: 350px;
    /*background-color: #F14E3F;*/
    /*background-color: transparent;*/
    /*background-image: url('../img/bc_colorido.png');*/
}
.carousel-inner > .item > img {
    position: relative;
    margin: auto;
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);

}



/* RESPONSIVE CSS
-------------------------------------------------- */


@media (min-width: 768px) { 

    /* Bump up size of carousel content */
    .carousel-caption  p {
        margin-bottom: 20px;
        font-size: 2em;
        line-height: 1.4;
    }

    .carousel-caption  h1 {
        font-size: 3em;
        line-height: 1.4;
    }


}