@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@0;1&family=Roboto+Mono:wght@500&family=Roboto:wght@500&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
}

button {
	display: inline-block;
  	border: none;
  	text-decoration: none;
  	cursor: pointer;
}

/* Navbar Style */
header {
    background: #fff;
    width: 100%;
    height: 70px;
    color: #0068d6;
/*     position: fixed; */
    z-index: 9999;
}

.container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar .logo {
	margin: 10px;
	width: 200px;
	align-items: center;
}

.navbar ul {
	display: flex;
	align-items: center;
}

.navbar ul li {
	margin: 0 15px;
	list-style: none;
}

.navbar ul li a {
	position: relative;
	padding: 8px 0;
	color: #0068d6;
	font-size: 1.2rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.3s linear;
}

/* .navbar ul li a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: auto;
	width: 0;
	height: 3px;
	background-color: #111 ;
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
} */

.nav-link {
	padding: 15px;
	margin: 0.6rem;
}

.navbar ul li a:hover {
	color: #b5d9ff ;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
	width: 100%;
	right: auto;
	left: 0;
}

.hamburger {
	display: none;
	position: relative;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.hamburger span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #0068d6;
	position: absolute;
	top: calc(50% - 1.5px);
	left: 0;
	transition: all 0.2s;
}

.hamburger span:first-child {
	transform: translateY(-300%);
	transform-origin: right top;
}

.hamburger span:last-child {
	transform: translateY(300%);
	transform-origin: right bottom;
}

.hamburger.active span:first-child {
	transform: rotate(45deg) scaleX(0.5) translateX(4px);
}

.hamburger.active span:last-child {
	transform: rotate(-45deg) scaleX(0.5) translateX(4px);
}

/* Navbar media query */
@media (max-width: 992px) {
	.container {
		max-width: 940px;
	}

	.hamburger {
		display: block;
	}

	.navbar ul {
		position: fixed;
		top: 80px;
		right: 0;
		width: 320px;
		height: 100%;
		padding: 40px 0;
		background-color: #fff;
        border-radius: 15px;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		box-shadow: -8px 2px 10px rgba(0, 0, 0, 0.082);
		transform: translateX(100%);
		text-align: center;
		transition: all 0.3s;
	}
	.navbar ul.active {
		transform: translateX(0);
	}
	.navbar ul li {
		margin: 0;
		width: 100%;
	}

	.navbar ul li a {
		display: block;
		padding: 15px;
	}
	.navbar ul li a::after {
		display: none;
	}
	.navbar ul li a:hover {
		color: #080808;
		background-color: #f0f0f0;
	}
	.navbar ul li a.active {
		color: #fff;
		background-color: #0068d6 ;
		border-radius: 30px;
	}
}

@media (max-width: 768px) {
	header {
		padding: 4px;
	}
	.container {
		max-width: 650px;
	}
	.navbar .logo {
		height: 100%;
	}
}

@media (max-width: 992px) {
	.navbar .logo {
		width: 110px;
	}
}

@media (max-width: 375px) {
	.navbar .logo {
		width: 110px;
	}
}

/* Home Page Style */
#home-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 50px;
	background: url(../assets/FloridaBus.png) no-repeat center center/cover;

	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: left;
    padding: 0px;
    border-radius: 10px;
    max-width: 1300px; 
    width: 100%;

}

.text-section .budget {
    display: block;
	margin-top: 2.5rem;
    margin: 10 auto;
    padding: 10px 20px;
	background: #ffc400;
    color: #fff;
	box-shadow: 0 4px 0px rgb(255, 238, 0);
    border: none;
    border-radius: 20px;
	font-weight: 600;
    font-size: 1.2em;
    cursor: pointer;
    width: 300px;
	transition: all 0.3s ease;
}

.text-section .budget:hover {
	background: #ffdf74;
	box-shadow: 0 7px 2px rgb(255, 238, 0);
}

.text-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #b30000;
/* 	text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4); */
}

.text-section p {
    margin-bottom: 20px;
    font-size: 1.4rem; 
	font-weight: 600;
    line-height: 1.5;
    color: #3b3b3b;
}

@media (max-width: 380px) {
	.budget {
		padding: 15px 40px;
		font-size: 15px;
	}
}

@media (min-width: 768px) {
    .home-page {
        flex-direction: row;
    }

    .text-section {
        flex: 1;
        padding-right: 30px; 
    }

    .home-image-section {
        flex: 1;
    }
}

@media (max-width: 1303px) {
    .text-section h1 {
        font-size: 3rem; 
    }
}

