﻿/* ========================================
   AUTO INJECT â€” Landing Page Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200..700&family=Open+Sans:wght@400;500;600&display=swap');

/* ========== VARIABLES ========== */
:root {
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Oswald', sans-serif;
  --font-alt: 'Open Sans', sans-serif;

  --surface-1: #f5f5f5;
  --surface-2: #ebebeb;
  --surface-3: #e0e0e0;
  --surface-4: #cccccc;
  --text-1: #1a1a1a;
  --text-2: #555555;
  --text-3: #888888;

  /* Brand colors inspired by the logo (blue + red) */
  --brand-primary: #005baa;
  --brand-secondary: #cc0000;
  --brand-gradient: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));

  --nav-height: 90px;
  --container-max: 1200px;
  --container-wide: 1400px;
  --gap: 2rem;
  --radius: 12px;
  --radius-sm: 8px;

  --transition: 0.3s ease;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--surface-1);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ========== UTILITY ========== */
.text-brand {
  color: var(--brand-primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ========== BUTTONS ========== */
.LinkButton {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  letter-spacing: 1px;
}

.LinkButton.Primary {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}

.LinkButton.Primary:hover {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.LinkButton.secondary {
  background: transparent;
  color: var(--text-1);
  border-color: var(--text-1);
}

.LinkButton.secondary:hover {
  background: var(--text-1);
  color: var(--surface-1);
}

/* ========== NAVBAR ========== */
.Navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, #ffffff, #e8e8e8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: var(--nav-height);
}

.Navbar .container {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 100%;
}

.Logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu > header {
  display: none;
}

.NavLink {
  color: var(--text-1);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
  position: relative;
}

.NavLink::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

.NavLink:hover::after,
.NavLink.active::after {
  width: 100%;
}

.NavLink:hover {
  color: var(--brand-primary);
}

.NavButton {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-1);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .logo-img {
    height: 50px;
  }

  .NavButton {
    display: flex;
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 1001;
    padding-top: 0;
  }

  .menu.open {
    display: flex;
  }

  .menu > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--surface-3);
    margin-bottom: 1rem;
  }

  .menu .NavLink {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid var(--surface-3);
  }

  .menu .NavLink::after {
    display: none;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
}

.hero > * {
  grid-area: 1 / 1;
}

.hero .visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  gap: 1rem;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
  background: var(--brand-primary);
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
}

.hero-badge-bosch {
  display: block;
  text-align: center;
  margin-bottom: 1.2rem;
  font-family: var(--font-alt);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
}

.hero-badge-bosch i {
  color: #ee1c25;
  margin-right: 0.3rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-desc {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #e0e0e0;
  max-width: 700px;
  font-family: var(--font-alt);
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 0.5rem;
}

.hero .wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .LinkButton.secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.hero .LinkButton.secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* Hero Social - hidden on desktop, visible on mobile */
.hero-social {
  display: none;
}

@media (max-width: 768px) {
  .hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hero-social a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
  }
}

/* ========== FOLD ========== */
.fold {
  display: grid;
  justify-content: center;
  padding: 5rem 1.5rem;
  background: var(--surface-1);
}

.fold p {
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  max-width: 700px;
  line-height: 1.4;
  font-weight: 300;
}

/* ========== SOBRE ========== */
.section-sobre {
  background: var(--surface-2);
  padding: clamp(1.5rem, 4vh, 6rem) 0;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.section-sobre > .subject {
  width: 100%;
}

.section-sobre .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
}

.sobre-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: clamp(0.5rem, 1.5vh, 1.5rem);
  text-transform: uppercase;
}

.sobre-content p {
  color: var(--text-2);
  font-family: var(--font-alt);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  margin-bottom: clamp(0.4rem, 0.8vh, 1rem);
  line-height: 1.55;
}

.sobre-numbers {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(0.8rem, 1.5vh, 2rem);
  flex-wrap: wrap;
}

.number-item {
  text-align: center;
}

.number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vh, 3rem);
  color: var(--brand-primary);
  line-height: 1;
}

.number::after {
  content: '+';
}

.number-label {
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sobre-video {
  border-radius: var(--radius);
  overflow: hidden;
}

.sobre-video iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: var(--radius);
  background: var(--surface-3);
}

/* Sobre - Tablet */
@media (max-width: 1024px) {
  .section-sobre .container {
    gap: 2rem;
  }
}

