:root {
  --color-primary: #c1783a;
  --color-primary-dark: #8e5220;
  --color-secondary: #1fb5a7;
  --color-deep: #0c1015;
  --color-dark: #1a1f27;
  --color-gray: #f4f5f7;
  --color-light: #ffffff;
  --color-muted: #6c737a;
  --radius-base: 0.9rem;
  --shadow-soft: 0 25px 50px rgba(5, 6, 8, 0.12);
  --max-width: 1200px;
  
  /* Espaçamento consistente */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --spacing-section: clamp(3rem, 8vw, 5rem);
  
  /* Tipografia hierárquica */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.15rem;
  --font-size-xl: clamp(2rem, 3vw, 2.8rem);
  --font-size-xxl: clamp(2.3rem, 4.2vw, 3.8rem);
  --font-size-hero: clamp(2.1rem, 3.5vw, 3rem);
}

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

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

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

.hero {
  min-height: 95vh;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 255, 255, 0.95)
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=60")
      center / cover;
  color: var(--color-dark);
  padding: 2rem clamp(1.5rem, 5vw, 5rem) 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  width: min(var(--max-width), 100%);
  margin-left: auto;
  margin-right: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-dark);
}

.nav__brand img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.45));
  background: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

.nav__links a {
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.2s ease;
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
}

.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-dark);
  display: block;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), #e08c43);
  color: var(--color-light);
  box-shadow: 0 18px 35px rgba(193, 120, 58, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--color-dark);
  background: transparent;
}

.btn--nav {
  background: rgba(31, 181, 167, 0.15);
  border-radius: 999px;
  color: var(--color-secondary);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-light);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xxl);
  align-items: center;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  justify-items: center;
}

.hero__text {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.hero__text .eyebrow {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.hero__text h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-dark);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
  line-height: 1.6;
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-lg) 0;
  display: grid;
  gap: var(--spacing-xs);
}

.hero__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
}

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