@media (max-width: 768px) {
	#home-page-section {
		padding: 10px;
	}

	.home-page {
        display: flex;
		text-align: center;
		justify-content: center;
    }

	.text-section h1 {
		margin-top: 0rem;
		font-size: 1.7rem; 
	}

	.text-section p {
		font-size: 1.2rem; 
	}

    .text-section .budget {
        margin: 0 auto;
		padding: 10px;
		width: 250px;
    }
}

/* Banner Style */
#banner {
    background: #b10000;
    color: #fff;
    width: 100%;
    min-height: 10vh;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#banner p {
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
	#banner p {
		font-size: 22px;
	}
}

/* Grid */
#service-grid {
    display: flex;
    min-height: 80vh;
	background: url(../assets/florida-bus-bg.png) no-repeat center center/cover;
    justify-content: center;
    align-items: center;
}

.grid-container {
	margin-top: 1rem;
	margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1100px;
}

.card {
    background-color: #f5f5f5da;
    border-radius: 20px;
    padding: 50px 20px 50px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin: 0 0 10px;
    color: #ff8c00;
    font-size: 30px;
    font-weight: 600;
}

.card p {
    color: #8b0000;
    font-size: 20px;
    font-weight: 600;
}

.service-icon {
	width: 100%;
	max-width: 120px;
	margin-right: 15px;
}

.service-title {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.service-icon {
		width: 100%;
		max-width: 80px;
	}

	.card {
		padding: 15px;
	}

	.card h3 {
		font-size: 25px;
	}

	.card p {
		font-size: 18px;
	}
}

/* Frota Style */
#frota {
	background: url(../assets/bg-bus.png) no-repeat  center/cover;
	margin: 0;
    font-family: Arial, sans-serif;
}

.frota-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.frota-container h1 {
	font-size: 50px;
	font-weight: 600;
    color: #b22222;
	margin-top: 20px;
    margin-bottom: 20px;
}

.card-frota {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 20px;
}

.card-frota img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-right: 2rem;
}

.info {
    text-align: left;
}

.info h2 {
	margin-bottom: 1rem;
    color: #ff8c00;
	font-size: 30px;
	font-weight: 600;
}

.info ul {
    list-style-type: none;
    padding: 0;
}

.info ul li {
    margin-bottom: 10px;
    line-height: 1.5;
	font-size: 18px;
	font-weight: 500;
}

@media (max-width: 530px) {
	.card-frota {
		flex-direction: column;
	}

	.card-frota img {
		margin-right: 0rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 768px) {
	.frota-container h1 {
		font-size: 26px;
	}

	.info h2 {
		font-size: 22px;
	}

	.info ul li {
		font-size: 15px;
	}
}

/* Security Style */
#security {
	min-height: 60vh;
	background: #b40a0a;
}

.security-container {
	display: flex;
	max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
	color: #fff;
}

.security-l img {
	width: 100%;
	max-width: 500px;
	border-radius: 50px;
	margin-right: 2rem;
}

.security-l h1 {
	font-size: 35px;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.security-r {
	display: flex;
	align-items: center;
	justify-content: center;
}

.security-r ul {
    list-style-type: none;
    padding: 0;

}

.security-r ul li {
    margin-bottom: 30px;
    line-height: 1.5;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	border-radius: 20px;
}

@media (max-width: 1160px) {
	.security-l img {
		max-width: 400px;
	}

	.security-l h1 {
		font-size: 25px;
	}

	.security-r ul li {
		font-size: 18px;

	}
}

@media (max-width: 1030px) {
	.security-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {

	.security-l img {
		width: 100%;
		max-width: 300px;
		margin-right: 0rem;
	}

	.security-l h1 {
		font-size: 25px;
	}
}

/* History Style */
  #our-history {
	min-height: 60vh;
	background-color: #f9f9f9;
	padding: 50px 20px;
	line-height: 1.6;
	color: #333;
  }
  
  .history-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1700px;
	margin: 0 auto;
	gap: 20px;
	align-items: center;
  }
  
  .history-l,
  .history-r {
	flex: 1;
	min-width: 300px;
  }
  
  .history-l img {
	width: 100%;
  }
  
  /* Lista e itens */
  .history-r ul {
	list-style-type: none;
	padding: 0;
  }
  
  .history-r li {
	margin-bottom: 30px;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	font-size: 18px;
	font-weight: 600;
  }
  
  .history-r h1 {
	font-size: 28px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #d60000;
  }
  
  .history-r p {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
	.history-container {
	  flex-direction: column;
	  gap: 10px;
	}
  
	.history-r li {
	  padding: 15px;
	}
  
	.history-r h1 {
	  font-size: 20px;
	}
  
	.history-r p {
	  font-size: 14px;
	}
  }

/* Banner2 Style */
#banner2 ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Permite que os itens "quebrem" para a próxima linha */
    gap: 1rem; /* Espaçamento entre os itens */
	list-style: none;
}