/* Sobre - Mobile */
@media (max-width: 768px) {
  .section-sobre {
    min-height: auto;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
  }

  .section-sobre .container {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 2vh, 1.5rem);
  }

  .sobre-content h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 0.5rem;
  }

  .sobre-content p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    line-height: 1.45;
  }

  .sobre-numbers {
    justify-content: center;
    margin-top: 0.5rem;
    gap: 1.5rem;
  }

  .number {
    font-size: 2rem;
  }

  .sobre-video iframe {
    min-height: 400px;
  }
}

/* Sobre - Small phones */
@media (max-width: 480px) {
  .section-sobre {
    padding: clamp(0.5rem, 1.5vh, 1.5rem) 0;
  }

  .section-sobre .container {
    gap: 0.5rem;
  }

  .sobre-content p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.2rem;
  }

  .sobre-numbers {
    gap: 1rem;
  }

  .number {
    font-size: 1.8rem;
  }

  .number-label {
    font-size: 0.6rem;
  }

  .sobre-video iframe {
    min-height: 350px;
  }
}

/* ========== VÃDEO INSTITUCIONAL ========== */
.section-video {
  background: var(--surface-1);
  padding: 6rem 0;
}

.section-video .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.section-video h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-3);
  border: 2px dashed var(--surface-4);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-3);
}

.video-placeholder i {
  font-size: 4rem;
  color: var(--brand-primary);
  opacity: 0.5;
}

.video-placeholder p {
  font-size: 1.1rem;
  font-family: var(--font-alt);
}

