@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #F17926;
  --primary-color-dark: #d6661a;
  --primary-gradient: linear-gradient(135deg, #F17926, #ff8f3d);
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
  --shadow: 0 8px 32px rgba(241, 121, 38, 0.15);
  --shadow-hover: 0 12px 48px rgba(241, 121, 38, 0.25);
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo .logo {
  font-size: 1.5rem;
  color: var(--white);
}

.logo__img {
  height: 40px; /* default small on mobile */
  width: auto;
  display: block;
  transition: height 0.2s ease;
}

/* Larger logo on wider screens */
@media (min-width: 900px) {
  .logo__img {
    height: 64px;
  }
  .nav__header {
    padding: 1.25rem 2rem;
  }
}

@media (min-width: 1200px) {
  .logo__img {
    height: 80px;
  }
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btns {
  display: none;
}

header {
  margin-top: 5rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

header::before {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(img/background6.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
}

.header__container {
  display: grid;

}

.header__content {
  padding: 4rem 1rem;
}


.header__content p {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 5.5rem;
  text-align: center;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__btns .btn {
  padding: 1rem 2rem;
}

.header__btns a {
  padding: 9px 13px;
  font-size: 1, 5rem;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius: 100%;
}

.header__btns a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.destination__container :is(.section__header, .section__description) {
  text-align: left;
  margin-inline-start: unset;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;

}

.destination__card img {
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}


/* .destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}



.destination__card img {
  width: 80%;
  margin-left: 43px;
  height: 250px;
  border-radius: 1.5rem;
  object-fit: cover;
}  */



.destination__card__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;


}

.destination__card__details h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  columns: var(--text-dark);
}

.destination__card__details p {
  columns: var(--text-light);
}

.destination__ratings {
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__ratings {
  background-color: var(--primary-color-dark);
}

.journey__grid {
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg {
  padding: 2rem;
  background-color: var(--extra-light);
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span {
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition: 0.3s;
}

.journey__card:hover .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 7px 9px;
  font-size: 1rem;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 100%;
}

.journey__card__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.journey__card__bg p {
  color: var(--extra-light);
}

.showcase__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.showcase__image img {
  max-width: 400px;
  margin-inline: auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.showcase__content h4 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-dark);
}

.showcase__content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.showcase__content .btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  background-image: url(img/showcase2.jpeg);
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  border-radius: 5px;
}

.banner__container {
  display: grid;
  gap: 2rem;
}

.banner__card {
  padding: 2rem 1rem;
  text-align: center;
  background-color: var(--extra-light);
  border-radius: 2rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card h4 {
  font-size: 5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.banner__card p {
  color: var(--text-light);

}

.discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}

@media(width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo {
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__links li:last-child {
    display: none;
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .nav__btns .button {
    padding: 75rem 2rem;
    background-color: var(--text-dark);
  }

  header {
    margin-top: 0;
  }

  .header__container {
    grid-template-columns:
      minmax(0, 1fr) repeat(5, minmax(0, calc(var(--max-width)/ 5))) minmax(0, 1fr);
  }

  .header__content {
    grid-column: 2/4;
    padding-block: 8rem;
  }

  .header__content :is(p, h1) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .header__image {
    grid-column: 4.5/8;
    position: relative;
    isolation: isolate;
    height: 100%;
  }

  .header__image img {
    position: absolute;
    top: 2rem;
    left: 0;
    height: 100%;
    width: unset;
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase__content {
    grid-column: 2/4;
  }

  .banner__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}


@media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}

/* Estilos para galeria de veículos */
.vehicle-gallery {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
}

.vehicle-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.image-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80%;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
  background-color: var(--primary-color);
}

.dot:hover {
  background-color: var(--primary-color);
}

/* Botão WhatsApp */
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.2rem;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: scale(1.1);
}

/* Ajustes para grid de veículos */
.destination__grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* ===========================================
   HERO SECTION - DESIGN TOTALMENTE NOVO
=========================================== */

header {
  margin-top: 0;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 0;
}

.gradient__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(241, 121, 38, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 143, 61, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, rgba(241, 121, 38, 0.02) 0%, transparent 50%);
}

.geometric__shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(241, 121, 38, 0.1), rgba(255, 143, 61, 0.05));
  animation: geometricFloat 15s ease-in-out infinite;
}

.shape__1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.shape__2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: -5s;
}

