* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --black: #0d0d0d;
  /* Fundo principal */
  --white: #f5f0e8;
  /* Texto principal (off-white quente) */
  --orange: #f4600c;
  /* Cor de destaque primária */
  --orange-dark: #c44a07;
  /* Laranja hover / botões pressionados */
  --orange-light: #ff7f3e;
  /* Laranja suave para tags e badges */
  --gray: #1a1a1a;
  /* Fundo de seções alternadas */
  --gray-mid: #2e2e2e;
  /* Bordas e detalhes do SVG */
  --text-muted: #888888;
  /* Textos secundários / legendas */
}

html {
  scroll-behavior: smooth;
}

/* RESETS */
a,
li {
  outline: none;
  text-decoration: none;
}

li {
  list-style: none;
}

/* HILIGHTS */
.highlight {
  color: var(--orange);
}

/*ZAP CONTACT*/
.zap-contact {
  position: fixed;
  width: 50px;
  height: 50px;

  right: 5%;
  bottom: 5%;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: 0.3s ease;

  animation-name: zap-shadow;
  animation-duration: 5s; /* Duração de 3 segundos */
  animation-iteration-count: infinite; /* Faz a animação repetir infinitamente */
}

.zap-contact:hover {
  transform: scale(1.1);
}

.zap-contact:active {
  transform: scale(1);
}

@keyframes zap-shadow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 4px 1px rgba(14, 232, 14, 0.1);
  }
  20% {
    box-shadow: 0 0 6px 1px rgba(14, 232, 14, 0.2);
  }
  40% {
    box-shadow: 0 0 8px 1px rgba(14, 232, 14, 0.3);
  }
  60% {
    transform: scale(1.15);
    box-shadow: 0 0 12px 1px rgba(14, 232, 14, 0.8);
  }
  80% {
    box-shadow: 0 0 8px 1px rgba(14, 232, 14, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 4px 1px rgba(14, 232, 14, 0.2);
  }
}

/*LINE*/
.line {
  margin: 30px 0 30px 0;
  border-bottom: 1px solid var(--gray-mid);
}

/*SECTIONS*/
section {
  color: white;
  padding: 0 20px 50px 20px;
}

/*SECTION ABOUT*/
.section-about {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

@media (min-width: 1200px) {
  .section-about {
    font-size: 24px;
  }
}

/*SECTION P*/
.section-p {
  color: #d8d8d8;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .section-p {
    font-size: 26px;
  }
}

/*SECTION TITLE CONTAINER*/
.section-title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 1rem;
}

@media (min-width: 1200px) {
  .section-title-container {
    gap: 2rem;
  }
}

/*SECTION-TITLE*/
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  line-height: 38px;
}

@media (min-width: 1200px) {
  .section-title {
    font-size: 80px;
  }
}

.title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*MAP*/
.map-container {
  width: 100%;
  max-width: 1100px;
  /* Largura máxima do mapa */
  height: 400px;
  /* Altura fixa do mapa */
  position: relative;
}

@media (min-width: 1200px) {
  .map-container {
    height: 600px;
  }
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
}

/* _______________________________________ */
/* _______________ B O D Y _______________ */
/* _______________________________________ */
body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

/*HAMBURGUER*/
.hamburguer.opened {
  position: fixed;
  top: 59.2px;
  right: 0;
  display: flex;
  flex-direction: column;
  background-color: #2e2e2e;
  font-size: 20px;
  gap: 3rem;
  padding: 2rem;
  z-index: 999;
  border-radius: 0 0 0 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 1px black;
  width: 50%;
  opacity: 1;
  transition: 0.3s ease;
}

.hamburguer.closed {
  position: fixed;
  top: 59.2px;
  right: -50%;
  display: flex;
  flex-direction: column;
  background-color: #2e2e2e;
  font-size: 20px;
  gap: 3rem;
  padding: 2rem;
  z-index: 999;
  border-radius: 0 0 0 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0);
  width: 50%;
  opacity: 1;
  transition: 0.3s ease;
}

.hamburguer a {
  color: white;
}

.hamburguer a:hover {
  color: var(--orange);
}

/* _______________________________________ */
/* _____________ H E A D E R _____________ */
/* _______________________________________ */
header {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* Safari */
  border-bottom: 1px solid var(--gray);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;

  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Links list */
header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 10px 20px;
}

header ul li {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--orange-dark);
}

