/* Soluções Auto — Site estático */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-gray: #1a1a1a;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --red: #c41e1e;
  --red-dark: #9a1818;
  --red-light: #e02525;
  --green: #22c55e;
  --silver: #b0b0b0;
  --text-muted: #888888;
  --font: 'Montserrat', system-ui, sans-serif;
  --header-h: 88px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--red);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo img {
    display: block;
    max-height: 78px;
    width: auto;
    object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--red);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: right;
}

.header-phone-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-phone-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.header-phone-number {
  font-size: 1rem;
  font-weight: 700;
}

.header-phone-note {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  background-color: var(--dark);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--red);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--silver);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(196, 30, 30, 0.15);
  border: 1px solid rgba(196, 30, 30, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
}

.hero-feature-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.hero-feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.hero-contact-box {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  min-width: 220px;
}

.hero-contact-box .phone-icon-large {
  width: 70px;
  height: 70px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.hero-contact-box .phone-icon-large svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.hero-contact-box a {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-contact-box a:hover {
  color: var(--red);
}

.hero-contact-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Services */
.services {
  background: var(--off-white);
  color: var(--black);
  padding: 5rem 0;
}

.services .section-title {
  color: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  text-align: center;
  padding: 1.5rem 0.75rem;
  transition: var(--transition);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  background: var(--white);
  border: 2px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  border-color: var(--red);
  box-shadow: 0 8px 25px rgba(196, 30, 30, 0.15);
  transform: translateY(-4px);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--red);
  fill: none;
}

.service-card h3 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.services-cta {
  text-align: center;
}

/* About + Why */
.about {
  background: var(--black);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-content h2,
.why-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.about-content p {
  color: var(--silver);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.why-list {
  margin-bottom: 2rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
  color: var(--silver);
}

.why-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.why-image {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Gallery */
.gallery {
  background: var(--dark-gray);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact */
.contact {
  background: var(--off-white);
  color: var(--black);
  padding: 5rem 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #eee;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 30, 30, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
}

.contact-card h3 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.contact-highlight {
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-highlight-logo {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.contact-highlight-slogan {
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.contact-highlight-slogan span {
  color: var(--red);
}

.contact-highlight-tags {
  font-size: 0.8rem;
  color: var(--silver);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}

.contact-highlight-list {
  text-align: left;
  width: 100%;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.contact-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--silver);
}

.contact-highlight-btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-item strong {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.footer-item span,
.footer-item a {
  font-size: 0.8rem;
  color: var(--silver);
  line-height: 1.5;
}

.footer-item a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--silver);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Privacy page */
.page-legal {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  min-height: 60vh;
}

.page-legal h1 {
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.page-legal h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: var(--red);
}

.page-legal p {
  color: var(--silver);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.page-legal a {
  color: var(--red);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    display: block;
  }

  .header-phone-note {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-contact-box {
    display: none;
  }

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

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

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

@media (max-width: 480px) {
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

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