/* ========== SERVIÃ‡OS (CARROSSEL SWIPER) ========== */
.section-servicos {
  background: var(--surface-1);
  padding: clamp(1rem, 2vh, 1.5rem) 0 clamp(0.5rem, 1vh, 1rem);
  overflow: hidden;
  min-height: calc(100vh - var(--nav-height));
  max-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.section-servicos > .subject {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

.servicos-header {
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto clamp(0.4rem, 1vh, 0.8rem);
  padding: 0 1.5rem;
}

.servicos-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: clamp(0.2rem, 0.5vh, 0.5rem);
}

.servicos-header > p {
  color: var(--text-2);
  font-family: var(--font-alt);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
}

/* Swiper Overrides - Carousel style from reference */
.servicos-swiper {
  width: calc(min(90rem, 90%));
  margin: 0 auto;
  padding-top: clamp(0.4rem, 1vh, 0.8rem);
  padding-bottom: clamp(0.5rem, 1vh, 1.5rem);
  flex: 1;
  min-height: 0;
}

.servicos-swiper .swiper-slide {
  width: clamp(11rem, 28vw, 14rem);
  height: clamp(13rem, 55vh, 18rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.servicos-swiper .swiper-slide h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  padding: 0 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.servicos-swiper .swiper-slide p {
  color: #dadada;
  font-family: var(--font-alt);
  font-weight: 400;
  padding: 0 1.2rem;
  line-height: 1.4;
  font-size: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.servicos-swiper .swiper-slide a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  background: var(--brand-primary);
  border-radius: 50px;
  margin: 0.8rem 1.2rem 1.5rem;
  padding: 0.4rem 1.5rem;
  font-size: 0.8rem;
  transition: var(--transition);
  letter-spacing: 1px;
}

.servicos-swiper .swiper-slide a:hover {
  background: var(--brand-secondary);
  color: #fff;
}

.servicos-swiper .swiper-slide > div {
  display: none;
  opacity: 0;
  padding-bottom: 0.625rem;
}

.servicos-swiper .swiper-slide-active > div {
  display: block;
  opacity: 1;
}

/* Slide backgrounds - service images */
.swiper-slide--one {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/mecanica-geral.jpg')
      no-repeat 50% 50% / cover;
}

.swiper-slide--two {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/freios-e-suspensao.jpg')
      no-repeat 50% 50% / cover;
}

.swiper-slide--three {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/injecao-eletronica.jpg')
      no-repeat 50% 50% / cover;
}

.swiper-slide--four {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/diagnostico-computadorizado.jpg')
      no-repeat 50% 50% / cover;
}

.swiper-slide--five {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/manutencao-preventiva.png')
      no-repeat 50% 50% / cover;
}

.swiper-slide--six {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/ar-condicionado.jpeg')
      no-repeat 50% 50% / cover;
}

.swiper-slide--seven {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/sistema-eletrico2.jpg')
      no-repeat 50% 50% / cover;
}

.swiper-slide--eight {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/bateria.jpg')
      no-repeat 50% 50% / cover;
}

.swiper-slide--nine {
  background: linear-gradient(to top, rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.1)),
    url('../images/servicos/troca-fluido-de-transmissao.jpg')
      no-repeat 50% 50% / cover;
}

/* Swiper pagination */
.servicos-swiper .swiper-pagination-bullet {
  background: #fff;
}

.servicos-swiper .swiper-pagination-bullet-active {
  background: var(--brand-primary);
}

/* Swiper shadow removal */
.servicos-swiper .swiper-3d .swiper-slide-shadow-left,
.servicos-swiper .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

/* Servicos - Mobile */
@media (max-width: 768px) {
  .section-servicos {
    min-height: auto;
    max-height: none;
    padding: clamp(1rem, 2vh, 1.5rem) 0;
  }

  .servicos-header {
    margin-bottom: clamp(0.2rem, 0.5vh, 0.5rem);
  }

  .servicos-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.2rem;
  }

  .servicos-header > p {
    font-size: 0.85rem;
  }

  .servicos-swiper .swiper-slide {
    width: clamp(10rem, 60vw, 13rem);
    height: clamp(12rem, 50vh, 16rem);
  }

  .servicos-swiper .swiper-slide h2 {
    font-size: 1.1rem;
    padding-left: 0.8rem;
  }

  .servicos-swiper .swiper-slide p {
    font-size: 0.7rem;
    padding: 0 0.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .servicos-swiper .swiper-slide a {
    margin: 0.5rem 0.8rem 1rem;
    padding: 0.3rem 1.2rem;
    font-size: 0.7rem;
  }
}

/* Servicos - Small phones */
@media (max-width: 480px) {
  .servicos-swiper .swiper-slide {
    height: clamp(11rem, 45vh, 14rem);
  }
}

/* ========== MARCAS ========== */
.section-marcas {
  background: var(--surface-2);
  padding: clamp(1.5rem, 3vh, 6rem) 0;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.section-marcas > .subject {
  width: 100%;
}

.section-marcas .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.section-marcas h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: clamp(0.2rem, 0.5vh, 0.5rem);
}

.marcas-desc {
  color: var(--text-2);
  font-family: var(--font-alt);
  max-width: 600px;
  margin: 0 auto clamp(1rem, 2vh, 2.5rem);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

.marca-card {
  background: var(--surface-3);
  border: 1px solid var(--surface-4);
  border-radius: var(--radius);
  padding: clamp(0.6rem, 1.5vh, 1.5rem) clamp(0.5rem, 1vw, 1rem);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.3rem, 0.8vh, 0.8rem);
  aspect-ratio: 1;
}

.marca-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  background: var(--surface-4);
}

.marca-card img {
  width: clamp(40px, 6vw, 70px);
  height: clamp(40px, 6vw, 70px);
  object-fit: contain;
  opacity: 0.85;
  transition: var(--transition);
}

.marca-card:hover img {
  opacity: 1;
}

.marca-card span {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.marca-card:hover span {
  color: var(--text-1);
}

@media (max-width: 1024px) {
  .marcas-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
  }

  .marca-card img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .section-marcas {
    min-height: auto;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
  }

  .marcas-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
  }

  .marca-card {
    padding: 0.5rem;
    gap: 0.2rem;
  }

  .marca-card img {
    width: 40px;
    height: 40px;
  }

  .marca-card span {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .marcas-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
  }

  .marca-card {
    padding: 0.4rem 0.2rem;
    border-radius: 8px;
  }

  .marca-card img {
    width: 32px;
    height: 32px;
  }

  .marca-card span {
    font-size: 0.5rem;
  }
}

/* ========== CONDIÃ‡Ã•ES COMERCIAIS ========== */
.section-condicoes {
  background: var(--surface-1);
  padding: clamp(1.5rem, 3vh, 6rem) 0;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.section-condicoes > .subject {
  width: 100%;
}

.section-condicoes .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.condicoes-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 2vh, 2rem);
}

.condicoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

.condicao-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vh, 2rem);
  border: 1px solid var(--surface-3);
  transition: var(--transition);
}

.condicao-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}

.condicao-card i {
  font-size: clamp(1.5rem, 3vh, 2.5rem);
  color: var(--brand-primary);
  margin-bottom: clamp(0.4rem, 1vh, 1rem);
}

.condicao-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  margin-bottom: clamp(0.2rem, 0.5vh, 0.5rem);
}

.condicao-card p {
  color: var(--text-2);
  font-family: var(--font-alt);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  line-height: 1.4;
}

/* Condicoes - Tablet */
@media (max-width: 1024px) {
  .condicoes-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
  }
}

