/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #176704;
	--primary-light: #b75c31;
	--secondary: #b75c31;
	--tertiary: #b75c31;
	--gradient: linear-gradient(to right, #f57600, #f57e00);

}
/***************  CSS NOVO PARA O NAV BAR INICIO ********************/
/* Estilos básicos da navbar */
/* Estilos básicos da navbar */
/* Estilos básicos da navbar */
/* Estilos básicos da navbar */
.menu-hanburguer{

}
.navbar {
    background-color: #333;
    padding: 1rem;
}


/* Configuração para o botão de hamburguer */
.navbar-toggler {
    border: none;
    outline: none;
}

/* Offcanvas collapse para o menu */
.offcanvas-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50vw; /* Ajuste para abrir até metade da tela */
    max-width: 300px; /* Largura máxima para o menu lateral */
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5); /* Preto com 20% de transparência */

    z-index: 1045;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

/* Classe para exibir o menu */
.navbar-collapse.show {
    transform: translateX(50%); /* Ajuste para abrir apenas até metade */
}

/* Estilos dos links */
.nav-link {
    color: #fff;
    font-size: 3em;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ccc;
}

/* Ajustes de responsividade */
@media (max-width: 992px) {
    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding-top: 1rem;
    }

    .navbar-nav {
        width: 100%;
    }

    .nav-item {
        margin-bottom: 1rem;
    }
}

/* Estilos de overlay para fechar o menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 20vh;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 1040;
    display: none;
}

/* Exibe o overlay quando o menu está aberto */
.overlay.show {
    display: block;
}





/***************  CSS NOVO PARA O NAV BAR FIM ********************/




































h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: white !important;
	text-decoration: none !important;
}

li {
  	list-style-type: none;
}

/* Section Background */
.home,
.about,
.services,
.plans,
.work,
.contact {
	height: 100%;
	position: relative;

}

.services,
.work,

.testimonial,
.footer {
  	background-color: #99c5e7;
}
.contact{
	background-color: #efb813;
}

