/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #c4962b;
  --primary-dark: #a67d1f;
  --secondary-color: #1a1a1a;
  --accent-color: #d4a84b;
  --text-color: #2d3436;
  --text-light: #636e72;
  --white: #ffffff;
  --background: #f8f9fa;
  --gradient: linear-gradient(135deg, #c4962b 0%, #d4a84b 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--gradient);
  overflow: hidden;
}

.hero.hero-compact {
  height: 60vh;
  min-height: 450px;
  padding-top: 160px; /* Compensar o header fixo */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.hero-scroll:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: scale(1.1);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>')
    repeat;
  background-size: 100px 100px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-compact .hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-title-highlight {
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    1px 1px 0 #c89020,
    2px 2px 0 #a07010,
    3px 3px 0 #7a5008,
    4px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  margin-bottom: 8px !important;
  position: relative;
  display: inline-block;
  transition:
    text-shadow 0.3s ease,
    transform 0.3s ease;
}

.hero-title-city {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 8px;
  margin-top: 4px;
  color: #fff;
  text-shadow:
    1px 1px 0 #e8b84b,
    2px 2px 0 #d4a030,
    3px 3px 0 #c09020,
    4px 4px 0 #ac8010,
    5px 5px 0 #987010,
    6px 6px 0 #846008,
    7px 7px 0 #705005,
    8px 8px 0 #5a3f02,
    9px 9px 12px rgba(0, 0, 0, 0.4),
    12px 14px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 15px;
  transition:
    text-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Mantém o teu separador decorativo */
.hero-title-city::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #fff,
    var(--primary-color),
    #fff,
    transparent
  );
  border-radius: 2px;
}

.hero-title-highlight:hover,
.hero-title-highlight:hover .hero-title-city {
  text-shadow:
    1px 1px 0 #f0c860,
    2px 2px 0 #e0a838,
    3px 3px 0 #cc9028,
    4px 4px 0 #b87818,
    5px 5px 0 #a06010,
    6px 6px 0 #8c5008,
    7px 7px 0 #784205,
    8px 8px 0 #603202,
    10px 12px 0 #4a2400,
    12px 16px 28px rgba(0, 0, 0, 0.5);
}

.hero-compact .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.hero-slogan {
  font-size: 1.5rem !important;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px !important;
}

.hero-coming-soon {
  font-size: 1.8rem !important;
  font-weight: 700;
  margin-top: 15px !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-text .partner-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-text .partner-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.comercializacao-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--background);
  padding: 12px 20px;
  border-radius: 30px;
}

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

.feature span {
  font-weight: 500;
  font-size: 0.95rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 350px;
  height: 350px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(196, 150, 43, 0.3);
}

.image-placeholder i {
  font-size: 8rem;
  color: var(--white);
}

/* Stock Section */
.stock {
  padding: 100px 0;
  background: var(--background);
}

.stock-count {
  background: var(--gradient);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.last-update {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: -35px;
  margin-bottom: 30px;
}

/* Loading e Error States */
.loading-vehicles {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.loading-vehicles i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.loading-vehicles p {
  font-size: 1.1rem;
}

.error-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.error-message i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 20px;
}

.error-message p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.error-message a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Filtros */
.stock-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

/* Grid de Veículos */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.vehicle-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(196, 150, 43, 0.2);
}

.vehicle-card.hidden {
  display: none;
}

.vehicle-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  display: none;
}

.vehicle-image {
  height: 180px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicle-image i {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.6;
}

.vehicle-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-info h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
  /* Limitar a 2 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  min-height: 2.6em;
}

.vehicle-version {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  /* Limitar a 1 linha */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vehicle-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.vehicle-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.vehicle-specs i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.vehicle-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: auto;
}

/* CTA do Stock */
.stock-cta {
  text-align: center;
  margin-top: 30px;
}

.btn-large {
  padding: 18px 45px;
  font-size: 1.1rem;
}

.stock-cta .btn-primary {
  background: var(--gradient);
  color: var(--white);
}

.stock-cta .btn-primary:hover {
  box-shadow: 0 6px 25px rgba(196, 150, 43, 0.4);
}

/* Estilos antigos mantidos para compatibilidade */
.stock-card {
  background: var(--white);
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stock-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.stock-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.stock-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.stock-card p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.stock-card .btn-primary {
  background: var(--gradient);
  color: var(--white);
}

.stock-card .btn-primary:hover {
  box-shadow: 0 6px 25px rgba(196, 150, 43, 0.4);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--secondary-color);
}

.contact .section-title {
  color: var(--white);
}