/* Menu icon */
header img {
  width: 30px;
  filter: brightness(0) invert(1);
  cursor: pointer;
}

/* _______________________________________ */
/* _______________ M A I N _______________ */
/* _______________________________________ */

/* _______________________________________ */
/* _______________ H O M E _______________ */
/* _______________________________________ */
main .home {
  padding-top: 59.2px;
  background: linear-gradient(180deg, rgb(17, 17, 17), rgb(32, 32, 32));
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

main .home .home-image-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 1200px) {
  main .home .home-image-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

main .home .fiorino-img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

main .home .fiorino-img {
  width: 100%;
  border: 1px solid var(--gray-mid);
  background-color: rgb(26, 26, 26);
  border-radius: 0 0 40px 40px;
}

main .home .right-from-fiorino-img {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

main .home .right-from-fiorino-img div,
a {
  width: 100%;
}

main .home h1 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 50px;
}

@media (min-width: 1200px) {
  main .home h1 {
    font-size: 80px;
  }
}

main .home .fretes-e-transportes-container {
  background-color: var(--orange-dark);
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  padding: 5px;
  border-radius: 2px;
}

main .home .home-text {
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

@media (min-width: 1200px) {
  main .home .home-text {
    font-size: 26px;
  }
}

main .home .home-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

main .home a button {
  height: 45px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 5px;
  border-radius: 5px;
  width: 100%;
}

main .home a .frete-button {
  background-color: var(--orange);
  border: none;
  box-shadow: 0px 10px 0 0 var(--orange-dark);
  transition: 0.1s ease;
}

main .home a .frete-button:hover {
  background-color: var(--orange-light);
}

main .home a .frete-button:active {
  background-color: var(--orange-light);
  transform: translateY(10px);
  box-shadow: 0 0 0 0 var(--orange-dark);
}

main .home a .services-button {
  background-color: transparent;
  border: 1px solid rgb(90, 90, 90);
  box-shadow: 0px 10px 0 0 rgb(59, 59, 59);
  transition: 0.1s ease;
}

main .home a .services-button:hover {
  background-color: rgb(44, 44, 44);
}

main .home a .services-button:active {
  background-color: rgb(59, 59, 59);
  box-shadow: 0 0 0 0 rgb(59, 59, 59);
  transform: translateY(10px);
}

main .home .status-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  text-align: center;
  gap: 15px;
}

main .home .status-container .status .status-title {
  font-size: 25px;
}

main .home .status-container .status .status-p {
  font-size: 15px;
}

@media (min-width: 1200px) {
  main .home .status-container .status .status-title {
    font-size: 40px;
  }
  main .home .status-container .status .status-p {
    font-size: 20px;
  }
}

/* _______________________________________ */
/* ___________ S E R V I C E S ___________ */
/* _______________________________________ */

main .services {
  background-color: var(--gray-mid);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

main .services-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 1rem;
}

@media (min-width: 960px) {
  main .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

main .services-container .service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  width: 100%;
  gap: 0.6rem;
  border-radius: 8px;
  background-color: rgb(32, 32, 32);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-bottom: 0px solid var(--orange);

  transition: 0.3s ease;
}

main .services-container .service:hover {
  border-bottom: 4px solid var(--orange);
  background-color: rgb(36, 36, 36);
  transform: scale(1.01);
}

main .services-container .service .service-icon {
  font-size: 40px;
}

main .services-container .service .service-title {
  font-size: 30px;
}

/* _______________________________________ */
/* ____________ S P E C I A L ____________ */
/* _______________________________________ */
main .special {
  padding-top: 80px;
  background: linear-gradient(180deg, rgb(17, 17, 17), rgb(32, 32, 32));
  display: flex;
  flex-direction: column;
  gap: 50px;
}

main .special .qualities-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 25px;
  gap: 1rem;
}