.about,
.plans,
.company,
.newsletter,
.location {
  	background-color: #12416b;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
}
.local{
	color:#551f0c;
}
.musica{
	color:#551f0c;
	align-items: top;
	
}
@media screen and (max-width: 1024px) {
	.local h2, h4{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.about{
		background-image: none;
		/* background-color: ; */
	}
	.musica h1, h2, h4{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.musica{
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.bottom {
  	background-color: #303030;
}


/*CLASSE NOVAS TEXTO DO MEIO FEIJÃO*/






/*CLASSE NOVAS TEXTO DO MEIO FEIJÃO*/

/*Apoio*/
.main {
  position: relative;
  display: block;
  width: 90%;
  margin: 5% auto;
  padding: 0;
  border: 5px solid #2C3E50;
  overflow:hidden;
}

.main:after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width: 50%;
  height: 0.5%;
  background: #1ABC9C;
  -webkit-animation: leftRight 20s infinite linear;
  animation: leftRight 20s infinite linear;
}
.main:before {
  content: "";
  position: absolute;
  top: 0;
  right:0;
  width: 50%;
  height: 0.5%;
  background: #E74C3C;
  -webkit-animation: leftRight 20s infinite linear;
  animation: leftRight 20s infinite linear;
  z-index:9999;
}
.portfolio {
  position: relative;
  width: 100%;
  height: 350px;
  padding: 0;
  overflow: hidden;
  margin: 0;
}

.portfolio_items {
  position: absolute;
  left: 0;
  top: 0;
  width: 400%;
  -webkit-animation: slide 20s infinite ease;
  animation: slide 20s infinite linear;
}

.portfolio_item {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  float: left;
  width:25%;
}

.portfolio_item img {
  width: 100%;
  border: 0;
  outline: 0;
  display: block;
}
.portfolio_item figcaption {
  position: absolute;
  top: 10%;
  left: 0;
  width: 25%;
  height: 1.5em;
  line-height:1.5em;
  padding: 1%;
  text-align: center;
  border-radius: 0 5px 5px 0;
  background:black;
  background: rgba(0, 0, 0, 0.3);
  color:#fff;
  transition:all 500ms ease;
}
/* fx */
@keyframes leftRight{
  0%{width:0%;}
  30%{width:50%;}
  32%{width:0%;}
  63%{width:50%;}
  64%{width:0%;}
  97%{width:50%;}
  98%{width:0%;}
} 
@-webkit-keyframes leftRight{
  0%{width:0%;}
  30%{width:50%;}
  32%{width:0%;}
  63%{width:50%;}
  64%{width:0%;}
  98%{width:50%;}
  100%{width:0%;}
} 

@-webkit-keyframes slide {
  0% {left: 0%;opacity: 0;}
  3% {left: 0%;opacity: 1;}
  30% {left: 0%;opacity: 1;}
  33% {left: 0%;opacity: 0;}
  34% {left: -100%;opacity: 0;}
  37% {left: -100%;opacity: 1;}
  63% {left: -100%;opacity: 1;}
  66% {left: -100%;opacity: 0;}
  67% {left: -200%;opacity: 0}
  70% {left: -200%;opacity: 1;}
  96% {left: -200%;opacity: 1;}
  99% {left: -200%;opacity: 0;}
  100% {left: 0%;opacity: 0;}
}

@keyframes slide {
  0% {left: 0%;opacity: 0;}
  3% {left: 0%;opacity: 1;}
  30% {left: 0%;opacity: 1;}
  33% {left: 0%;opacity: 0;}
  34% {left: -100%;opacity: 0;}
  37% {left: -100%;opacity: 1;}
  63% {left: -100%;opacity: 1;}
  66% {left: -100%;opacity: 0;}
  67% {left: -200%;opacity: 0}
  70% {left: -200%;opacity: 1;}
  96% {left: -200%;opacity: 1;}
  99% {left: -200%;opacity: 0;}
  100% {left: 0%;opacity: 0;}
}
/* media queries */
@media (min-width: 240px) {
  .portfolio_item figcaption {width:50%}
  .portfolio{height:100px;}}
@media (min-width: 320px) {
  .portfolio_item figcaption {width:35%}
 .portfolio{height:170px;}}
@media (min-width: 480px) {
  .portfolio_item figcaption {width:25%}
  .portfolio{height:250px;}}
@media (min-width: 760px) and (max-width: 996px) {
  .portfolio_item figcaption {width:20%}
  .portfolio{height:350px;}}
	@media (min-width: 997px) and (max-width: 1279px) {
		.portfolio_item figcaption {width:20%}
		.portfolio{height:400px;}}
		@media (min-width: 1280px)  {
			.portfolio_item figcaption {width:20%}
			.portfolio{height:500px;}}
/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#0ee951),
		to(#00dabf)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
#navbar {
	font-weight: 500;
	font-size: 1rem;
	line-height: 0.875rem;
	background-color:#12416b;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

#navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

#navbar .logo-image img {
	width: 108px;
	height: 32px;
}

#navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

#offcanvas-collapse {
	position: fixed;
	top: 2.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: var(--primary);
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	/* transform: translateX(-100%); */
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

#navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

#navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

#navbar .dropdown-item:hover {
  	background-color: var(--primary);
}

#navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

#navbar .nav-item .nav-link {
	color: #eee;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

#navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

#navbar .fa-stack-2x {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#0ee951),
		to(#00dabf)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

#navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/****************/
/*     Home     */
/****************/
/* .home {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 100vh;
	overflow: hidden;
} */
.video-mobile {
    width: 100%; /* Para que o vídeo ocupe toda a largura do contêiner */
    height: auto; /* Mantém a proporção do vídeo */
}


@media screen and (max-width: 776px){
.home{
	background-image: url(../assets/images/background_2.gif);
}
}
.botao-comprar {
	position: relative;
	box-shadow: 2px 2px 4px 0 #FBA500;
	background-color: #E84C3D;
	background-image: linear-gradient(#E6A425, #C26018);
	cursor: pointer;
	border-color: #C26018;
	font-size: 2rem;
	font-weight: bold;
	color: #FFFFFF;
	-webkit-animation: pulse 1s infinite cubic-bezier(0.66, 0, 0, 1);
	-moz-animation: pulse 1s infinite cubic-bezier(0.66, 0, 0, 1);
	-ms-animation: pulse 1s infinite cubic-bezier(0.66, 0, 0, 1);
	animation: pulse 1s infinite cubic-bezier(0.66, 0, 0, 1);
	text-shadow: 2px 2px 2px #C26018;
}

.btn:hover {
	-webkit-animation: none;
	-moz-animation: none;
	-ms-animation: none;
	animation: none;
}

@-webkit-keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
	}
}

@-moz-keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
	}
}