.contact .section-title::after {
  background: var(--gradient);
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contact-info-box {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  flex: 1;
  min-width: 300px;
}

.contact-info-box h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info-box p {
  color: var(--text-color);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-info-box a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-box a:hover {
  color: var(--primary-dark);
}

.email-link {
  margin-top: 15px !important;
}

.social-links-contact {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link-gold {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  color: #1a1a1a !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-link-gold i {
  color: #1a1a1a !important;
}

.social-link-gold:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(196, 150, 43, 0.4);
  color: #1a1a1a !important;
}

.map-container {
  margin-top: 40px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.map-container iframe {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 15px;
}

/* Legacy contact grid - mantido para compatibilidade */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--background);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Social Section */
.social-section {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.social-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  max-width: 300px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4,
.footer-social-section h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-color);
  width: 16px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-social-section .footer-social {
  display: flex;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  color: var(--secondary-color);
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-partner {
  font-size: 0.85rem !important;
}

.footer-partner a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.footer-partner a:hover {
  text-decoration: underline;
}

/* Legacy Footer Content - mantido para compatibilidade */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Design */

/* Tablets grandes e laptops pequenos */
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .image-placeholder {
    width: 280px;
    height: 280px;
  }

  .image-placeholder i {
    font-size: 6rem;
  }

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

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-about {
    max-width: 100%;
  }

  .hero.hero-compact {
    height: auto;
    min-height: 500px;
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

/* Tablets e dispositivos médios */
@media (max-width: 768px) {
  .nav {
    padding: 10px 15px;
  }

  .logo img {
    height: 90px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 450px;
  }

  .hero.hero-compact {
    height: auto;
    min-height: 400px;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .hero-content {
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-title-highlight {
    font-size: 1.8rem !important;
    letter-spacing: 3px;
  }

  .hero-title-city {
    font-size: 3rem;
    letter-spacing: 5px;
    padding-bottom: 12px;
  }

  .hero-title-city::after {
    width: 80px;
    height: 2px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .hero-slogan {
    font-size: 1.2rem !important;
  }

  .hero-coming-soon {
    font-size: 1.4rem !important;
    letter-spacing: 2px;
  }

  .hero-compact .hero-content h1 {
    font-size: 2rem;
  }

  .hero-compact .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .stock {
    padding: 60px 0;
  }

  .stock-card {
    padding: 40px 25px;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .contact-info-box {
    min-width: 100%;
    text-align: center;
    padding: 30px 20px;
  }

  .contact-info-box h3 {
    font-size: 1.1rem;
  }

  .contact-info-box p {
    font-size: 0.95rem;
  }

  .social-links-contact {
    justify-content: center;
  }

  .about {
    padding: 60px 0;
  }

  .about-text p {
    font-size: 0.95rem;
    text-align: center;
  }

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

  .comercializacao-title {
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .feature {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vehicle-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    min-height: 340px;
  }

  .vehicle-image {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .vehicle-info {
    padding: 18px;
    min-height: 160px;
  }

  .vehicle-info h3 {
    font-size: 1.1rem;
    min-height: 2.86em;
  }

  .vehicle-price {
    font-size: 1.3rem;
  }

  .stock-filters {
    gap: 8px;
    padding: 0 10px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .map-container {
    margin-top: 25px;
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
    border-radius: 0;
  }

  .map-container iframe {
    height: 300px;
    border-radius: 0 !important;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-about {
    margin: 0 auto;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-about p {
    font-size: 0.9rem;
  }

  .footer-contact li {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .footer-social-section .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Smartphones médios */
@media (max-width: 576px) {
  .container {
    padding: 0 12px;
  }

  .logo img {
    height: 70px;
  }

  .hero.hero-compact {
    min-height: 380px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-title-highlight {
    font-size: 1.5rem !important;
    letter-spacing: 2px;
  }

  .hero-title-city {
    font-size: 2.5rem;
    letter-spacing: 4px;
    padding-bottom: 10px;
  }

  .hero-title-city::after {
    width: 60px;
    height: 2px;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-slogan {
    font-size: 1.1rem !important;
  }

  .hero-coming-soon {
    font-size: 1.2rem !important;
    letter-spacing: 1.5px;
  }

  .hero-scroll {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .stock-count {
    font-size: 0.85rem;
    padding: 4px 12px;
  }

  .last-update {
    font-size: 0.75rem;
    margin-top: -25px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-width: 1.5px;
  }

  .vehicle-card {
    border-radius: 12px;
    min-height: 310px;
  }

  .vehicle-image {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
  }

  .vehicle-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .vehicle-info {
    padding: 15px;
    min-height: 150px;
  }

  .vehicle-info h3 {
    font-size: 1rem;
    min-height: 2.6em;
  }

  .vehicle-version {
    font-size: 0.85rem;
  }

  .vehicle-specs span {
    font-size: 0.8rem;
  }

  .vehicle-price {
    font-size: 1.2rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .comercializacao-title {
    font-size: 1.2rem;
  }

  .feature {
    padding: 8px 14px;
    border-radius: 25px;
  }

  .feature span {
    font-size: 0.85rem;
  }

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

  .image-placeholder {
    width: 180px;
    height: 180px;
  }

  .image-placeholder i {
    font-size: 4rem;
  }

  .contact-info-box {
    padding: 25px 15px;
  }

  .contact-info-box h3 {
    font-size: 1rem;
  }

  .contact-info-box p {
    font-size: 0.9rem;
  }

  .social-link-gold {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .map-container iframe {
    height: 250px;
    border-radius: 0 !important;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Smartphones pequenos */
@media (max-width: 400px) {
  .container {
    padding: 0 10px;
  }

  .logo img {
    height: 55px;
  }

  .mobile-menu {
    font-size: 1.3rem;
  }

  .hero.hero-compact {
    min-height: 350px;
    padding-top: 90px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-title-highlight {
    font-size: 1.2rem !important;
    letter-spacing: 2px;
  }

  .hero-title-city {
    font-size: 2rem;
    letter-spacing: 3px;
    padding-bottom: 8px;
  }

  .hero-title-city::after {
    width: 50px;
    height: 2px;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-slogan {
    font-size: 0.95rem !important;
  }

  .hero-coming-soon {
    font-size: 1rem !important;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .stock-filters {
    gap: 5px;
  }

  .filter-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 10px 20px;
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
  }

  .vehicle-card {
    min-height: 290px;
  }

  .vehicle-image {
    height: 140px;
    min-height: 140px;
    max-height: 140px;
  }

  .vehicle-info {
    min-height: 140px;
  }

  .vehicle-info h3 {
    font-size: 0.95rem;
    min-height: 2.47em;
  }

  .vehicle-price {
    font-size: 1.1rem;
  }

  .image-placeholder {
    width: 150px;
    height: 150px;
  }

  .image-placeholder i {
    font-size: 3rem;
  }

  .features {
    gap: 10px;
  }

  .feature {
    width: 100%;
    justify-content: center;
    padding: 10px 15px;
  }

  .contact-info-box p {
    font-size: 0.85rem;
  }

  .social-link-gold {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .footer-contact li {
    font-size: 0.85rem;
  }
}

/* Landscape mode em smartphones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero.hero-compact {
    min-height: auto;
    padding: 100px 20px 30px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .hero-scroll {
    margin-top: 10px;
  }
}

/* ========================================
   COOKIE CONSENT BANNER - LGPD/GDPR
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hide {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.cookie-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--accent-color);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.cookie-btn-accept {
  background: var(--gradient);
  color: var(--secondary-color);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(196, 150, 43, 0.4);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  text-decoration: underline;
  padding: 12px 15px;
}

.cookie-btn-reject:hover {
  color: var(--white);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 15px;
  max-width: 550px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s;
}

.cookie-modal-close:hover {
  color: var(--text-color);
}

.cookie-option {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-option h4 {
  font-size: 1rem;
  color: var(--secondary-color);
}

.cookie-option p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--gradient);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
  padding: 10px 20px;
}

.cookie-modal-footer .cookie-btn-accept {
  background: var(--gradient);
  color: var(--secondary-color);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text h3 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .cookie-modal-content {
    padding: 20px;
    margin: 10px;
  }

  .cookie-modal-header h3 {
    font-size: 1.1rem;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ========================================
   BOTÃO FLUTUANTE DE AJUDA (FAB)
   ======================================== */
.help-fab-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.help-fab-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196, 150, 43, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
}

.help-fab-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(196, 150, 43, 0.5);
}

.help-fab-button i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.help-fab-button.active i {
  transform: rotate(45deg);
}

.help-fab-menu {
  position: absolute;
  bottom: 75px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.help-fab-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.help-fab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 30px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.help-fab-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.help-fab-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.help-fab-item.whatsapp i {
  background: #25d366;
  color: white;
}

.help-fab-item.phone i {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.help-fab-item.email i {
  background: #ea4335;
  color: white;
}

.help-fab-item.privacy i {
  background: #6c757d;
  color: white;
}

.help-fab-item.cookies i {
  background: #f39c12;
  color: white;
}

/* Animação de entrada dos itens */
.help-fab-menu.show .help-fab-item:nth-child(1) {
  animation: fabItemIn 0.3s ease forwards;
  animation-delay: 0s;
}
.help-fab-menu.show .help-fab-item:nth-child(2) {
  animation: fabItemIn 0.3s ease forwards;
  animation-delay: 0.05s;
}
.help-fab-menu.show .help-fab-item:nth-child(3) {
  animation: fabItemIn 0.3s ease forwards;
  animation-delay: 0.1s;
}
.help-fab-menu.show .help-fab-item:nth-child(4) {
  animation: fabItemIn 0.3s ease forwards;
  animation-delay: 0.15s;
}
.help-fab-menu.show .help-fab-item:nth-child(5) {
  animation: fabItemIn 0.3s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fabItemIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsivo para o FAB */
@media (max-width: 576px) {
  .help-fab-container {
    bottom: 20px;
    right: 15px;
  }

  .help-fab-button {
    width: 55px;
    height: 55px;
  }

  .help-fab-button i {
    font-size: 1.3rem;
  }

  .help-fab-item {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .help-fab-item span {
    display: none;
  }

  .help-fab-item {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }

  .help-fab-item i {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
}
