/********** Template CSS **********/
:root {
    /* --primary: #E88F2A; */
    --primary: #CA7180; 
    --secondary: #FAF3EB;
    --light: #FFFFFF;
    --dark: #2B2825;
}

.font-secondary {
    font-family: 'Pacifico', cursive;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}
.border-inner-dark::before { 
    border: 1px solid var(--primary); 
}

.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-cart{ 
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    margin-right: 10px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--dark);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #CA7180 !important;
    font-weight: 600;
    background-color: #fff;
}

.nav-pills{
    font-size: smaller;
}

.logo-nav{
    padding: 0 20px; 
    border: 1px solid var(--light);
    border-radius: 50px;
    margin: 10px 0 10px 10px;
}

.hero-header {
    background: url(../img/capa.png) top right no-repeat;
    background-size: cover;
    /* alinhar background ao bottom */
    background-position: center bottom;

}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-dialog-scrollable {
    height: calc(100% - 0rem) !important;
}

.modal-footer div{
    width: -webkit-fill-available;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    margin-left: -90px;
    background: var(--primary);
}

.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    /* background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/service.jpg) center center no-repeat; */
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/service.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact::after {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/offer.jpg) center center no-repeat;
    background-size: cover;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(43, 40, 37, .1)), url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.modal.right .modal-dialog {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}
.modal.right .modal-content {
    height: 100vh;
    border: 0;
}

td{
    text-align: center;
}

.qtd-produto{
    display: flex;
    justify-content: center;  
    margin-top: 5px;
    gap:2px;
}

.valor-un{ 
    font-weight: 600; 
    width: 100px;
}

.qtd-produto input{
    width: 50px;
    text-align: center;
}

.tab-content>.active {
    display: flex;
}

.fixed-size {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Ajusta a imagem para cobrir o contêiner mantendo a proporção */
}

.carousel-inner {
    width: 200px; /* Largura fixa para o contêiner do carrossel */
    height: 200px; /* Altura fixa para o contêiner do carrossel */
}

.btn-checkout { 
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s; 
    position: fixed;
    bottom: 10px;
    left: 5px;
    z-index: 99;
}

.btn-whatsapp { 
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s; 
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 99;
}

tbody tr td{
    border:none !important;
}

.btn-incrementar,
.btn-decrementar { 
    border: none;  
    font-size: 18px;
    transition: .5s;   
}

.input-quantidade{ 
    text-align: center; 
}

.btn-remover{  
    border-radius: 50%;
    font-size: 15px;
    transition: .5s;   
}

.text-shadow{
    text-shadow: 2px 2px 4px #000000;
}

.about-capa{
    object-position: right bottom;
    object-fit: cover; 
}

.table-text-right thead th, .table-text-right tbody td {
    text-align: left;
}

.inicio-menu{ 
    white-space: normal;
}

.tab-content{
    width: 100%;
}