@-ms-keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
	}
}

@keyframes pulse {
	to {
		box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
	}
}


/* .video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
} */

/*---------------------
  Home Contact 
-----------------------*/

.contact-section .section-title {
	text-align: left;
	margin-bottom: 40px;
}

.cs-text .ct-address span {
	font-size: 16px;
	color: #6a6b7c;
}

.cs-text .ct-address p {
	font-size: 18px;
	color: #171822;
	line-height: 30px;
	margin-top: 8px;
}

.cs-text ul {
	margin-bottom: 22px;
}

.cs-text ul li {
	font-size: 18px;
	color: #171822;
	line-height: 36px;
	list-style-type: none;
	display: inline-block;
	margin-right: 42px;
}

.cs-text ul li:last-child {
	margin-right: 0;
}

.cs-text ul li span {
	font-size: 16px;
	color: #6a6b7c;
	display: block;
}

.cs-text .ct-links span {
	font-size: 16px;
	color: #6a6b7c;
}

.cs-text .ct-links p {
	font-size: 18px;
	color: #171822;
	line-height: 30px;
	margin-top: 8px;
}

.cs-map {
	height: 400px;
	-webkit-box-shadow: 0px 12px 30px rgba(11, 12, 48, 0.15);
	box-shadow: 0px 12px 30px rgba(11, 12, 48, 0.15);
}

.cs-map iframe {
	width: 100%;
}



.para {
  	width: 50%;
}

.para-light {
  	opacity: 0.7;
}




/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
  	background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
  	background-color: var(--primary-light);
}


/******************/
/*     Button     */
/******************/
/* .btn {
	color: white;
	border-radius: 0px;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border:2px solid #fff;
	width: 250px;
	height: 250px;
}

.btn:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
} */

/* Email - Newsletter Button */
.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid white;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}



/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/* CSS MARQUE GRONUP    */
/**********************/
.wrapper {
    overflow: hidden; /* Oculta qualquer conteúdo que ultrapasse os limites do contêiner */
    width: 100%;
}

.marquee {
    display: flex;
    overflow: hidden;
    animation: marquee-scroll 15s linear infinite; /* Animação de rolagem contínua */
}

.marquee__group {
    display: flex;
    gap: 0px; 
}

.marquee__group img {
    width: 100%; /* Ajusta automaticamente a largura conforme o contêiner */
    max-width: 250px; /* Define um tamanho máximo para as imagens */
    height: auto; /* Mantém a proporção */
}

/***********************/
/* CSS MARQUE GRONUP   */
/***********************/





/*CSS NOVO PARA LP-FEIJAO COMEÇO*/

#section-verde{
	height:30vh;
	/* background-color:#176704; */
	background-image: url(../assets/images/novaslogos/108279.jpg);
	position:relative;
	font-weight: bold;
	position: relative;
	background:cover;
	background-position:center ;
}

#section-verde-1{
	height:45vh;
	/* background-color:#176704; */
	background-image: url(../assets/images/novaslogos/108279.jpg);
	position:relative;
	font-weight: bold;
	/* background: cover; */
	background-position: center;
}

.texto-missao{
	margin-bottom: 0 !important;
}

#section-foto {
    background-image: url(../assets/images/GIFS/foto-feijoada20.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 40% 20%; /* Mover a imagem 50% horizontalmente e 40% verticalmente */
    background-clip: padding-box;
    height: 70vh;
    width: 100%;
    display: flex;
	position:relative;
}

