/* =========================================================
  CHR TELHADOS - STYLE.CSS
  ---------------------------------------------------------
  Arquivo visual principal do site.

  Organização:
  01. Variáveis e reset
  02. Componentes globais
  03. Cabeçalho
  04. Hero section
  05. Diferenciais e números
  06. Sobre
  07. Serviços
  08. Conteúdo SEO
  09. Galeria
  10. Avaliações e formulário de avaliação
  11. Formulário de orçamento
  12. Cidades atendidas
  13. CTA final
  14. Rodapé
  15. WhatsApp flutuante
  16. Modal da galeria
  17. Responsividade
========================================================= */

/* =========================================================
  01. VARIÁVEIS E RESET
========================================================= */
:root {
  --color-red: #d40000;
  --color-red-dark: #a90000;
  --color-red-light: #f01818;
  --color-black: #101010;
  --color-black-soft: #171717;
  --color-white: #ffffff;
  --color-light: #f6f6f6;
  --color-border: #e9e9e9;
  --color-text: #151515;
  --color-muted: #5f5f5f;
  --color-whatsapp: #25d366;

  --font-main: 'Montserrat', Arial, sans-serif;
  --container-width: 1180px;
  --header-height: 96px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.10);
  --shadow-medium: 0 16px 40px rgba(0, 0, 0, 0.16);
  --shadow-red: 0 14px 28px rgba(212, 0, 0, 0.28);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: auto;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

/* =========================================================
  02. COMPONENTES GLOBAIS
========================================================= */
.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.section {
  padding: 74px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

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

.section-title h2::after {
  content: '';
  width: 58px;
  height: 4px;
  background: var(--color-red);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--color-muted);
  line-height: 1.7;
  font-weight: 500;
}

.section-kicker {
  display: inline-block;
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  padding: 15px 24px;
  box-shadow: var(--shadow-red);
}

.btn-primary i {
  font-size: 2rem;
}

.btn-outline {
  color: var(--color-red);
  border: 2px solid var(--color-red);
  padding: 15px 22px;
}

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

.btn-small {
  margin: 28px auto 0;
  width: fit-content;
  padding: 13px 28px;
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: var(--shadow-red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 900;
  margin-top: 24px;
}

/* =========================================================
  03. CABEÇALHO
========================================================= */
.main-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

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

.logo-area {
  display: flex;
  align-items: center;
  line-height: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-black);
  position: relative;
  padding: 10px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--color-red);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 900;
  padding: 14px 19px;
  border-radius: 9px;
  box-shadow: var(--shadow-red);
  transition: transform var(--transition), background var(--transition);
}

.header-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--color-red-dark);
}

.header-whatsapp i {
  font-size: 1.25rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--color-red);
  font-size: 1.35rem;
  cursor: pointer;
}
:root {
  --header-height: 122px;
}

/* =========================================================
  04. HERO SECTION
========================================================= */

.hero {
  min-height: 585px;
  display: grid;
  grid-template-columns: 38% 62%;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 70px 0 55px max(3vw, calc((100vw - var(--container-width)) / 2));
}

.hero-detail-line {
  width: 76px;
  height: 4px;
  background: var(--color-red);
  display: block;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 4.35rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-red);
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

.hero-title span {
  display: block;
  color: var(--color-black);
}

.hero-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 6px;
  background: var(--color-red);
  margin-top: 20px;
}

.hero-subtitle {
  font-size: clamp(1.35rem, 2.5vw, 1.72rem);
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 26px;
}

.hero-services {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-bottom: 30px;
}

.hero-services li {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-services i {
  color: var(--color-red);
  margin-right: 10px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-area {
  min-height: 585px;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 585px;
  overflow: hidden;
  clip-path:none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 585px;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity .8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.08), rgba(0,0,0,.02));
  pointer-events: none;
}
.hero {
  grid-template-columns: 42% 58%;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  clip-path: none;
}

.hero-image-area::before{
    content:'';
    position:absolute;

    left:-90px;
    top:0;

    width:180px;
    height:100%;

    background:#f90505;

    transform:skewX(-12deg);

    z-index:5;
}
/*===============================
svg lado direito
=================================*/
.hero-poligon{
    position:absolute;
    left:-150px;
    top:50%;
    transform:translateY(-50%);
}