#banner2 ul li img {
    width: 100%; /* Define largura máxima para o container pai */
    max-width: 300px; /* Limita a largura máxima */
    height: auto; /* Mantém a proporção da imagem */
}

.banner2-container h1 {
	text-align: center;
	color: #b10000;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

/* Media queries para diferentes tamanhos de tela */
@media (max-width: 768px) {
    #banner2 h1 {
        font-size: 1.5rem; /* Ajusta o tamanho do texto */
    }

    #banner2 ul li img {
        max-width: 200px; /* Reduz o tamanho das imagens em telas menores */
    }
}

@media (max-width: 480px) {
    #banner2 h1 {
        font-size: 1.2rem; /* Texto ainda menor para telas pequenas */
    }

    #banner2 ul {
        flex-direction: column; /* Empilha os itens verticalmente */
    }

    #banner2 ul li img {
        max-width: 150px; /* Ainda menor em telas muito pequenas */
    }
}


/* Footer Style */
footer {
	padding-top: 2.5rem;
	min-height: 120vh;
	background: #eee;
	color: #111;
}

.footer-1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 70vh;
}

.footer-1 iframe {
	margin-top: 2.2rem;
    width: 80%;
    height: 60%;
    border: 0;
}

.footer-1 p {
	text-align: center;
}

.footer-2 {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	margin: 0 auto;
  }
  
  .form-container {
	max-width: 1000px;
	margin: 0 auto;
	background: #fff;
	padding: 30px;
	border-radius: 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .form-container h1 {
	margin-bottom: 1rem;
	text-align: center;
	color: #8b0000;
  }
  
  .field {
	margin-bottom: 15px;
  }
  
  label {
	display: block;
	margin-bottom: 5px;
	color: #111;
	font-size: 17px;
  }
  
  input[type="text"],
  input[type="time"],
  input[type="email"] {
	width: 100%;
	padding: 15px;
	border: 2px solid #9b9b9b;
	border-radius: 12px;
	box-sizing: border-box;
  }
  
  .travel-type {
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .travel-type label {
	margin-right: 15px;
	color: #ff8c00;
  }
  
  form button {
	width: 100%;
	margin-top: 1rem;
	padding: 15px;
	background-color: #8b0000;
	color: #fff;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	cursor: pointer;
  }
  
  form button:hover {
	background-color: #c95b53;
  }

.travel {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	gap: 50px;
}

/* Scrollbar Style */
  ::-webkit-scrollbar {
    width: 10px; /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background: #111; /* Cor do fundo da barra de rolagem */
}

/* Estilizando o polegar da barra de rolagem */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, #ff5f5f, #ff0000); /* Cor do polegar da barra de rolagem */
    border-radius: 20px; /* Bordas arredondadas no polegar */
}

.other {
	display: flex;
	align-items: center;
	justify-content: center;
}

.travel-l {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 500px;
}

.travel-r {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 480px;
}

@media (max-width: 920px) {
	.form-container {
		padding: 20px;
	}

	.form-container h1 {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.form-container {
		padding: 20px;
	}

	.form-container h1 {
		font-size: 22px;
	}

	.other {
		flex-direction: column;
	}

	.travel {
		flex-direction: column;
		gap: 50px;
	}

	.travel-l {
		flex-direction: column;
		width: 100%;
	}

	.travel-r {
		flex-direction: column;
		width: 100%;
	}

	.travel-type label {
		font-size: 15px;
	  }
}

.field {
	margin: 10px;
	width: 100%;
}

/* Estiliza o grupo de botões de rádio */
.radio-group {
	display: flex;
	gap: 5px; /* Espaço entre os botões */
}

.social-media {
	padding: 20px;
	text-align: center;
  }
  
  .contact {
	display: grid;
	gap: 10px;
	max-width: 600px;
	margin: 0 auto;
	grid-template-columns: 1fr; /* Por padrão, 1 coluna */
  }
  
  .item {
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 25px;
	color: #fff;
	font-weight: bold;
  }
  
  .item .icon {
	margin-right: 10px;
	font-size: 1.5rem;
  }
  
  .item:nth-child(1) {
	background: #940000; /* Vermelho */
  }
  
  .item:nth-child(2) {
	background: #a80000; /* Laranja */
  }
  
  .item:nth-child(3) {
	background: #b40000; /* Amarelo */
  }
  
  .item:nth-child(4) {
	background: #c40000; /* Verde */
  }
  
  a {
	text-decoration: none;
	color: inherit;
  }
  
  /* Responsividade */
  @media (min-width: 768px) {
	.contact {
	  grid-template-columns: 1fr 1fr; /* Duas colunas no desktop */
	}
  }

.final {
	min-height: 40vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #111;
}

.footer-final-text p {
	display: flex;
	margin-top: 1rem;
	text-align: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
}