.notas-musicais {
    position: absolute; /* Permite que a imagem seja posicionada independentemente */
    top: 30%; /* Ajuste a posição vertical */
    left: 55%; /* Centraliza horizontalmente */
    transform: translateX(-56%); /* Centraliza a imagem horizontalmente */
    width: 80%; /* Controle o tamanho da imagem */
    z-index: 2; /* Garante que a imagem fique sobreposta */
    pointer-events: none; /* Opcional: evita que a imagem interaja com o mouse */
    opacity: 0.9; /* Opcional: ajuste de opacidade para ver o fundo */
}

.custom-comprar-1 {
    padding-top: 25%; /* Espaço interno para mover o conteúdo para baixo */
    
}

 .marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    align-items: center;
}

.marquee__group {
    display: flex;
    animation: marquee 15s linear infinite;
    white-space: nowrap; /* Mantém os elementos na mesma linha */
}

.marquee__group span {
    margin: 0 20px; /* Espaçamento entre os nomes */
    font-size: 3rem; /* Ajuste o tamanho da fonte conforme necessário */
    color: #fff; /* Cor dos textos */
}



.marquee-1 {
    display: flex;
    overflow: hidden;
    width: 100%;
    /* height: 40vh;  */
    align-items: center;
}

.marquee__group-1 {
    display: flex;
    animation: marquee 15s linear infinite;
    white-space: nowrap; /* Mantém os elementos na mesma linha */
}

.marquee__group-1 span {
    font-size: 2rem; /* Ajuste o tamanho da fonte conforme necessário */
    color:black; /* Cor dos textos */
	background-color:#99c5e7;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
.imagem-container {
    width: 450px; /* Ajuste o tamanho do contêiner */
    height: 350px;
    background-image: url('../assets/images/GIFS/FEIJOADA-MIN.jpg');
    background-size: cover; /* Faz a imagem preencher o contêiner */
    background-position:98% 40%; /* Posição inicial */
	border-radius: 25px;
}

.row-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.image-container-1 {
    width: 250px; /* Largura desejada do contêiner */
    height: 250px; /* Altura desejada do contêiner */
    background-image: url('../assets/images/GIFS/Convite.png');
    background-size: cover; /* Zoom na imagem */
    background-position: center; /* Centraliza inicialmente */
    background-repeat: no-repeat;
    overflow: hidden; /* Garante que a imagem não ultrapasse o contêiner */
    border-radius: 8px; 
	background-position: 64% 40%;
}

.section-videos {
    min-height: 300px;
    gap: 20px; /* Espaçamento entre os vídeos */
	display: flex;
    flex-direction: row; /* Garante que as colunas fiquem em linha */
    flex-wrap: wrap; /* Permite que as colunas se movam para a próxima linha, se necessário */
    gap: 10px; /* Espaçamento entre as colunas */
    justify-content: center; /* Centraliza as colunas no contêiner */
}

.section-videos .col {
    padding: 15px;
    background-color:#99c5e7; /* Fundo das colunas, caso queira */
    border-radius: 10px; /* Borda arredondada para dar um efeito mais suave */
}







/*///////////////////// CSS NOVO PARA LP-FEIJAO FIM /////////////////////*/





/*/////////////////////RESPONSIVO LP FEIJÃO DESKTOP//////////*/

@media(max-width:1336px){
	  #section-verde {
    min-height: auto;      /* deixa a altura se ajustar ao conteúdo */
    height: auto;          /* remove o fixo */
    background-color: #176704;
    position: relative;
    font-weight: bold;
    padding: 1rem;  /* respiro interno */
  }

  #date{
	position: relative;
	left: 18vh;
	width: 100%;
  }
   

    #date-1{
	position: relative;
	left: 18vh;
	width: 100%;
  }

   #texto-extra{
	position: relative;
	width: 100%;
   }


   .text-custom {
   position: relative;
    flex-direction: column !important; /* só no mobile */
    text-align: center;
	left: 7vh;
  }

  .custom-comprar{
	position: relative;
    flex-direction: column !important; /* só no mobile */
    text-align: center;
	left: 6vh;
  }


