@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

body{
	margin:0;
	padding:0;
	overflow-x: hidden;
}

*{
	box-sizing: border-box;
	margin:0;
	padding:0;
	font-family: 'Oswald', sans-serif;
}

/*Header*/
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
    text-decoration: none;
    font-size: 1.5rem; 
    font-weight: bold;
    color: #000; 
}
.logo-title {
    height: 4rem;
    width: 4rem;
}
@media (max-width: 991px) {
	.logo-title {
		height: 3rem;
		width: 3rem;
	}
	.logo-container {
		display: flex;
		align-items: center;
		gap: 0.5rem; 
		text-decoration: none;
		font-size: 1rem; 
		font-weight: bold;
		color: #000; 
	}
}
header{
	position:fixed;
	left: 0px;
	top:0px;
	width: 100%;
	z-index: 10;
	background-color: #000000;
	padding:15px 15px;
}
header .container{
	-webkit-display: flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo a{
	font-size: 30px;
	text-decoration: none;
	color:#ffffff;
	font-weight: 700;
}
header .logo a span{
	color:#c11325;
}


header .nav{
	position: fixed;
	background-color: #c11325;
	width: 280px;
	top:0;
	right:0;
	height: 100%;
	z-index: 99;
	padding:100px 0px 15px; 
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}
header .nav.open{
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
header .nav ul{
	list-style: none;
	margin:0;
	padding:0px;
}
header .nav ul li{
display: block;
}
header .nav ul li a{
	text-decoration: none;
	font-size: 30px;
	font-weight: 400;
    color:#ffffff;
    display: block;
    position: relative;
    padding:10px 30px;
}
header .nav ul li a.active::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:100%;
	background-color:#000000;
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:0px;
	background-color:#000000;
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a:hover::before{
	width: 100%;
}


header .ham-burger{
	display: inline-block;
	position: relative;
	z-index: 100;
}
header .ham-burger span{
	height: 3px;
	margin-bottom:8px;
	display: block;
	background-color:#ffffff;
	width:30px;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
header .ham-burger span:nth-child(1){
	transform-origin: left top;
}
header .ham-burger span:nth-child(2){
	transform-origin: left bottom;
}

header .ham-burger.active span:nth-child(1){
	-webkit-transform: rotate(45deg) translateY(-6px);
	transform: rotate(45deg) translateY(-6px);
}
header .ham-burger.active span:nth-child(2){
	-webkit-transform: rotate(-45deg) translateY(6px);
	transform: rotate(-45deg) translateY(6px)
}

.container{
	max-width: 1170px;
	margin: auto;
}

.label-company{
	font-size: 7rem;
}
.logo-cronogrma{
	color: #c11325;
}

.label-star{
	font-size: 5rem;
	text-align: center;
	margin-bottom: 2rem;
	font-weight: bold;
	font-family: 'Oswald', sans-serif;
}

@media (max-width: 991px) {
	.label-star, .label-company{
		font-size: 3rem;
	}
	
}
/*Home section*/
.home {
    height: 100vh;
    background-image: url('../images/banners/banner-top.webp');
    background-size: cover;
    background-position: -5rem center;
    padding: 15px;
    display: flex;
    position: relative;
    z-index: 1; 
}

@media (max-width: 768px) { 
    .home::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9); 
        z-index: 0; 
    }

    .home h1 {
        position: relative; 
        z-index: 2;
        font-size: 2rem;
    }

    .home .label-content h1 {
        font-size: 1rem !important;
    }
}




.home .go-down{
  position: absolute;
  bottom: 90px;
  width: 26px;
  height:40px;
  border:1px solid #ffffff;
  display: block;
  border-radius:4px;
  text-align: center;
  left:50%;
  margin-left: -13px;
}
.home .go-down .fa{
	color:#ffffff;
	-webkit-animation: goDown 1s ease infinite;
	animation: goDown 1s ease infinite;
}
@-webkit-keyframes goDown{
	0%{transform: translateY(0);opacity:.5}
	100%{transform: translateY(10px);}
}
@keyframes goDown{
	0%{transform: translateY(0);opacity:.5}
	100%{transform: translateY(10px);}
}
.home .container{
  -webkit-display: flex;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home h1{
	color:#ffffff;
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin:0;
}

.home h1 span{
	color:#c11325;;
}


/*About section*/

.about{
	padding:80px 0px;
	background-color:#ffffff;
}

.about .content{ 
 -webkit-display: flex;
 display: flex;
}
.about .content .box{
	flex:0 0 33.33%;
	max-width: 33.33%;
	padding:15px;
}
.about .content .box .inner{
	background-color:#222222;
}
.about .content .box:nth-child(2) .inner{
	background-color: #c11325;
}
.about .content .box .inner .img img{
	width: 100%;
}
.about .content .box .inner .text{
	padding:30px;
}

.about .content .box .inner .text h4{
  font-size: 20px;
  margin:0;
  padding: 0px 0px 15px;
  font-weight: 500;
  color:#ffffff;
 text-transform: capitalize;
  text-align: center;
}
.about .content .box .inner .text p{
	font-size: 15px;
	line-height:20px;
	color:#ffffff;
	text-align: center;
	margin:0;
	font-family: 'Open Sans', sans-serif;
}


/*Somos Section*/
.somos{
	padding:80px 0px;
	background-color: #c11325;
}

.somos .content{
	-webkit-display:flex;
	display:flex;
}

.somos .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:15px;
}

.somos .content .text h2{
	font-size: 30px;
	font-weight: 500;
	color:#ffffff;
	padding:0px 0px 20px;
}

.somos .content .text p{
    font-size: 15px;
	line-height:20px;
	color:#ffffff;
	margin:0;
	padding:0px 0px 20px;
	font-family: 'Open Sans', sans-serif;
}

.somos .content .text .btn{
	padding:8px 30px;
	background-color: #222222;
	color:#ffffff;
	text-decoration: none;
	display: inline-block;
	border:1px solid transparent;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.somos .content .text .btn:hover{
	border:1px solid #ffffff;
	color:#ffffff;
	background-color: transparent;
}
.somos .content .accordian-container{
	margin-bottom: 5px;
}
.somos .content .accordian-container .head{
	background-color:rgba(0,0,0,0.2);
	position: relative;
	padding:12px 15px;
	cursor: pointer;
}
.somos .content .accordian-container .head .fa{
	position: absolute;
	right: 10px;
	top:13px;
	color:#ffffff;
	height:30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	color:#ffffff;
	border-radius: 50%;
}
.somos .content .accordian-container .head h4{
  font-size: 20px;
  margin:0;
  padding:0;
  font-weight: 500;
  color: #c11325;
  text-transform: capitalize;
}
.somos .content .accordian-container.active .head{
  background-color: #222222;	
}
.somos .content .accordian-container .body{
	display: none;
	padding:15px;
	background-color: #222222;
	border-top:1px solid #333333;
}

.somos .content .accordian-container:nth-child(1) .body{
	display: block;
}
.somos .content .accordian-container .body p{
    font-size: 15px;
	line-height:20px;
	color:#ffffff;
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;	
}
.label-places{
	color: #fff;
}

/*Classes Section*/

.classes{
	padding:80px 0px 50px;
	background-color: #ffffff;
}

.classes .content{
	-webkit-display: flex;
	display: flex;
}

.classes .content .box{
	padding:15px;
	flex:0 0 50%;
	max-width: 50%;
}

.classes .content .img img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.classes .content .text h2{
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0px 0px 20px;
}

.classes .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: #000000;
    margin: 0;
    padding: 0px 0px 30px;
    font-family: 'Open Sans', sans-serif;
}


.classes .content .class-items .item{
	margin-bottom: 30px;
	display: flex;
}
.classes .content .class-items .item:nth-child(1){
 background-color: #222222;
}
.classes .content .class-items .item:nth-child(2){
 background-color: #c11325;
}
.classes .content .class-items .item .item-text{
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.classes .content .class-items .item .item-text,
.classes .content .class-items .item .item-img{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
}

.classes .content .class-items .item .item-img img{
 width: 100%;
 display: block;
}
.classes .content .class-items .item .item-img .modalidades{
	position: absolute;
	height: 50px;
	width: 90px;
	font-size:20px;
	font-weight: 500; 
	color:#ffffff;
	text-align: center;
	line-height: 50px;
}
.classes .content .class-items .item:nth-child(1) .item-img .modalidades{
 background-color: #c11325;
 left:0;
 top:0;
}
.classes .content .class-items .item:nth-child(2) .item-img .modalidades{
 background-color: #222222;
 right:0;
 top:0;
}
.classes .content .class-items .item .item-text h4{
	font-size: 20px;
    margin: 0;
    padding: 0px 0px 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
    text-align: left;
}

.classes .content .class-items .item .item-text p{
	font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    text-align:left;
    margin: 0;
    padding:0 0 20px;
    font-family: 'Open Sans', sans-serif;
}
.classes .content .class-items .item .item-text a{
 font-size: 16px;
 text-decoration: none;
 display: inline-block;
}

.classes .content .class-items .item .item-text a{
	color:#ffffff;
}


/*Start Today Section*/
.start-today {
	background-color: #222222;
}

.start-today-secund {
	background-color: #c11325;
}

/* Estilos compartilhados para .start-today e .start-today-secund */
.start-today .content,
.start-today-secund .content {
	-webkit-display: flex;
	display: flex;
	align-items: center;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.start-today .content .box,
.start-today-secund .content .box {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0px 15px;
}

.start-today .content .img img,
.start-today-secund .content .img img {
	width: 100%;
	display: block;
}

.start-today .content .text h2,
.start-today-secund .content .text h2 {
	font-size: 30px;
	font-weight: 500;
	color: #ffffff;
	padding: 0px 0px 20px;
}

.start-today .content .text p,
.start-today-secund .content .text p {
	font-size: 15px;
	line-height: 20px;
	color: #ffffff;
	margin: 0;
	padding: 0px 0px 20px;
	font-family: 'Open Sans', sans-serif;
}

.start-today .content .text .btn,
.gallery .btn,
.contact .content .btn  {
	padding: 8px 30px;
	background-color: #c11325;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}


.start-today-secund .content .text .btn {
	background-color: #222222;
	padding: 8px 30px;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	border: 1px solid transparent;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.start-today .content .text .btn:hover,
.start-today-secund .content .text .btn:hover,
.gallery .btn:hover,
.contact .content .btn:hover	 {
	color: #ffffff;
	border-color: #ffffff;
	background-color: transparent;
}

/* Sugestão - Seção */
.great-started {
    padding: 10px 5%; /* Usando percentual para melhor responsividade */
}

.great-started .content-sujestao {
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
}

.great-started .great-started-text {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.great-started .great-started-text h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #222222;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.great-started .great-started-text {
    background-color: #c11325;
    color: white;
    text-align: center;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
}

.great-started .great-started-text .title-p {
    font-size: 1rem;
    line-height: 1.5;
    color: #222222;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

#whatsapp-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
}

.form-label {
    font-weight: bold;
    color: #222222;
}

.form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #c11325;
    padding: 10px;
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: none;
    border: 2px solid #6EACDA;
}

/* Estilização do botão */
.great-started .great-started-text .package-btn {
    padding: 10px 30px;
    background-color: #c11325;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.5s ease;
    font-size: 1.2rem;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}

.great-started .great-started-text .package-btn:hover,
.btn-primary:hover {
    border: 1px solid black;
    color: black;
    background-color: transparent;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .great-started {
        padding: 30px 3%; 
    }
    .great-started .content-sujestao {
        padding: 30px;
    }
    .great-started .great-started-text h2 {
        font-size: 1.5rem; 
        margin-bottom: 15px;
    }
    .great-started .great-started-text .title-p {
        font-size: 0.9rem; 
    }
    .great-started .great-started-text .package-btn {
        padding: 10px 20px; 
    }
}


/*Class Schedule Section*/
.schedule{
	padding:0px 0px;
}

.schedule .content{
	-webkit-display: flex;
	display: flex;
}

.schedule .content .box{
	flex:0 0 50%;
	max-width: 100%;
	padding:15px;
	margin-top: 1.5rem;
}

.schedule .content .text h2{
   font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0px 0px 20px;
}

.schedule .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: #222222;
    margin: 0;
    padding: 0px 0px 20px;
    font-family: 'Open Sans', sans-serif;
}
.schedule .content .text img{
	width: 100%;
	transform: rotateY(180deg);
}

.schedule .content .timing .table{
	width: 100%;
	border-collapse: collapse;
}

.schedule .content .timing .table td{
	border:1px solid #dfdfdf;
	padding: 8px;
	font-size: 15px;
	text-align: center;
	color:#222222;
}

.schedule .content .timing .table tr:nth-child(even) td.day{
	background-color: #222222;
}
.schedule .content .timing .table tr:nth-child(odd) td.day{
	background-color: #444444;
}
.schedule .content .timing .table tr:nth-child(1) td.day{
	background-color: #c11325;
}
.schedule .content .timing .table tr td.day{
	color:#ffffff;
	border-color:transparent;
}

/*Gallery Section*/
.gallery .content{
	-webkit-display: flex;
	display: flex;
	flex-wrap: wrap;
}

.gallery .content .box{
	flex:0 0 50%;
	max-width: 50%;	
}
@keyframes hoverEffect {
    0%, 100% {
        filter: grayscale(100%);
    }
    50% {
        filter: grayscale(0%);
    }
}
.gallery .content .box img {
    display: block;
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    animation: hoverEffect 3s infinite ease-in-out;
}
.gallery .content .box img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    animation: none; 
}
.gallery h2{
	font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0px 0px 20px;
    text-align: center;
}

/*Modalidades Section*/
.label-schedule-cronograma, .between-sessions{
	background-color: #222222;
	color: #ffffff;
	text-align: center;
}
.cronograma-modalidades{
	background-color: #c11325;
	text-align: center;
	font-size: 2rem;
	color: white;
}
.modalidades-package{
	background-color: #ffffff;
}
.modalidades-package h2{
	font-size: 30px;
	font-weight: 500;
	color:#000000;
	padding: 0px 0px 20px;
	text-align: center;
}
.modalidades-package .title-p{
 font-size: 15px;
 line-height: 20px;
 color:#222222;
 margin:0;
 text-align: center;
 padding:0 0% 5px;
 font-family: 'Open-sans', sans-serif;
}
.modalidades-package .content{
	-webkit-display: flex;
	display: flex;
}
.modalidades-package .content .box{
	flex:0 0 33.33%;
	max-width: 33.33%;
	padding: 15px;
}
.modalidades-package .content .box .inner{
	background-color: #f0f0f0;
}
.modalidades-package .content .box .inner .modalidades-tag{
	padding: 15px;
	font-size: 20px;
	background-color: #c11325;
	color:#ffffff;
	text-align: center;
	font-weight: 700;
}
.modalidades-package .content .box .inner .text{
	padding:30px 15px;
	text-align: center;
}
.modalidades-package .content .box .inner .text h3{
	font-size: 24px;
	color:#222222;
	margin:0;
	padding:0px 0px 20px;
	font-weight: 700;
}
.modalidades-package .content .box .inner .text p{
 font-size: 15px;
 line-height: 20px;
 color:#222222;
 margin:0;
 text-align: center;
 padding:0 0 5px;
 font-family: 'Open-sans', sans-serif;	
}
.modalidades-package .content .box .inner .text .btn, .btn-primary{
    padding: 8px 30px;
    background-color: #c11325;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    margin-top: 10px;
}
.modalidades-package .content .box .inner .text .btn:hover{
	border-color:#222222;
	color:#222222;
	background-color: transparent;
}
.modalidades-package .content .box .inner .img img{
	width: 100%;
}

/*Contact Section*/

.contact{
	padding:80px 0px;
	background-color: #222222;
}

.contact .content{
	-webkit-display: flex;
	display: flex;
}

.contact .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding: 15px;
}

.contact .content .form input,
.contact .content .form textarea{
 height: 45px;
 width: 100%;
 padding:6px 12px;
 margin-bottom: 25px;
 background-color: transparent;
 border:1px solid #ffffff;
 font-family: 'Open-sans',sans-serif;
 color:#ffffff;
}
.contact .content .form input:focus,
.contact .content .form textarea:focus{
 outline: none;
}
.contact .content .form input::placeholder,
.contact .content .form textarea::placeholder{
	color:#ffffff;
}
.contact .content .form textarea{
	height: 100px;
}

.contact .content .form button{
	border:none;
	outline: none;
	box-shadow: none;
	height: 45px;
	padding:0px 50px;
	border:1px solid transparent;
	background-color: #c11325;
	color:#ffffff;
	font-size: 15px;
	transition: all .5s ease;
	cursor: pointer;
}
.contact .content .form button:hover{
	background-color:transparent;
	color:#ffffff; 
    border-color:#ffffff;
}

.contact .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: #c11325;
    padding: 0px 0px 20px;
}
.contact .content .text p{
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 30px;
    font-family: 'Open-sans', sans-serif;
}