.shape__3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 50%;
  animation-delay: -10s;
}

.shape__4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 20%;
  animation-delay: -7.5s;
}

@keyframes geometricFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translate(20px, -20px) rotate(90deg) scale(1.1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-10px, 10px) rotate(180deg) scale(0.9);
    opacity: 0.4;
  }

  75% {
    transform: translate(15px, 5px) rotate(270deg) scale(1.05);
    opacity: 0.6;
  }
}

.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.intro__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 2px solid rgba(241, 121, 38, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  max-width: fit-content;
  box-shadow: 0 4px 20px rgba(241, 121, 38, 0.1);
  overflow: hidden;
}

.badge__icon {
  width: 24px;
  height: 24px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
}

.badge__text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge__glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(241, 121, 38, 0.1), transparent);
  animation: badgeGlow 3s ease-in-out infinite;
}

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

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.title__line {
  display: block;
  margin-bottom: 0.25rem;
}

.title__line--1 {
  color: var(--text-dark);
}

.title__line--2 {
  color: var(--text-dark);
}

.title__highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title__premium {
  position: relative;
  color: var(--text-dark);
}

.title__premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.hero__description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.description__text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.description__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature__pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 121, 38, 0.1);
  border: 1px solid rgba(241, 121, 38, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 600;
}

.feature__pill i {
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.action__primary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(241, 121, 38, 0.25);
  overflow: hidden;
  min-width: 280px;
}

.action__primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(241, 121, 38, 0.35);
}

.btn__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.btn__content {
  flex: 1;
  text-align: left;
}

.btn__text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.btn__subtext {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.125rem;
}

.btn__arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.action__primary:hover .btn__arrow {
  transform: translateX(5px);
}