/* Condicoes - Mobile */
@media (max-width: 768px) {
  .section-condicoes {
    min-height: auto;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
  }

  .condicoes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .condicao-card {
    padding: 1rem;
  }

  .condicao-card i {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .condicao-card h3 {
    font-size: 1.1rem;
  }

  .condicao-card p {
    font-size: 0.75rem;
  }
}

/* Condicoes - Small phones */
@media (max-width: 480px) {
  .condicoes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .condicao-card {
    padding: 0.8rem;
  }

  .condicao-card i {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .condicao-card h3 {
    font-size: 1rem;
  }

  .condicao-card p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* ========== LEVA E TRAZ ========== */
.section-levatraz {
  background: var(--surface-2);
  padding: clamp(1.5rem, 3vh, 6rem) 0;
  text-align: center;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.section-levatraz > .subject {
  width: 100%;
}

.section-levatraz .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.levatraz-icon {
  margin-bottom: clamp(0.3rem, 1vh, 1rem);
}

.levatraz-icon i {
  font-size: clamp(2rem, 4vh, 4rem);
  color: var(--brand-primary);
}

.section-levatraz h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: clamp(0.4rem, 1vh, 1rem);
}

.section-levatraz > .subject > .container > p {
  color: var(--text-2);
  font-family: var(--font-alt);
  max-width: 600px;
  margin: 0 auto clamp(1rem, 2.5vh, 3rem);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.5;
}

.levatraz-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1rem, 2.5vh, 3rem);
}

.step {
  position: relative;
}

.step-icon {
  font-size: clamp(1.8rem, 3.5vh, 2.5rem);
  color: var(--brand-primary);
  margin-bottom: clamp(0.4rem, 1vh, 1rem);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 400;
  margin-bottom: clamp(0.2rem, 0.5vh, 0.5rem);
}

.step p {
  color: var(--text-2);
  font-family: var(--font-alt);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  line-height: 1.4;
}

/* Leva e Traz - Mobile */
@media (max-width: 768px) {
  .section-levatraz {
    min-height: auto;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
  }

  .levatraz-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .step-icon {
    font-size: 1.5rem;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.68rem;
  }
}

/* Leva e Traz - Small phones */
@media (max-width: 480px) {
  .section-levatraz {
    padding: clamp(0.8rem, 1.5vh, 1.5rem) 0;
  }

  .levatraz-icon i {
    font-size: 1.8rem;
  }

  .levatraz-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }

  .step-icon {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .step h3 {
    font-size: 0.9rem;
  }

  .step p {
    font-size: 0.65rem;
    line-height: 1.3;
  }
}

/* ========== DIFERENCIAIS ========== */
.section-diferenciais {
  background: var(--surface-1);
  padding: clamp(1.5rem, 3vh, 6rem) 0;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.section-diferenciais > .subject {
  width: 100%;
}

.section-diferenciais .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.section-diferenciais h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 2vh, 2.5rem);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  text-align: left;
}

.Card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vh, 2rem);
  border: 1px solid var(--surface-3);
  transition: var(--transition);
  display: flex;
  gap: clamp(0.5rem, 1vw, 1rem);
  align-items: flex-start;
}

.Card:hover {
  border-color: var(--brand-primary);
  background: var(--surface-3);
  transform: translateY(-4px);
}

.Card > i {
  font-size: clamp(1.3rem, 2.5vh, 2rem);
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.Card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 400;
  margin-bottom: clamp(0.1rem, 0.3vh, 0.3rem);
}

.Card p {
  color: var(--text-2);
  font-family: var(--font-alt);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  line-height: 1.45;
}