#section-foto {
    height: 38vh;
}

.notas-musicais {
    top: 28%;
    left: 54%;
}

.custom-comprar-1 {
    padding-top: 153px;
}

#section-verde-1 {
    height: 28vh;
  
}   

}

@media(max-width: 1280px){
	#section-foto {
        height: 55vh;
    }

	

}

/*/////////////////////RESPONSIVO LP FEIJÃO TABLETES//////////*/

@media(max-width:932px){
	#section-foto {
        height: 28vh;
    }
	#section-verde-1 {
        height: 28vh;
    }
	.custom-comprar-1 {
        padding-top: 107px;
    }
	
	.section-videos {
		display: flex; /* Altera para flex para que flex-direction e flex-wrap funcionem */
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.section-videos video {
		width: 100%; /* Ajusta para a largura completa do contêiner */
		height: auto; /* Mantém a proporção do vídeo */
	}
	
	.marquee__group-1 span {
        font-size: 1rem; /* Ajuste o tamanho da fonte conforme necessário */
        padding: 0 1rem; /* Espaçamento entre os itens */
    }

}
@media (max-width: 768px){


	    .about .text-container {
        text-align: center;
        margin-top: 1rem;
        width: 100%;
    }

	.section-videos .col {
    flex: 0 1 45%; /* Ajusta a largura da coluna para ocupar cerca de 45% do contêiner */
    max-width: 300px; /* Define uma largura máxima para controlar o tamanho */
    display: flex; /* Permite centralizar conteúdo interno se necessário */
    justify-content: center; /* Centraliza o conteúdo interno da coluna */
    align-items: center; /* Alinha verticalmente o conteúdo da coluna */
}

	.row-container {
        display: block; /* Mantém a estrutura vertical */
    }

    .text-container {
        text-align: center; /* Mantém o texto centralizado */

    }
	#section-verde-1 {
        height: 21vh;
    }


	.custom-comprar-1 {
        padding-top: 97px;
    }

	.texto-missao{
		margin-bottom: 0 !important;
	}
	.marquee__group-1 span {
        font-size: 1rem; /* Ajuste o tamanho da fonte conforme necessário */
        padding: 0 1rem; /* Espaçamento entre os itens */
    }

	#section-foto {
        height: 32vh;
    }


	.imagem-container {
		width: 300px;
		height: 239px;
	}

    
	.marquee__group img {
       width: 80px; /* Diminui o tamanho máximo das imagens para telas menores */
    }  

	

	.marquee {
        gap: 0px; /* Reduz o espaçamento entre imagens */
    }


	.offcanvas-collapse {
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		width: 50vw; /* Ajuste para abrir até metade da tela */
		max-width: 100%; /* Largura máxima para o menu lateral */
		padding: 1rem;
		background-color: rgba(0, 0, 0, 0.5); /* Preto com 20% de transparência */
	
		z-index: 1045;
		transform: translateX(100%);
		transition: transform 0.s ease-in-out;
	}
    
	 /* Ajustes para telas menores */
	 .row-container {
        flex-direction: column; /* Empilha os elementos em coluna */
        align-items: center; /* Centraliza os itens */
    }

    .image-container-1, .imagem-container {
        height: 250px; /* Altura ajustada para versão mobile */
        
    }

    .text-container {
        text-align: center;
		
			
    }

    .text-container h3,
    .text-container h4 {
        font-size: 1.8rem; /* Ajuste de tamanho de fonte para legibilidade */
    }

	#Comprar-1{
		font-size: 1rem;
		top: -2vh;
		position: relative;
	}
	#datehora{
		position: relative;
		left: -14vh;
	}

}




/*/////////////////////RESPONSIVO LP FEIJÃO MOBILE//////////*/

@media(max-width:540px){
	#section-foto {
        height: 15vh;
    }
	.custom-comprar-1 {
        padding-top: 24%;
    }
}



