/*!
* COCKTAIL CHANNEL - DESIGN LAYOUT
*/

html, body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    color: #777;
    padding-top: 175px;
}

a,
.page-link {
    color: #333;

    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

a:hover,
.page-link:hover {
    color: #fe4c79;
    text-decoration: none;
}

::-moz-selection {
    background: #fe4c79;
    color: white;
    text-shadow: none;
}

::selection {
    background: #fe4c79;
    color: white;
    text-shadow: none;
}

img::-moz-selection {
    background: transparent;
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}



/* General **********************************************************************************************************************************************/
.container, .container-lg, 
.container-md, .container-sm, .container-xl {
    max-width: 96%;
}

@media (min-width: 1400px) {
    .container, .container-lg, 
    .container-md, .container-sm, .container-xl {
        max-width: 85%;
    }
}

@media (min-width: 768px) {
    .h-140 {
        height: 140px;
    }
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

blockquote,
blockquote .fas {
    font-style: italic;
}

blockquote.lg {
    font-size: 1.75rem;
}

@media (min-width: 992px) {
    .divisor.right {
        border: none;
        border-right: 2px solid #333;
    }
}

.embed-responsive-16by9::before {
    padding-top: 58.25%;
}



/* Backgrounds ******************************************************************************************************************************************/
.bg-dark {
    background: #333333 !important;
}

.bg-light {
    background: #c8c8c8 !important;
}

.bg-lighter {
    background: #e3e3e3;
}

.bg-primary {
    background: #ff547b !important;
}

.bg-secondary {
    background: #c4302b !important;
}

.bg-dark h1, .bg-secondary h1,
.bg-dark h2, .bg-secondary h2,
.bg-dark h3, .bg-secondary h3,
.bg-dark h4, .bg-secondary h4,
.bg-dark h5, .bg-secondary h5,
.bg-dark h6, .bg-secondary h6 {
    color: white;
}



/* Tipography *******************************************************************************************************************************************/
p {
    margin: 0;
}

p + p {
    margin-top: 1em;
}

.text-primary {
    color: #fe4c79 !important;
}

a.text-primary:focus, a.text-primary:hover {
    color: #d44366 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
}

.highlight-flag {
    background: url(../img/img-arrow-pink.png) no-repeat bottom right;
    background-size: 48px;
    font-family: 'Chelsea Market', cursive;
    color: #fe4c79;
    font-size: 1rem;
}

.highlight-flag.sm {
    background: url(../img/img-arrow-pink-sm.png) no-repeat bottom right;
    background-size: 40px;
    font-size: .8rem;
    width: 6.25rem;
}

.highlight-flag.bg {
    background: url(../img/img-arrow-pink-bg.png) no-repeat bottom right;
    background-size: 114px;
    font-size: 2rem;
    width: 15rem;
}

.highlight-flag.up {
    background-position: top right;
    padding-right: 1.75rem;
}

.highlight-flag.down {
    background: url(../img/img-arrow-pink-down.png) no-repeat bottom right;
    background-position: 10.5rem 1rem;
}

@media (max-width: 1200px) {
    .highlight-flag.bg {
        background-size: 90px;
    }
}



/* Buttons *******************************************************************************************************************************************/
.btn {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    transition: all .2s ease-in-out;
}

.btn:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.btn[href]:active, .btn[href]:focus, .btn[href]:hover, 
.btn[type]:active, .btn[type]:focus, .btn[type]:hover {
    -webkit-box-shadow: 0 2rem 1.5rem -1.5rem rgba(33,37,41,0.15), 0 0 1.5rem 0.5rem rgba(33,37,41,0.05);
    box-shadow: 0 2rem 1.5rem -1.5rem rgba(33,37,41,0.15), 0 0 1.5rem 0.5rem rgba(33,37,41,0.05);
}

.btn-lg {
    padding: 1rem 2rem;
}


/* Button Primary */
.btn-primary {
    background-color: #fe4c79;
    border-color: #fe4c79;
}

.btn-primary.btn-light:active, .btn-primary.btn-light:focus, .btn-primary.btn-light:hover,
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    background-color: #ef3262;
    border-color: #ef3262;
    color: white;
}

.btn-outline-primary {
    color: #fe4c79;
    border-color: #fe4c79;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #fe4c79;
    border-color: #fe4c79;
}


/* Button Secondary */
.btn-secondary {
    background-color: #d0332e;
    border-color: #d0332e;
}

.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
    background-color: #c4302b;
    border-color: #c4302b;
    color: white;
}