/* Diferenciais - Mobile */
@media (max-width: 768px) {
  .section-diferenciais {
    min-height: auto;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .Card {
    padding: 0.8rem;
    gap: 0.5rem;
  }

  .Card > i {
    font-size: 1.2rem;
  }

  .Card h3 {
    font-size: 1rem;
  }

  .Card p {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

/* Diferenciais - Small phones */
@media (max-width: 480px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .Card {
    padding: 0.6rem;
    flex-direction: column;
    gap: 0.3rem;
  }

  .Card > i {
    font-size: 1.1rem;
  }

  .Card h3 {
    font-size: 0.95rem;
  }

  .Card p {
    font-size: 0.68rem;
    line-height: 1.3;
  }
}

/* ========== CTA / CONTATO ========== */
.section-contato {
  background: var(--surface-2);
  padding: 0;
  text-align: center;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

.section-contato > .subject {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--nav-height));
}

.section-contato .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-contato h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: clamp(0.8rem, 2vh, 1.5rem);
}

.section-contato > .subject > .container > p {
  color: var(--text-2);
  font-family: var(--font-alt);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  margin-bottom: clamp(1.2rem, 3vh, 2.5rem);
  line-height: 1.6;
}

.cta-large {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  padding: clamp(0.8rem, 1.5vh, 1rem) clamp(2rem, 3vw, 3rem);
}

.contato-social {
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
  text-align: center;
}

.contato-social p {
  color: #000;
  font-family: var(--font-alt);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.contato-social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.contato-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #888;
  color: #fff;
  font-size: 1.3rem;
  transition: var(--transition);
}

.contato-social-icons a:hover {
  transform: translateY(-2px);
}

.contato-social-icons a[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.contato-social-icons a[aria-label="Localização"]:hover {
  background: #e53935;
}

/* Contato - Mobile */
@media (max-width: 768px) {
  .section-contato {
    min-height: auto;
    padding: clamp(2rem, 5vh, 4rem) 0;
  }

  .section-contato > .subject {
    min-height: auto;
  }

  .section-contato h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .section-contato > .subject > .container > p {
    font-family: var(--font-alt);
  }

  .section-contato h2 br,
  .section-contato p br {
    display: none;
  }

  .cta-large {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.85rem 2rem;
  }
}

/* Contato - Small phones */
@media (max-width: 480px) {
  .section-contato .container {
    padding: 0 1rem;
  }

  .section-contato h2 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(to top, #ffffff, #e8e8e8);
  color: var(--text-1);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.footer-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 65px;
}

.footer-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-logo {
  height: 65px;
  width: auto;
}

.footer-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-google {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--surface-4);
  transition: var(--transition);
  text-decoration: none;
}

.footer-google svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-google img.google-logo-img {
  height: 18px;
  width: auto;
  flex-shrink: 0;
}

.footer-google:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.footer-google-label {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  letter-spacing: 0.03em;
}

.footer-center {
  text-align: center;
  line-height: 1.4;
}

.footer-copy {
  color: var(--text-3);
  font-size: 0.75rem;
  font-family: var(--font-alt);
  max-inline-size: none;
}

.footer-credit {
  color: var(--text-3);
  font-size: 0.65rem;
  font-family: var(--font-alt);
  text-align: center;
  max-inline-size: none;
}

.footer-credit a {
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: var(--text-1);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 0.6rem 0.5rem;
  }

  .footer-wrap {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-height: auto;
  }

  .footer-left {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-logo {
    height: 35px;
  }

  .footer-right {
    position: static;
    transform: none;
  }

  .footer-center {
    width: 100%;
    text-align: center;
  }

  .footer-copy,
  .footer-credit {
    display: block;
    width: 100%;
    max-width: 100%;
    max-inline-size: 100% !important;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .footer-copy {
    font-size: 0.55rem;
    white-space: normal;
  }

  .footer-credit {
    font-size: 0.5rem;
  }

  .footer-google {
    padding: 0.3rem 0.6rem;
  }

  .footer-google svg {
    width: 16px;
    height: 16px;
  }

  .footer-google img.google-logo-img {
    height: 14px;
  }

  .footer-google-label {
    font-size: 0.5rem;
  }
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ========== COMPREHENSIVE RESPONSIVE ========== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero .content {
    padding: 0 1rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
  }

  .hero h1 br,
  .hero-desc br {
    display: none;
  }

  .hero .wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }

  .hero .wrapper .LinkButton {
    width: 100%;
    justify-content: center;
  }

  .fold {
    padding: 1.5rem 1rem;
  }

  .servicos-swiper {
    width: 95%;
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .hero .content {
    padding: 0 0.75rem;
    gap: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .fold p {
    font-size: 1.1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 1rem;
    right: 1rem;
  }
}

/* Very small phones (max-width: 360px) */
@media (max-width: 360px) {
  .LinkButton {
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
  }

}

/* ========== ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
  .subject {
    opacity: 0;
  }

  .reveal-up {
    animation: fade-in 660ms ease forwards,
      slide-up 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
  }

  .reveal-down {
    animation: fade-in 660ms ease forwards,
      slide-down 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
  }

  @keyframes fade-in {
    to {
      opacity: 1;
    }
  }

  @keyframes slide-up {
    from {
      transform: translateY(-60px);
    }
  }

  @keyframes slide-down {
    from {
      transform: translateY(60px);
    }
  }
}

/* ========== SCROLL-DRIVEN SECTION TRANSITIONS ========== */
@media (prefers-reduced-motion: no-preference) {
  .section-marcas {
    animation: bg-to-dark linear both;
    animation-timeline: view();
    animation-range-start: 4%;
    animation-range-end: 16%;
  }

  @keyframes bg-to-dark {
    to {
      background-color: var(--surface-1);
    }
  }
}