.btn__ripple {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.action__primary:hover .btn__ripple {
  left: 100%;
}

.action__secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--primary-color);
  border: 2px solid rgba(241, 121, 38, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.action__secondary:hover {
  background: rgba(241, 121, 38, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(241, 121, 38, 0.15);
}

.secondary__icon {
  width: 32px;
  height: 32px;
  background: rgba(241, 121, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero__stats {
  margin-top: 1rem;
}

.stats__container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border: 1px solid rgba(241, 121, 38, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.stat__item {
  text-align: center;
}

.stat__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(241, 121, 38, 0.2);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual__showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.showcase__image {
  position: relative;
  z-index: 2;
}

.vehicle__image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(241, 121, 38, 0.2));
  animation: vehicleFloat 6s ease-in-out infinite;
}

.image__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(241, 121, 38, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: imageGlow 4s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes vehicleFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@keyframes imageGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.showcase__elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating__badge {
  position: absolute;
  background: white;
  border: 1px solid rgba(241, 121, 38, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: floatingBadge 4s ease-in-out infinite;
  z-index: 3;
}

.floating__badge i {
  color: var(--primary-color);
}

.floating__badge--1 {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.floating__badge--2 {
  bottom: 25%;
  left: -15%;
  animation-delay: -1.5s;
}

.floating__badge--3 {
  top: 60%;
  right: 5%;
  animation-delay: -3s;
}

@keyframes floatingBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll__indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll__indicator:hover {
  transform: translateY(-3px);
}

.scroll__text {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.scroll__arrow {
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid rgba(241, 121, 38, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes scrollBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* ===========================================
   RESPONSIVE HERO
=========================================== */

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__visual {
    order: -1;
  }

  .stats__container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero__container {
    padding: 1rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .action__primary {
    min-width: auto;
  }

  .stats__container {
    flex-direction: column;
    gap: 1rem;
  }

  .stat__divider {
    width: 60px;
    height: 1px;
  }

  .floating__badge {
    display: none;
  }

  .shape {
    display: none;
  }
}

/* ===========================================
   NOVO DESIGN INOVADOR - VEHICLES SECTION
=========================================== */

.vehicles__container {
  /* background: linear-gradient(135deg, 
    rgba(241, 121, 38, 0.95) 0%, 
    rgba(248, 249, 250, 0.3) 20%,
    #f8f9fa 40%, 
    #ffffff 100%); */
  position: relative;
  overflow: hidden;
}

.vehicles__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(241, 121, 38, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.section-header-modern {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 121, 38, 0.1);
  border: 1px solid rgba(241, 121, 38, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vehicles-scroll-container {
  position: relative;
  z-index: 1;
}

.vehicles-grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.vehicles-grid::-webkit-scrollbar {
  height: 8px;
}

.vehicles-grid::-webkit-scrollbar-track {
  background: rgba(241, 121, 38, 0.1);
  border-radius: 10px;
}

.vehicles-grid::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 10px;
}

.vehicle-card {
  min-width: 350px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  scroll-snap-align: start;
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.vehicle-card.luxury {

  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.vehicle-images {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.vehicle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vehicle-img.active {
  opacity: 1;
}

.image-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
  z-index: 2;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.vehicle-card:hover .nav-btn {
  opacity: 1;
}

.nav-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.image-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.luxury-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 2;
}

.vehicle-info {
  padding: 1.5rem;
}

.vehicle-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.vehicle-card.luxury .vehicle-category {
  color: var(--primary-color);
}

.vehicle-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.vehicle-card.luxury .vehicle-info h3 {
  color: white;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-light);
  background: rgba(241, 121, 38, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

.vehicle-card.luxury .feature {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.feature i {
  color: var(--primary-color);
  font-size: 1rem;
}

.vehicle-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicle-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(241, 121, 38, 0.4);
}

.luxury-cta {
  background: var(--primary-gradient);
  border: 2px solid var(--primary-color);
}

.scroll-indicators {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: rgba(241, 121, 38, 0.1);
  border-radius: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

/* ===========================================
   SECTION SOBRE - DESIGN MODERNO
=========================================== */

.about__container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(241, 121, 38, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.about__card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(241, 121, 38, 0.1);
}

.about__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(241, 121, 38, 0.15);
  border-color: rgba(241, 121, 38, 0.3);
}

.card__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.icon__bg {
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.icon__bg i {
  font-size: 2rem;
  color: white;
}

.icon__glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--primary-gradient);
  border-radius: 24px;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.about__card:hover .icon__glow {
  opacity: 0.4;
}

.card__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card__content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.card__feature i {
  font-size: 1.25rem;
}

.card__hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(241, 121, 38, 0.05), transparent);
  transition: left 0.6s ease;
}

.about__card:hover .card__hover-effect {
  left: 100%;
}

/* ===========================================
   ESTATÍSTICAS MODERNAS
=========================================== */

.banner__container {
  padding: 0;
  margin: 0;
}

.stats__wrapper {
  position: relative;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 4rem 2rem;
  overflow: hidden;
}

.stats__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.stats__pattern {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(241, 121, 38, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(255, 143, 61, 0.08) 0%, transparent 50%);
}

.stats__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 121, 38, 0.3);
}

.stat__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.stat__content {
  position: relative;
}

.stat__number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  display: inline-block;
  margin: 0;
}

.stat__suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.stat__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(241, 121, 38, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.stat__card:hover .stat__glow {
  transform: translate(-50%, -50%) scale(1);
}

/* ===========================================
   SHOWCASE SECTION REDESENHADA
=========================================== */

.showcase__section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.showcase__section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(241, 121, 38, 0.03) 0%, transparent 100%);
  z-index: 0;
}

.showcase__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 121, 38, 0.1);
  border: 1px solid rgba(241, 121, 38, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.showcase__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.showcase__features {
  margin-bottom: 2.5rem;
}

.feature__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature__item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.feature__item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

.showcase__cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta__primary {
  position: relative;
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cta__primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn__content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.btn__glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta__primary:hover .btn__glow {
  left: 100%;
}

.cta__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info__icon {
  width: 50px;
  height: 50px;
  background: rgba(241, 121, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.info__text span {
  font-size: 0.875rem;
  color: var(--text-light);
  display: block;
}

.info__text p {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.showcase__visual {
  position: relative;
}

.visual__main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.visual__main img {
  width: 100%;
  height: auto;
  display: block;
}

.visual__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(241, 121, 38, 0.1) 0%, transparent 50%);
}

.overlay__element {
  position: absolute;
  border-radius: 50%;
  background: rgba(241, 121, 38, 0.2);
  animation: float 6s ease-in-out infinite;
}

.overlay__1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.overlay__2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 15%;
  animation-delay: -2s;
}

.overlay__3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 60%;
  animation-delay: -4s;
}

.visual__floating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating__card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: floatCard 4s ease-in-out infinite;
}

.floating__card:first-child {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.floating__card:last-child {
  bottom: 15%;
  left: -10%;
  animation-delay: -2s;
}

.floating__card i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===========================================
   RESPONSIVE UPDATES
=========================================== */

@media (max-width: 1024px) {
  .showcase__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat__card {
    padding: 1.5rem;
  }

  .stat__number {
    font-size: 2.5rem;
  }

  .showcase__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating__card {
    display: none;
  }
}

/* ===========================================
   ANIMATION FOR COUNTING NUMBERS
=========================================== */

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .header__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .vehicle-card {
    min-width: 320px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .header__btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat h3 {
    font-size: 1.5rem;
  }

  .vehicle-card {
    min-width: 300px;
  }

  .vehicles-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .vehicle-gallery {
    height: 180px;
  }
}

/* ===========================================
   SEÇÃO QUALIDADE E CONFORTO
=========================================== */

.quality__container {
  padding: 5rem 1rem;
  /* background: linear-gradient(135deg, 
    #ffffff 0%, 
    #f8f9fa 50%,
    rgba(248, 249, 250, 0.8) 80%,
    rgba(241, 121, 38, 0.1) 100%); */
  position: relative;
}

.quality__container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, rgba(241, 121, 38, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.quality__wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quality__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quality__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature__icon {
  width: 24px;
  height: 24px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.quality__feature p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.quality__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.contact__number {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 700;
}

.quality__visual {
  position: relative;
}

.quality__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.quality__image img {
  width: 100%;
  height: auto;
  display: block;
}

.image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.overlay__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  max-width: fit-content;
}

.overlay__badge i {
  color: var(--primary-color);
}

.overlay__badge--bottom {
  align-self: flex-start;
}

/* ===========================================
   SEÇÃO ESTATÍSTICAS CORRIGIDA
=========================================== */

.stats__container {
  padding: 5rem 1rem;
  /* background: linear-gradient(135deg, #f8f9fa 0%, var(--primary-color) 50%, #e67e22 100%); */
  color: white;
  position: relative;
  background-color: transparent;
}

.stats__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, 
    rgba(248, 249, 250, 0.95) 0%, 
    rgba(241, 121, 38, 0.95) 30%, 
    rgba(241, 121, 38, 1) 100%); */
  z-index: 1;
}

.stats__wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stats__header {
  margin-bottom: 3rem;
}

.stats__header .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.stats__header .section__header {
  color: white;
  margin-top: 1rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat__card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.stat__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.stat__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat__number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.stat__number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat__suffix {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.stat__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0;
}

.stat__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat__card:hover .stat__glow {
  opacity: 1;
}

/* ===========================================
   RESPONSIVE - QUALIDADE E STATS
=========================================== */

@media (max-width: 1024px) {
  .quality__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .quality__visual {
    order: -1;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .quality__container {
    padding: 3rem 1rem;
  }

  .quality__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .stats__container {
    padding: 3rem 1rem;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat__number {
    font-size: 2.5rem;
  }

  .stat__suffix {
    font-size: 1.5rem;
  }
}