@media (min-width: 960px) {
  main .special .qualities-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

main .special .qualities-container .quality {
  background-color: #2f1b10;
  border: 1px solid #c44a07;
  box-shadow: 0 0 8px 1px rgba(196, 74, 7, 0.3);
  padding: 10px;
  border-radius: 50px;
  transition: 0.3s ease;
}

main .special .qualities-container .quality:hover {
  background-color: #392012;
  transform: scale(1.02);
}

main .special .car-information-container {
  border: 1px solid rgba(244, 96, 12, 0.4);
  background-color: var(--gray);
  border-radius: 8px;
  padding: 40px 20px 20px 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 960px) {
  main .special .car-information-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

main .special .car-information-container .car-information-item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2px;
  background-color: var(--gray-mid);
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(244, 96, 12, 0);
  transition: 0.3s ease;
}

main .special .car-information-container .car-information-item:hover {
  border: 1px solid rgba(244, 96, 12, 0.4);
}

main .special .car-information-container .car-information-item-icon {
  font-size: 30px;
  border: 1px solid var(--orange);
  background-color: rgba(244, 96, 12, 0.4);
  box-shadow: 0 0 8px 1px rgba(196, 74, 7, 0.3);
  width: fit-content;
  border-radius: 5px;
}

main .special .car-information-title {
  background-color: var(--orange);
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 50px;
  font-size: 30px;
  transform: translate(10px, 19px);
}

/* _______________________________________ */
/* ________ O N D E  A T E N D O _________ */
/* _______________________________________ */

main .where-i-work {
  padding-top: 80px;
  background-color: var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 50px;
}

main .where-i-work .sao-paulo-map-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

main
  .where-i-work
  .sao-paulo-map-container
  .sao-paulo-map-container-title-description {
  text-align: center;
}

main
  .where-i-work
  .sao-paulo-map-container
  .sao-paulo-map-container-title-description
  h3 {
  font-size: 45px;
  letter-spacing: 5px;
}

main
  .where-i-work
  .sao-paulo-map-container
  .sao-paulo-map-container-title-description
  h4 {
  color: white;
  letter-spacing: 5px;
}

/* _______________________________________ */
/* ____________ P A Y M E N T ____________ */
/* _______________________________________ */

main .payment {
  padding-top: 80px;
  background: linear-gradient(180deg, rgb(17, 17, 17), rgb(32, 32, 32));
  display: flex;
  flex-direction: column;
  gap: 50px;
}

main .payment .payments-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

main .payment .payments-container .payment-method {
  border: 1px solid var(--orange);
  background-color: rgba(244, 96, 12, 0.05);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

main .payment .payments-container .payment-method .payment-method-title {
  font-size: 30px;
}

main .payment .payments-container .payment-method .payment-method-p {
  font-size: 15px;
}

/* _______________________________________ */
/* ____________ C A L L   M E ____________ */
/* _______________________________________ */

main .call-me {
  padding-top: 80px;
  background-color: var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 50px;
}

main .call-me .form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;

  align-self: center;
  width: 100%;
  max-width: 600px;
}

@media (min-width: 1200px) {
  main .call-me .form {
    grid-template-columns: repeat(2, 1fr);
  }
}

main .call-me .form .input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

main .call-me .form label {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
}

main .call-me .form input,
select {
  border-radius: 20px;
  width: 100%;
  padding: 15px;
  outline: none;
  background: rgba(244, 96, 12, 0);
  border: 1px solid rgba(255, 255, 255, 0.404);
  color: white;
  font-size: 16px;
  transition: 0.3s ease;
}

select option {
  background-color: rgb(31, 31, 31);
  border: none;
}

main .call-me .form input:hover,
select:hover {
  border: 1px solid var(--orange);
}

main .call-me .form .call-me-button {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  background-color: rgb(21, 184, 0);
  color: white;
  box-shadow: 0 10px 0 0 rgb(15, 129, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 10px;
  grid-column: span 1;
  transition: 0.3s ease;
}

@media (min-width: 1200px) {
  main .call-me .form .call-me-button {
    grid-column: span 2;
  }
}

main .call-me .form .call-me-button:hover {
  background-color: rgb(27, 232, 0);
}

main .call-me .form .call-me-button:active {
  background-color: rgb(44, 255, 16);
  box-shadow: 0 0 0 0 rgb(15, 129, 0);
  transform: translateY(10px);
}

main .call-me .form .call-me-zap-icon {
  width: 25px;
  filter: brightness(0) invert(1);
}

main .call-me .call-me-cnpj {
  text-align: center;
}

/* _______________________________________ */
/* _____________ F O O T E R _____________ */
/* _______________________________________ */

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 20px 20px 20px 20px;
  background: linear-gradient(180deg, rgb(17, 17, 17), rgb(32, 32, 32));
}

footer p {
  color: var(--text-muted);
}

footer .footer-p2 {
  font-size: 13px;
}