.contact .content .text .info ul{
	list-style: none;
	padding:0;
	margin:0;
}

.contact .content .text .info li{
	display: block;
	margin-bottom: 15px;
	color:#ffffff;
	font-size: 15px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 40px;
	font-family: 'Open-Sans',sans-serif;
}
.contact .content .text .info li span{
	display: inline-block;
	position: absolute;
	left:0px;
	top:0px;
	font-size: 20px;
	color:#c11325;
}
.contact .content .text .social {
	padding-top: 30px;
}
.contact .content .text .social a{
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #c11325;
    text-decoration: none;	
    display: inline-block;
    margin-right: 10px;
    transition: all .5s ease;
    border:1px solid transparent;
} 

.contact .content .text .social a:hover{
	background-color: transparent;
    border-color: #ffffff;
}

.contact .content .text .social a span{
	color:#ffffff;
	font-size: 20px;
}

.contact .content .text .copy{
	border-top:1px solid #333333;
	margin-top: 30px;
	padding-top: 20px;
	color:#c5c5c5;
	font-size: 15px;
}




/*Responsive*/

/*if screen width is less than or equal to 991px then*/
@media(max-width: 991px){
   .home{
   	background-position: center;
   }
  .classes .content{
  	flex-wrap: wrap;
  }
 .classes .content .box {
    flex: 0 0 100%;
    max-width: 100%;
	}
	.classes .content .img{
		display: none;
	}
	.start-today .content .box,
	.start-today-secund .content .box{
		padding:15px;
	}
}