/* =========================================================
  05. DIFERENCIAIS E NÚMEROS
========================================================= */
.features {
  background: linear-gradient(135deg, #0e0e0e, #181818);
  color: var(--color-white);
  padding: 42px 0;
}

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

.feature-card {
  min-height: 148px;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-card:last-child { border-right: none; }

.feature-card i {
  color: var(--color-red);
  font-size: 2.75rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-card p {
  color: #d7d7d7;
  font-size: 0.82rem;
  line-height: 1.75;
}

.stats {
  background: var(--color-white);
  padding: 34px 0;
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-grid div {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--color-red);
  font-size: 1.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stats-grid span {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

/* =========================================================
  06. SOBRE
========================================================= */
.about { background: var(--color-white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.about-text h2,
.quote-text h2 {
  max-width: 620px;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.about-text p,
.quote-text p {
  color: #444;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 14px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: stretch;
}

.about-images img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.about-images img:nth-child(2) { margin-top: 40px; }


/* =========================================================
  07. SERVIÇOS
========================================================= */
.services { background: var(--color-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 245px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 28px 17px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(212, 0, 0, 0.22);
}

.service-card i {
  color: var(--color-red);
  font-size: 3rem;
  margin-bottom: 18px;
}

.service-card h3 {
  min-height: 42px;
  font-size: 0.86rem;
  line-height: 1.35;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 0.76rem;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================================================
  08. CONTEÚDO SEO
========================================================= */
.seo-services { background: var(--color-white); padding-top: 58px; }

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.seo-grid article {
  padding: 26px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.seo-grid h3 {
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 12px;
}

.seo-grid p {
  color: #444;
  line-height: 1.8;
  font-weight: 500;
  font-size: 0.9rem;
}

/* =========================================================
  09. GALERIA
========================================================= */
.gallery { background: var(--color-light); }

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

.gallery-item {
  height: 190px;
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  background: var(--color-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

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

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

/* =========================================================
  10. AVALIAÇÕES E FORMULÁRIO DE AVALIAÇÃO
========================================================= */
.reviews { background: var(--color-white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.quote-icon {
  color: var(--color-red);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.stars {
  color: var(--color-red);
  letter-spacing: 2px;
  margin-bottom: 13px;
  font-weight: 900;
}

.review-card p {
  color: #333;
  line-height: 1.75;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.review-card strong {
  font-size: 0.9rem;
}

.review-form-card {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 30px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.review-form-card h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.review-form-card p {
  color: var(--color-muted);
  line-height: 1.75;
  font-weight: 500;
}

.review-form,
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-black);
  font-weight: 800;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 13px 14px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 4px rgba(212, 0, 0, 0.12);
}

textarea { resize: vertical; }

.full-field { grid-column: 1 / -1; }

.form-button { grid-column: 1 / -1; width: 100%; }

/* =========================================================
  11. FORMULÁRIO DE ORÇAMENTO
========================================================= */
.quote-section {
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: var(--color-white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.quote-text h2 { color: var(--color-white); }
.quote-text p { color: #dddddd; }

.quote-text ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-top: 20px;
}

.quote-text li {
  color: #eeeeee;
  font-weight: 700;
}

.quote-text i { color: var(--color-red); margin-right: 8px; }

.quote-form {
  background: var(--color-white);
  color: var(--color-black);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

/* =========================================================
  12. CIDADES ATENDIDAS
========================================================= */
.service-areas { background: var(--color-light); }

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.areas-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--color-black);
  font-weight: 800;
}

/* =========================================================
  13. CTA FINAL
========================================================= */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  padding: 44px 0;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-black) 0 45%, var(--color-red-light) 45% 100%);
  transform: rotate(45deg);
  opacity: 0.6;
}

.cta::before { left: -30px; bottom: -35px; }
.cta::after { right: 30px; top: 15px; }

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.cta-text h2 {
  text-transform: uppercase;
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-text p { line-height: 1.7; font-weight: 600; }

.cta-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition);
}

.cta-card:hover { transform: translateY(-6px); }
.cta-card i { color: var(--color-red); font-size: 2.3rem; }
.cta-card span { font-size: 0.8rem; text-transform: uppercase; font-weight: 800; }
.cta-card strong { font-size: 1.32rem; color: var(--color-black); }

/* =========================================================
  14. RODAPÉ
========================================================= */
.footer {
  background: #111;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding: 46px 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.2));
}

.footer-brand p,
.footer-column a,
.footer-column p {
  color: #d9d9d9;
  font-size: 0.86rem;
  line-height: 1.75;
}

.footer-column h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  transition: color var(--transition);
}

.footer-column a:hover { color: var(--color-red); }
.footer-column i { color: var(--color-red); margin-right: 9px; }

.social-links{
    display:flex;
    gap:16px;
    margin-top:20px;
}

.social-links a{
    width:56px;
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.15);
    border-radius:12px; /* quadrado com cantos arredondados */

    background:#111;

    transition:.3s ease;
}

.social-links a:hover{
    transform:translateY(-4px);
    border-color:#e30613;
    box-shadow:0 0 15px rgba(227,6,19,.3);
}

.social-links img{
    width:36px;
    height:36px;
    object-fit:contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #d7d7d7;
  font-size: 0.8rem;
}

.footer-bottom span { color: var(--color-red); }

/* =========================================================
  15. WHATSAPP FLUTUANTE
========================================================= */
.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.whatsapp-tooltip {
  width: 235px;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 15px 18px;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0,0,0,.08);
  animation: tooltipFloat 2.7s ease-in-out infinite;
}

.whatsapp-tooltip strong {
  display: block;
  color: var(--color-red);
  font-size: 1rem;
  line-height: 1.15;
  white-space: nowrap;
}

.whatsapp-tooltip small {
  color: #333;
  font-size: 0.92rem;
  font-weight: 500;
}

.whatsapp-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-size: 3rem;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 15px 35px rgba(0,0,0,.26);
  animation: whatsappPulse 1.8s infinite;
}

.floating-whatsapp:hover .whatsapp-icon {
  transform: scale(1.08);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.60), 0 15px 35px rgba(0,0,0,.26); transform: scale(1); }
  65% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0), 0 15px 35px rgba(0,0,0,.26); transform: scale(1.06); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 15px 35px rgba(0,0,0,.26); transform: scale(1); }
}

@keyframes tooltipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* =========================================================
  16. MODAL DA GALERIA
========================================================= */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.88);
}

.image-modal.open { display: grid; }

.image-modal img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.modal-close {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-red);
  font-size: 1.35rem;
  cursor: pointer;
}
.works-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.work-photo{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
  transition:opacity .5s ease, transform .5s ease;
}

.work-photo.trocando{
  opacity:0;
  transform:translateY(-12px);
}

/* =========================================================
  17. RESPONSIVIDADE
========================================================= */
@media (max-width: 1100px) {
  :root { --header-height: 82px; }
  .main-nav { gap: 18px; }
  .header-whatsapp span { display: none; }
  /*==.hero { grid-template-columns: 1fr; }==*/
  .hero-content { padding: 60px 22px 44px; }
  .hero-slider { clip-path: none; }
  .hero-lines-left,
  .hero-lines-right { display: none; }
  .features-grid,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); padding: 25px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid,
  .seo-grid { grid-template-columns: 1fr; }
  .cta-grid,
  .footer-grid,
  .about-grid,
  .quote-grid,
  .review-form-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: var(--shadow-medium);
  }

  .main-nav.open { display: flex; }
  .nav-link { padding: 14px; }
  .header-whatsapp { display: none; }
  .logo-img { width: 128px; }

  .section { padding: 56px 0; }
  .hero-image-area,
  .hero-slider,
  .hero-slide { min-height: 360px; }
  .features-grid,
  .stats-grid,
  .services-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 235px; }
  .about-images { grid-template-columns: 1fr; }
  .about-images img:nth-child(2) { margin-top: 0; }
  .review-form,
  .quote-form { grid-template-columns: 1fr; }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .whatsapp-tooltip {
    width: 190px;
    min-height: 66px;
    padding: 12px 14px;
  }

  .whatsapp-tooltip strong { font-size: 0.86rem; }
  .whatsapp-tooltip small { font-size: 0.8rem; }

  .whatsapp-icon {
    width: 68px;
    height: 68px;
    font-size: 2.45rem;
  }

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

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--container-width)); }
  .hero-title { font-size: 3rem; }
  .btn { width: 100%; }
  .btn-outline { padding: 14px 18px; }
  .cta-card { padding: 18px; }
  .cta-card strong { font-size: 1.05rem; }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    justify-content: flex-end;
  }

  .whatsapp-tooltip {
    flex: 1;
    width: auto;
    max-width: 230px;
  }
}
/* =========================================================
  AJUSTE DOS ÍCONES PNG DE INSTAGRAM E FACEBOOK
========================================================= */
.social-links img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}
/* =========================================================
  AJUSTE RESPONSIVO DO HERO SEM ALTERAR DESKTOP
========================================================= */

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

  .hero-content {
    padding: 55px 28px 45px;
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-image-area {
    min-height: 430px;
  }

  .hero-slider {
    min-height: 430px;
  }

  .hero-slide {
    min-height: 430px;
    object-fit: cover;
    object-position: center;
  }

  .hero-poligon-left,
  .hero-lines-left {
    opacity: .12;
  }

  .hero-divider,
  .hero-divider-art {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: left;
    padding: 45px 22px 35px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

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

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

  .hero-image-area,
  .hero-slider,
  .hero-slide {
    min-height: 330px;
  }

  .hero-slide {
    object-position: center center;
  }
}

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

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-services li {
    font-size: .88rem;
  }

  .hero-image-area,
  .hero-slider,
  .hero-slide {
    min-height: 280px;
  }
}
body {
  min-width: 1200px;
}

.main-header,
.hero,
.features,
.stats,
.about,
.services,
.gallery,
.reviews,
.quote-section,
.service-areas,
.cta,
.footer {
  min-width: 1200px;
}