.hero__panel {
  background: #f6f7f9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel p {
  margin: 1.5rem 0;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(70px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero__stats strong {
  display: block;
  font-size: 1.3rem;
  color: var(--color-primary);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  width: min(var(--max-width), 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero__badges span {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  background: var(--color-light);
}

.section {
  padding: var(--spacing-section) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__wrapper {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
}

.section--gradient {
  background: radial-gradient(circle at top, rgba(31, 181, 167, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(193, 120, 58, 0.15), transparent 60%),
    var(--color-light);
}

.section--color {
  background: linear-gradient(135deg, rgba(193, 120, 58, 0.08), rgba(31, 181, 167, 0.08));
}

.section--color .section__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: start;
}

.section__media {
  position: relative;
  min-height: 500px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}


.section__content .eyebrow {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: -1rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.section__content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checks span {
  background: var(--color-light);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.section--gray {
  background-color: var(--color-gray);
}

.section--dark {
  background: linear-gradient(135deg, #141920, #060709 80%);
  color: var(--color-light);
}

.section--accent {
  background: linear-gradient(120deg, rgba(193, 120, 58, 0.15), rgba(31, 181, 167, 0.15));
}

.section__header {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

#segmentos .section__header {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

#segmentos .section__header .eyebrow {
  margin-bottom: 0;
}

#segmentos .section__header h2 {
  margin-top: 0;
  flex: 1;
  min-width: 300px;
}

.section__header .eyebrow {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.section__header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.section__header p {
  font-size: var(--font-size-lg);
  color: rgba(0, 0, 0, 0.7);
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.8);
}

.cards {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--spacing-md);
  width: 100%;
  justify-content: center;
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
}

.cards--grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center;
}

.card {
  background-color: var(--color-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--color-primary);
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.card h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0;
  color: var(--color-dark);
}

.card p {
  font-size: var(--font-size-base);
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.6;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  width: 100%;
  justify-content: center;
  align-items: stretch;
  padding: 0.5rem 0;
}

.service-card {
  background-color: var(--color-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--color-secondary);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.service-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0;
  color: var(--color-dark);
}

.service-card p {
  font-size: var(--font-size-base);
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.6;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  border-radius: 0 0 0 50%;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card--construction::before {
  background-image: url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=400&q=80");
}

.service-card--painting::before {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=400&q=80");
}

.service-card--retrofit::before {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=400&q=80");
}

.service-card--maintenance::before {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=400&q=80");
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  width: 100%;
  justify-content: center;
  align-items: stretch;
  padding: 0.5rem 0;
}

.segment {
  background: var(--color-light);
  border-radius: var(--radius-base);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 400px;
}

.segment img {
  height: 200px;
  object-fit: cover;
}

.segment div {
  padding: 1.5rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  width: 100%;
  justify-content: center;
  align-items: stretch;
  padding: 0.5rem 0;
}

.gallery__item {
  padding: var(--spacing-md);
  border-radius: 1.25rem;
  color: var(--color-light);
  min-height: 200px;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1200&q=80")
      center / cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 300px;
}

.gallery__item:hover {
  transform: translateY(-4px);
}

.gallery__item:nth-child(1) {
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80");
}

.gallery__item:nth-child(2) {
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=80");
}

.gallery__item:nth-child(3) {
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80");
}

.gallery__item:nth-child(4) {
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80");
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--color-light);
  border-radius: var(--radius-base);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--color-light);
  border-radius: var(--radius-base);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.blog-card span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--color-secondary);
}

.blog-card a {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  width: 100%;
  justify-content: center;
  align-items: stretch;
  padding: 0.5rem 0;
}

.timeline__item {
  padding: var(--spacing-md) var(--spacing-sm);
  border-radius: var(--radius-base);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 3rem;
  background-color: var(--color-light);
  box-shadow: var(--shadow-soft);
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.timeline__step {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-light);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.faq {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq__item {
  background: var(--color-light);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1.5rem 2rem;
  font-family: inherit;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq__question span {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}

.faq__question span::before,
.faq__question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-dark);
}

.faq__question span::before {
  width: 8px;
  height: 2px;
}

.faq__question span::after {
  width: 2px;
  height: 8px;
  transition: opacity 0.2s ease;
}

.faq__item.is-open .faq__question span::after {
  opacity: 0;
}

.faq__answer {
  padding: 0 2rem 1.5rem;
  color: var(--color-muted);
  display: none;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.form {
  background-color: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #d9dfe7;
  border-radius: 0.5rem;
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 1rem;
}

.form textarea {
  resize: vertical;
}

.form__feedback {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact__info {
  background-color: var(--color-gray);
  padding: 2rem;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
}

.contact__info ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-muted);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 600;
}

.contact__link {
  color: var(--color-primary-dark);
}

.footer {
  padding: 0.2rem var(--spacing-md);
  background: #f8f9fa;
  color: rgba(0, 0, 0, 0.8);
}

.footer__wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding-bottom: 0.2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 0.75rem;
}

.footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 0.15rem;
}

.footer__tagline {
  font-size: var(--font-size-sm);
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.footer__contact {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer__contact h3 {
  display: none;
}

.footer__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: var(--font-size-base);
  white-space: nowrap;
}

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

.footer__link svg {
  flex-shrink: 0;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.footer__link:hover svg {
  transform: scale(1.1);
}

.footer__link span {
  word-break: break-word;
}

.footer__info {
  width: 100%;
  padding-top: 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
  margin-bottom: 0;
}

.footer__company {
  margin: 0;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
}

.footer__cnpj {
  margin: 0;
  font-size: var(--font-size-sm);
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.footer__bottom {
  width: 100%;
  padding-top: 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: rgba(0, 0, 0, 0.5);
}

.footer__back {
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer__back:hover {
  color: var(--color-secondary);
}

.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #25D366;
  color: var(--color-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-cta svg {
  width: 32px;
  height: 32px;
}

/* Responsividade - Mantendo desktop como base */
@media (max-width: 1200px) {
  .section__wrapper {
    padding: 0 var(--spacing-md);
  }
  
  .hero__content {
    gap: var(--spacing-xl);
  }
}

@media (max-width: 992px) {
  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: var(--spacing-md);
    border-radius: var(--radius-base);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    display: none;
    width: 280px;
    gap: var(--spacing-sm);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .hero__panel {
    max-width: 100%;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }
  
  .cards--grid {
    flex-wrap: wrap;
  }
  
  .card {
    min-width: 180px;
    flex: 1 1 180px;
    max-width: 280px;
  }
  
  .services {
    flex-wrap: wrap;
  }
  
  .service-card {
    min-width: 180px;
    flex: 1 1 180px;
    max-width: 280px;
  }
  
  .section--color .section__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .hero__badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xxl);
  }
  
  .hero__image-wrapper {
    height: 350px;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .gallery__item {
    min-height: 180px;
  }
  
  .cards--grid {
    flex-wrap: wrap;
  }
  
  .card {
    min-width: 160px;
    flex: 1 1 160px;
    max-width: 250px;
  }
  
  .services {
    flex-wrap: wrap;
  }
  
  .service-card {
    min-width: 160px;
    flex: 1 1 160px;
    max-width: 250px;
  }
  
  .segments {
    flex-wrap: wrap;
  }
  
  .segment {
    min-width: 280px;
    flex: 1 1 280px;
    max-width: 100%;
  }
  
  .gallery {
    flex-wrap: wrap;
  }
  
  .gallery__item {
    min-width: 180px;
    flex: 1 1 180px;
    max-width: 280px;
  }
  
  .timeline {
    flex-wrap: wrap;
  }
  
  .timeline__item {
    min-width: 180px;
    flex: 1 1 180px;
    max-width: 280px;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .blog {
    grid-template-columns: 1fr;
  }
  
  .contact {
    grid-template-columns: 1fr;
  }
  
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl);
  }
  
  .hero__image-wrapper {
    height: 280px;
  }
  
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xs);
    font-size: 0.9rem;
  }
  
  .hero__stats strong {
    font-size: 1.1rem;
  }
  
  .card {
    min-width: 140px;
    flex: 1 1 140px;
    max-width: 220px;
    padding: var(--spacing-md);
  }
  
  .service-card {
    min-width: 140px;
    flex: 1 1 140px;
    max-width: 220px;
    padding: var(--spacing-md);
  }
  
  .gallery__item {
    min-height: 160px;
    min-width: 140px;
    flex: 1 1 140px;
    max-width: 220px;
    padding: var(--spacing-md);
  }
  
  .segment {
    min-width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .timeline__item {
    min-width: 160px;
    flex: 1 1 160px;
    max-width: 250px;
    padding: var(--spacing-md) var(--spacing-sm);
    padding-top: 3rem;
  }
  
  .timeline__step {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  .floating-cta {
    right: 1rem;
    bottom: 1rem;
    width: 56px;
    height: 56px;
  }
  
  .floating-cta svg {
    width: 28px;
    height: 28px;
  }
  
  .nav__brand img {
    width: 120px;
  }
  
  .section {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .section__wrapper {
    gap: var(--spacing-lg);
  }
  
  .footer {
    padding: 0.15rem var(--spacing-sm);
  }
  
  .footer__wrapper {
    gap: 0.15rem;
  }
  
  .footer__brand {
    margin-top: 0.6rem;
  }
  
  .footer__logo {
    width: 160px;
  }
  
  .footer__links {
    gap: 0.4rem;
  }
  
  .footer__link {
    font-size: 0.95rem;
  }
  
  .footer__info {
    padding-top: 0.1rem;
    gap: 0.1rem;
  }
  
  .footer__company {
    font-size: 0.95rem;
  }
  
  .footer__cnpj {
    font-size: 0.85rem;
  }
  
  .footer__bottom {
    padding-top: 0.1rem;
    gap: 0.1rem;
  }
}