/*if screen width is less than or equal to 767px then*/
@media(max-width: 767px){
	.home h1{
		font-size: 40px;
	}
	.about .content{
		flex-wrap: wrap;
	}
  	.about .content .box {
    flex: 0 0 100%;
    max-width: 100%;
	}
	.somos .content{
		flex-wrap: wrap;
	}
	.somos .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.classes .content .class-items .item{
		flex-wrap: wrap;
	}
	.classes .content .class-items .item .item-text, 
	.classes .content .class-items .item .item-img {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.schedule .content {
		flex-wrap: wrap;
	}
	.schedule .content .box {
	flex: 0 0 100%;
		max-width: 100%;	
	}
	.start-today .content,
	.start-today-secund .content {
		flex-wrap: wrap;
	}
	.start-today .content .box,
	.start-today-secund .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.gallery .content{
	flex-wrap: wrap;
	}
	.gallery .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.modalidades-package .content{
		flex-wrap: wrap;
	}
	.modalidades-package .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.contact .content{
		flex-wrap: wrap;
	}
	.contact .content .box {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*if screen width is less than or equal to 550px then*/
@media(max-width: 550px){
  .home h1{
      font-size: 30px;
  }
}

.fa-map{
	margin-left: 1rem;
}

/*START WHATSAPP*/
.whatsapp {
    scale: 0.3;
    bottom: 30px;
    color: #fff;
    float: right;
    height: 100px;
    position: fixed;
    right: 70px;
    width: 40px;
    z-index: 9;
}
.whatsapp:hover {
    -webkit-transition: .5s;
    transition: .5s;
}
@keyframes vibrate {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(5px); }
}
.whatsapp-icon-view .whatsapp {
    animation: vibrate 0.6s ease-in-out 0s infinite;
    animation-delay: 4s; 
}
/*END WHATSAPP*/

/*START ICON SIDE BAR*/
.icon {
    font-size: 2rem; 
    margin-left: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
}

.icon-whatsapp {
    background: #25d366;
}

.icon-instagram {
    background: linear-gradient(45deg, #fccc63, #bc1888, #405de6);
}

.icon-phone {
    background: #007bff;
}

.icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}
/*END ICON SIDE BAR*/

/* START BANNER */
.banner-first {
    height: 25.5rem;
    width: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .banner-first {
        height: 22rem;
    }
}

@media (max-width: 768px) {
    .banner-first {
        height: 18rem;
    }
}

@media (max-width: 480px) {
    .banner-first {
        height: 14rem;
    }
}
/* END BANNER */

/* START BTN CARD */
.alert-btn-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none; 
    z-index: 1000;
}
.btn-card, .btn-card-first {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 2px solid #c11325;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    background-color: #222222;
    cursor: pointer;
	animation: pulse 1.5s infinite ease-in-out;
}
.btn-card:hover {
    background: transparent;
    color: #000;
    border-color: #222222;
}
.btn-card-first:hover {
    background: transparent;
    color: #000;
    border-color: #c11325;
}
.btn-card:active, .btn-card-first:active {
    opacity: 0.1;
}
.btn-card-first {
    background-color: #c11325;
}
@media (max-width: 768px) {
    .btn-card:hover, .btn-card-first:hover {
        background: #222222 !important; 
        color: #fff !important;
        border-color: #c11325 !important;
    }
	.label-sujestao {
		font-size: 1.5rem !important;
	}
}
.label-sujestao {
    background-color: #c11325;
    color: #f6f6f6;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-size: 3rem;
}
/* END BTN CARD */

/* START WOMAN */
.woman-schedule {
    max-width: 70%;
    height: 45rem;
    display: block;
    margin: 0 auto; 
}

@media (min-width: 1024px) {
	.start-today .content .img img {
		height: 30rem; 
		width: 30rem; 
	}
	.woman-schedule {
		display: block !important;
	}
}
/* END WOMAN */

/* START ALERT ICON  */
.title-fild {
    display: flex;
    align-items: center;
    gap: 10px; 
}
.highlight-text {
    color: #222222;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* END ALERT ICON  */

/* START LOGO TEAM BONDADE */
.logo-about {
    width: 5rem; 
    height: auto;
    position: relative;
    top: -0.7rem;
    animation: pulse 1.5s infinite ease-in-out;
}
/* END LOGO TEAM BONDADE */

.image-mosaico {
	height: 15rem; 
	width: 30rem; 
}
.image-mosaico-I {
	height: 15rem; 
	width: 30rem;
}

/* STAT SCROLLBAR */
::-webkit-scrollbar {
    width: 13px;
}
::-webkit-scrollbar-track {
    background-color: #111;
}
::-webkit-scrollbar-thumb {
    background-color: #c11325;
    border-radius: 13px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #ffffff; 
}
/* END SCROLLBAR */

/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */
/* //////////////////// */

.custom-nav-btn {
	color: #c11325;
	background-color: rgba(193, 19, 37, 0.1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
  
.custom-nav-btn::after {
	font-size: 18px;
	font-weight: bold;
}

.custom-nav-btn:hover {
	background-color: #c11325;
	color: #fff;
	transform: scale(1.1);
}

.product-card .price {
	display: block;
	font-weight: bold;
	color: #c11325;
	font-size: 1.2rem;
	margin-top: 0.3rem; 
	margin-bottom: 0.8rem; 
}

.btn-buy {
	display: inline-block;
	background-color: #c11325;
	color: #fff;
	font-weight: bold;
	padding: 0.6rem 1.2rem;
	font-size: 1rem;
	border: none;
	border-radius: 0.5rem;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 8px rgba(193, 19, 37, 0.2);
	width: 50%;
	margin-top: 0.8rem;
}

.btn-buy:hover {
	background-color: #a50f1e;
	transform: translateY(-2px);
}

.swiper-pagination-bullet {
	background-color: #000000;	
	opacity: 0.4;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background-color: #000;
	opacity: 1;
	transform: scale(1.3);
}

/* /// Diminuir quando for MOBILE /// */
@media (max-width: 768px) {
	.custom-nav-btn {
		width: 30px;
		height: 30px;
	}

	.custom-nav-btn::after {
		font-size: 14px;
	}
}

/* /// Descktop /// */
.swiper-button-prev.custom-nav-btn {
	left: 15px;
	transform: translateY(-1rem);
  }
  
  .swiper-button-next.custom-nav-btn {
	right: 70px;
	transform: translateY(-1rem);
  }

  /* /// Mobile /// */
  @media (max-width: 768px) {
	.swiper-button-prev.custom-nav-btn {
	  	left: 8px;
		transform: translateY(-5rem);
	}
  
	.swiper-button-next.custom-nav-btn {
	  	right: 35px;
		transform: translateY(-5rem);
	}
  }

/* ///////// START Swiper PRODUTOS /////////// */
.slider-btn {
	color: #c11325;
	background-color: rgba(193, 19, 37, 0.1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
  }
  
  .slider-btn::after {
	font-size: 18px;
	font-weight: bold;
  }
  
  .slider-btn:hover {
	background-color: #c11325;
	color: #fff;
  }
  
  .slider-btn-prev {
	left: 10px !important;
  }
  
  .slider-btn-next {
	right: 55px !important;
  }
  
  .slider-dots {
	transform: translateX(-1rem) !important;
  }
  
  @media (max-width: 768px) {
	.slider-dots {
	  transform: translateX(0);
	}
  
	.slider-btn-prev {
	  left: 10px !important;
	}
  
	.slider-btn-next {
	  right: 40px !important;
	}
  }
/* ///////// START Swiper PRODUTOS /////////// */

/* ///////// End Swiper Testeminal /////////// */


/* ///////// Start Copy /////////// */
.copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
	gap: 1rem;
	color: #fff; /* Ajuste conforme seu tema */
  }
  
  .copy p {
	margin: 0;
	font-size: 1rem;
  }
  
  .dev-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
  }
  
  .dev-text {
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
  }
  
  .image-solunova {
	width: 10rem;
	max-width: 100%;
	height: auto;
  }
  
  /* Responsivo para telas maiores */
  @media (min-width: 600px) {
	.copy {
	  flex-direction: row;
	  justify-content: space-between;
	  align-items: center;
	  text-align: left;
	}
  
	.dev-info {
	  align-items: center;
	  text-align: center;
	}
  }
/* ///////// End Copy /////////// */