/* Button Link */
.btn-link {
    color: #fe4c79;
    text-decoration: underline;
}

.btn-link:hover {
    color: #ef3262;
    -webkit-transform: none;
    transform: none;
}

.btn-link[href]:active, .btn-link[href]:focus, .btn-link[href]:hover, 
.btn-link[type]:active, .btn-link[type]:focus, .btn-link[type]:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-link.btn-lg {
    font-size: 1.5rem;
}


/* Button Light */
.btn-light {
    background-color: white;
    border-color: white;
}

.btn-light:active, .btn-light:focus, .btn-light:hover {
    background-color: #222222;
    border-color: #222222;
    color: white;
}


/* Button Dark */
.btn-dark {
    background-color: #333333;
    border-color: #333333;
}

.btn-dark:active, .btn-dark:focus, .btn-dark:hover {
    background-color: #222222;
    border-color: #222222;
    color: white;
}

.btn-outline-dark {
    color: #333333;
    border-color: #333333;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #333333;
    border-color: #333333;
}



/* Forms *******************************************************************************************************************************************/
.form-control {
    color: #777;
    border: none;
    border-bottom: 2px solid #333;

    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.form-control:focus {
    border-color: #fe4c79;

    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control-lg {
    height: calc(2em + 1.5rem);
    padding: 1rem 2rem;
}

label {
    color: #333;
}



/* Navigation ******************************************************************************************************************************************/
.navbar .navbar-brand img {
    height: 135px;
    width: 135px;
    margin: 0 1rem;
}

@media (max-width: 1200px) {
    .navbar .navbar-brand img {
        height: 75px;
        width: 75px;
        margin: 0;

        -o-object-fit: contain;
        object-fit: contain;
    }
}

.navbar .navbar-nav .nav-link {
    color: #333;
    text-transform: uppercase;
    font-size: .9rem;
    white-space: nowrap;
    padding-right: .5rem;
    padding-left: .5rem;
}

.navbar .navbar-nav .nav-link[data-toggle="modal"] {
    cursor: pointer;
}

.navbar .navbar-nav .social-links .nav-link:hover,
.navbar .navbar-nav .nav-link:hover {
    color: #fe4c79;
}

.navbar .navbar-nav .social-links .nav-link {
    color: #777;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar .navbar-nav .social-links .nav-link + .nav-link {
    border-left: 1px solid #777;
}

.navbar .navbar-nav .social-links .nav-link {
    padding-right: .75rem;
    padding-left: .75rem;
}

.navbar-toggler {
    height: 40px;
    width: 56px;

    border-radius: 0;
}

.navbar-toggler[aria-expanded="true"], 
.navbar-toggler:hover {
    background-color: #fe4c79;
    color: white;
}

.navbar-toggler:focus {
    outline: 0;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .navbar .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 992px) {
    .navbar .navbar-nav .nav-search,
    .navbar .navbar-nav .fas {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar .navbar-nav .social-links {
        margin-left: -.75rem;
    }
}


/* Navbar Expand */
@media (max-width: 1200px) and (min-width: 992px) {
    .navbar.navbar-expand-lg .navbar-brand img {
        height: 105px;
        width: 105px;
    }
}


/* Navbar Search - Modal */
.search .modal-dialog {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    margin: 0;
}

.search .modal-header {
    position: relative;
    min-height: 6.25rem;
    padding: 0.9375rem 1.875rem;
    border: 0;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search .modal-content {
    border: none;

    border-radius: 0;
}

.search .form-control {
    height: auto;
    margin-right: 2.5rem;
    padding: 0;
    line-height: 1.875rem;
    border: 0;
    font-size: 1rem;
}

.search .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}



/* Footer ******************************************************************************************************************************************/
footer .container {
    position: relative;
}

footer .container:before {
    content: "";
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
}

footer .footer-brand img {
    height: 150px;
    width: 150px;

    -o-object-fit: contain;
    object-fit: contain;
}

footer .social-icon a {
    color: #777;
}

footer .social-icon a .fab {
    font-size: 2.6rem;
}



/* Social Icons *******************************************************************************************************************************/
.social-icon a {
    color: #333;
}

.social-icon a .fab {
    font-size: 1.5rem;
}

.social-icon a:hover {
    color: #fe4c79;
}



/* Cards **************************************************************************************************************************************/
.card {
    background: none;
    border: none;

    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.card-img, 
.card-img-top {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;    
}

.card:hover .card-title a {
    color: #fe4c79;
}


/* Card Image */
.card .card-img {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.card .card-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;

    -o-object-fit: cover;
    object-fit: cover;
}

.card .card-img:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.card.equal-50 .card-img:before {
    padding-top: 50%;
}

.card.equal-75 .card-img:before {
    padding-top: 75%;
}

.card-img.card-img-bg {
    background-position: center;
    background-size: cover;
}

.card-image-stretched{
    max-height: 530px !important;
}


/* Card Scale */ 
.card-scale .card-img-bg,
.card-scale .card-img {
    overflow: hidden;
}

.card-scale .card-img-bg,
.card-scale .card-img img {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.card-scale:hover .card-img-bg,
.card-scale:hover .card-img img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}


/* Card Lift */
.card-lift img {
    -webkit-transition: box-shadow .25s ease,-webkit-transform .25s ease;
    transition: box-shadow .25s ease,-webkit-transform .25s ease;
    transition: box-shadow .25s ease,transform .25s ease;
    transition: box-shadow .25s ease,transform .25s ease,-webkit-transform .25s ease; 
}

.card-lift img:focus, .card-lift img:hover {
    -webkit-transform: translate3d(0,-3px,0);
    transform: translate3d(0,-3px,0);
    -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.card-lift .card-img {
    overflow: visible;
}


/* Card Horizontal */
.card-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-horizontal .card-img {
    max-width: 48%;
}

@media (max-width: 992px) {
   .card-horizontal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .card-horizontal .card-img {
        max-width: 100%;
    }
}


/* Card Odd */
.card-horizontal.card-odd .card-body {
    order: 2;
}

.card-horizontal.card-odd .card-img {
    order: 1;
}

@media (min-width: 992px) {
    .card-horizontal.card-odd:nth-child(2n+1) .card-body {
        order: 1;
    }

    .card-horizontal.card-odd:nth-child(2n+1) .card-img {
        order: 2;
    }
}


/* Card Fade */
.card-fade .card-img:after {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: rgba(0, 0, 0, 0.3);

    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

.card-fade:hover .card-img:after {
    opacity: 1;
}


/* Card Overlay */
.card-overlay {
    overflow: visible;
    position: relative;
}

.card-overlay .card-body {
    position: absolute;
    bottom: -2rem;
    right: 1rem;
    left: 1rem;
    padding: 4rem 1rem;
    background-color: white;
    max-width: 12rem;
    margin: 0 auto;
    height: 10rem;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-transition: 0.15s -webkit-box-shadow, 0.15s -webkit-transform;
    transition: 0.15s -webkit-box-shadow, 0.15s -webkit-transform;
    -o-transition: 0.15s box-shadow, 0.15s transform;
    transition: 0.15s box-shadow, 0.15s transform;
    transition: 0.15s box-shadow, 0.15s transform, 0.15s -webkit-box-shadow, 0.15s -webkit-transform;
    -webkit-box-shadow: 0 2rem 1.5rem -1.5rem rgba(33,37,41,0.15), 0 0 1.5rem 0.5rem rgba(33,37,41,0.05);
    box-shadow: 0 2rem 1.5rem -1.5rem rgba(33,37,41,0.15), 0 0 1.5rem 0.5rem rgba(33,37,41,0.05);
}

.card-overlay .card-body:before,
.card-overlay .card-body:after {
    content: "";
    width: 4rem;
    position: absolute;
    left: 50%;
    background-color: #333;

    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.card-overlay .card-body:before {
    top: 2rem;
    height: .15rem;
}

.card-overlay .card-body:after {
    bottom: 2rem;
    height: .1rem;
}

.card-overlay .card-title {
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    font-size: 1rem;
    position: relative;
}

.card-overlay .card-title a {
    color: #333;
    text-decoration: none;
}

.card-overlay:hover .card-title a {
    color: #fe4c79;
}

.card-overlay:hover .card-body {
    -webkit-transform: translateY(-0.25rem);
    -ms-transform: translateY(-0.25rem);
    transform: translateY(-0.25rem);
    -webkit-box-shadow: 0 2.25rem 1.5rem -1.5rem rgba(33,37,41,0.3),0 0 1.5rem 0.5rem rgba(33,37,41,0.05) !important;
    box-shadow: 0 2.25rem 1.5rem -1.5rem rgba(33,37,41,0.3),0 0 1.5rem 0.5rem rgba(33,37,41,0.05) !important;
}

.card-overlay:hover .card-body:before,
.card-overlay:hover .card-body:after {
    background: #fe4c79;
}

@media (max-width: 1200px) {
    .card-overlay .card-body {
        height: 150px;
    }
}

@media (max-width: 992px) {
    .card-overlay {
        margin-top: 3rem;
    }
}


/* Card Post */
.card-post {
    overflow: hidden;
}

.card-post .card-body {
    background-color: #777;
    position: relative;

    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.card-post .card-body * {
    color: white
}

.card-post .card-body h6 a {
    color: white;
    text-transform: uppercase;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-post:hover .card-body h6 a {
    color: white;
}

.card-post:hover .card-body {
    background-color: #333;
}


/* Card List */
.card-list .card[data-column="2"] {
    width: calc(100% / 2 - 1rem);
}

.card-list .card[data-column="3"] {
    width: calc(100% / 3 - 1rem);
}

.card-list .card[data-column="4"] {
    width: calc(100% / 4 - 1rem);
}

@media (max-width: 992px) {
    .card-list .card[data-column="4"] {
        width: calc(100% / 3 - 1rem);
    }
}

@media (max-width: 768px) {
    .card-list .card[data-column="2"] {
        width: 100%;
    }
    .card-list .card[data-column="3"] {
        width: calc(100% / 2 - .5rem);
    }
    .card-list .card[data-column="4"] {
        width: calc(100% / 2 - 1rem);
    }
}

@media (max-width: 580px) {
    .card-list .card[data-column="3"],
    .card-list .card[data-column="4"] {
        width: 100%;
    }
}



/* Sections ******************************************************************************************************************************************/
section {
    padding-top: 4rem;
}

@media (max-width: 992px) {
    section {
        padding-top: 3rem;
    }
}


/* Slider */
.carousel#carousel-hero img {
  display: block;
  height: 530px;
  width: 100%;

  -o-object-fit: cover;
  object-fit: cover;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
    background-color: #777777;
    width: 64px;
    height: 64px;
    background-size: 24px;

    border-radius: 50%;
}

@media (max-width: 768px) {
    .carousel#carousel-hero img {
        height: 350px;
    }

    .carousel-control-next-icon, 
    .carousel-control-prev-icon {
        width: 48px;
        height: 48px;
        background-size: 16px; 
    }   
}


/* Recipes */
section.recipes .card.equal-75 .card-img:before {
    padding-top: 77%;
}

section.recipes .highlight-flag {
    position: absolute;
    left: -7rem;
    bottom: 1rem;
}

@media (max-width: 1200px) {
    section.recipes .highlight-flag {
        left: 0;
        bottom: -2rem;
    }
}

@media (max-width: 992px) {
    section.recipes .highlight-flag {
        position: relative;
        bottom: 0;
        margin-bottom: 2rem;
    }
}



/* Results ***********************************************************************************************************************************/
.results-info {
    border-bottom: 2px solid #777;
}

.results-info label {
    background: #777;
    color: white;
    display: inline-block;
    text-transform: uppercase;
    padding: 1.75rem 1rem 1rem;
}



/* Details ***********************************************************************************************************************************/
/* Main image */
.detail .detail-image .card-overlay .card-body {
    font-family: 'Chelsea Market', cursive;
    max-width: 25rem;
    color: #333;
    font-size: 1.25em;
    padding: 1.75rem;
    height: auto;
}

.detail .detail-image .card-overlay .card-body:before,
.detail .detail-image .card-overlay .card-body:after {
    display: none;
}

.detail .detail-image .card-overlay .card-body li + li {
    border-top: 1px solid #777;
    padding-top: 12px;
    margin-top: 12px;
}

.detail .detail-image .card-overlay .card-body .rate {
    color: #ddd;
    font-size: 1rem;
}

.detail .detail-image .card-overlay:hover .card-body {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-shadow: 0 2rem 1.5rem -1.5rem rgba(33,37,41,0.15), 0 0 1.5rem 0.5rem rgba(33,37,41,0.05) !important;
    box-shadow: 0 2rem 1.5rem -1.5rem rgba(33,37,41,0.15), 0 0 1.5rem 0.5rem rgba(33,37,41,0.05) !important;
}

.detail .detail-image .card-overlay .card-body .rate.rate-1 .fas:nth-child(-n+1) {
    color: #fe4c79;
}

.detail .detail-image .card-overlay .card-body .rate.rate-2 .fas:nth-child(-n+2) {
    color: #fe4c79;
}

.detail .detail-image .card-overlay .card-body .rate.rate-3 .fas:nth-child(-n+3) {
    color: #fe4c79;
}

.detail .detail-image .card-overlay .card-body .rate.rate-4 .fas:nth-child(-n+4) {
    color: #fe4c79;
}

.detail .detail-image .card-overlay .card-body .rate.rate-5 .fas:nth-child(-n+5) {
    color: #fe4c79;
}

@media (max-width: 992px) {
    .detail .detail-image .card-overlay .card-body {
        font-size: .9rem;
    }
}



/* Highlight Text ******************************************************************************************************************************/
.detail .highlight-flag.up {
    font-size: 1.35rem;
    padding-right: 3rem;
    width: 12rem;
}

@media (max-width: 1200px) {
    .detail .highlight-flag.up {
        font-size: 1rem;
    }
}

@media (max-width: 580px) {
    .detail .highlight-flag.up {
        font-size: .8rem;
        background-size: 38px;
        padding-right: 2rem;
        width: 9rem;
    }
}



/* Banners ******************************************************************************************************************************/
@media (min-width: 1200px) {
    .detail .detail-banner {
        margin-top: -13rem;
    }
}

@media (min-width: 768px) {
    .detail .detail-banner {
        float: right;
    }
}


.centered {
    margin: 0 auto !important;
    float: none !important;
}

/* Formulário de Contato ******************************************************************************************************************************/

p.erroMessage {
    background-image: url(../img/contact/alert-icon.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    border-color: #FF2441;
    background-color: #FF2441;
}
p.erroMessage {
    clear: both;
    color: #FFF;
    min-height: 3em;
    margin: 0;
    padding: 10px 0px 0px 70px;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    background-image: url(../img/contact/alert-icon.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    border-color: #FF2441;
    background-color: #FF2441;
    line-height: 26px;
    font-weight: normal;
}
p.successMessage {
    clear: both;
    color: #FFF;
    min-height: 3em;
    margin: 0;
    padding: 10px 0px 0px 70px;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    background-image: url(../img/contact/success-icon.png);
    background-position: 10px center;
    background-repeat: no-repeat;
    border-color: #00E673;
    background-color: #00E673;
    line-height: 26px;
    font-weight: normal;
}