@media(max-width: 430px){
	
  #section-verde {
    min-height: auto;      /* deixa a altura se ajustar ao conteúdo */
    height: auto;          /* remove o fixo */
    background-color: #176704;
    position: relative;
    font-weight: bold;
    padding: 1rem;         /* respiro interno */
	
  }

  #section-verde {
    flex-direction: column !important; /* força empilhado no mobile */
    text-align: center;                /* centraliza tudo */
  }

  #section-verde .logo-custom {
    max-width: 150px; /* logo menor no mobile */
  }

  #section-verde span {
    font-size: 1.5rem; /* texto ajustado */
	
  }


  
	.marquee__group img {
       width: 80px; /* Diminui o tamanho máximo das imagens para telas menores */
    } 


	/* #section-verde {
		height: 70px;
		background-color: #176704;
		position: relative;
		font-weight: bold;
	}  */
	 
	#section-verde-1 {
		height: 125px;
		background-color: #176704;
		position: relative;
		font-weight: bold;
		padding-top: 12%;
	}
	#Comprar-1 {
		top: -74px;
		text-align: center;
		position: relative;
    }
	.custom-comprar-1 {
        padding-top: 127px;
    }
	
	
	#section-foto {
		background-position: 40% 0%;
		height: 155px;
		
	}
	
	p {
		margin-top: 0;
		margin-bottom: 0rem !important
	}
	
	
	.about .row-container {
		flex-direction: column; /* Empilha imagem e texto */
		align-items: center;
		text-align: center;
	}
	
	.about .text-container {
		text-align: center;
		margin-top: 0rem;
		width: 100%;
	}
	
	.about h1, .about h2 {
		font-size: 1.5rem;
		/* color: #551f0c; */
	}
	
	.about h3{
		font-size: 1rem;
		/* color: black; */
		line-height: 1.4;
	}
	
	#text-h4{
		/* color:black; */
		position: relative;
		display:contents ;
	}
	
	.image-container-1,
	.imagem-container {
		width: 100%;
		height: 200px;
		background-size: cover;
		background-position: center;
		margin-bottom: 1rem;
	}
	
	.image-container-1 img,
	.imagem-container {
		max-width: 100%;
		height: auto;
	}
	
	.imagem-container {
		padding-top: 66%; /* Reduz a altura proporcionalmente para dispositivos menores */
        background-position: center; /* Centraliza a imagem no mobile */
        margin-bottom: 1rem; /* Espaço extra entre imagem e texto */
    }
	
   
	.marquee__group-1 span {
        font-size: 1rem; /* Ajuste o tamanho da fonte conforme necessário */
        padding: 0 1rem; /* Espaçamento entre os itens */
    }
	
    .notas-musicais{
		top: 46%;
		left:55%;
    }
	
    #section-verde-1{
		height: 177px;
    }
	
	
    .section-videos {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	
	.section-videos .col {
		flex: 1 1 100%; /* Coluna ocupa 100% da largura em dispositivos móveis */
		padding: 10px;
	}

	#datehora{
		position: relative;
		left: -16vh;
	}

	    #section-verde .logo-custom {
       
        left: -6vh;
    }


	    .text-custom {
        color: white !important;
        position: relative;
        left: 25vh;
    }

	    #date {
        position: relative;
        left: 10vh;
        width: 100%;
    }

	    #date-1 {
        position: relative;
        left: 10vh;
        width: 100%;
    }

	#preço{
		position: relative;
		left: -7vh;
	}

	.text-custom {
       
        left: 16vh;
    }
	
	    .custom-comprar {
        left: 9vh;
    }
}


/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width:1024px){
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
		
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--primary);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

}














.btn-aguarde {
  font-size: 2em;
  font-weight: bold;
  padding: 15px 40px;
  color: #fff;
  background: linear-gradient(90deg, #ff6a00, #EFB813);
  border: none;
  border-radius: 50px;
  cursor: not-allowed; /* estilo de "aguarde" */
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  animation: pulse 2s infinite;
}

.btn-aguarde::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
  50% { transform: scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.35); }
  100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
}



.custom-comprar {
  margin-left: -19vh;  /* empurra para a direita */
  margin-right: 30px; /* opcional, se quiser afastar da borda */
}


