/* =====================================================
   INSETIVAN SERRANA — Folha de estilo EXCLUSIVA
   Nicho: Dedetização e Controle de Pragas (Petrópolis)
   Paleta: Azul (ciano da marca) + Verde corporativo
   Tipografia forte e legível (Montserrat + Inter)
   Standalone — não depende do CSS das clínicas
   ===================================================== */

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

:root {
  /* Paleta oficial (extraída do Logo.png) */
  --cyan: #00C6DE;          /* Azul-ciano principal da marca */
  --cyan-600: #0AA6C4;      /* Ciano médio */
  --cyan-700: #0B7E99;      /* Ciano escuro (texto/acentos) */
  --cyan-tint: #E3F8FB;     /* Ciano clarinho (fundos suaves) */

  --green: #159E6E;         /* Verde corporativo (ação) */
  --green-600: #12885E;     /* Verde escuro (hover) */
  --green-700: #0E6B49;
  --green-tint: #E6F6F0;    /* Verde clarinho */

  --navy: #0C303C;          /* Azul-petróleo escuro (seções escuras) */
  --navy-900: #082530;      /* Mais profundo (rodapé) */

  --ink: #16242B;           /* Texto principal (grafite do logo) */
  --white: #FFFFFF;
  --cream: #F7FAFB;         /* Off-white frio */
  --gray-50: #F4F7F8;
  --gray-100: #EBF0F2;
  --gray-200: #DFE6E9;
  --gray-300: #C6D1D5;
  --gray-400: #94A3A9;
  --gray-500: #66757B;
  --gray-600: #47555A;

  --font-body: 'Inter', 'Roboto', sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;

  --shadow-sm: 0 1px 2px rgba(12, 48, 60, 0.06);
  --shadow-md: 0 6px 16px -4px rgba(12, 48, 60, 0.15);
  --shadow-lg: 0 16px 32px -8px rgba(12, 48, 60, 0.18);
  --shadow-xl: 0 28px 50px -12px rgba(12, 48, 60, 0.26);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   UTILITÁRIOS
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--alt { background-color: var(--cream); }

.section__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-700);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 14px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Filete que une as duas cores da marca (azul → verde) */
.brand-divider {
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  margin: 0 auto 20px;
}

/* ===========================
   BOTÕES
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}

/* Ação principal — Solicitar Orçamento (azul escuro da marca) */
.btn--primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-700) 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(12, 48, 60, 0.24);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--cyan-600) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(12, 48, 60, 0.32);
}

/* Ciano da marca */
.btn--cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-600) 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(10, 166, 196, 0.22);
}
.btn--cyan:hover {
  background: linear-gradient(135deg, var(--cyan-600) 0%, var(--cyan-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 166, 196, 0.30);
}

/* Contorno feito via inset box-shadow (mantém o tamanho idêntico aos de preenchimento) */
.btn--outline {
  background-color: transparent;
  color: var(--cyan-700);
  box-shadow: inset 0 0 0 2px var(--cyan);
}
.btn--outline:hover {
  background-color: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background-color: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn--ghost-light:hover {
  background-color: var(--white);
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--white);
}

.btn--lg { font-size: 16px; padding: 16px 34px; }

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}
.header--scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 104px;
}

.header__logo { margin-right: auto; }
.header__logo img {
  height: 84px;
  width: auto;
}

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

/* CTA de orçamento incorporado à esquerda, como destaque */
.header__cta {
  padding: 11px 22px;
  font-size: 13px;
}

.header__menu {
  display: flex;
  gap: 26px;
}

.header__menu a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}
.header__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: width 0.25s ease;
}
.header__menu a:hover { color: var(--navy); }
.header__menu a:hover::after { width: 100%; }

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.header__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle--active span:nth-child(2) { opacity: 0; }
.header__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(120% 120% at 88% 5%, var(--cyan-tint) 0%, transparent 52%),
    radial-gradient(90% 90% at 0% 100%, var(--green-tint) 0%, transparent 45%),
    linear-gradient(160deg, var(--cream) 0%, #EEF5F6 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-700);
  background-color: rgba(0, 198, 222, 0.10);
  border: 1px solid rgba(0, 198, 222, 0.28);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  line-height: 1.4;
}
.hero__tag i { color: var(--green); font-size: 16px; margin-right: 8px; }

.hero__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  color: var(--cyan-700);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
  outline: 1px solid var(--gray-200);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Selo de avaliação Google */
.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -18px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.hero__badge-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.hero__badge-score { display: flex; align-items: center; gap: 6px; }
.hero__badge-num {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1;
}
.hero__badge-stars { color: #F5B301; font-size: 13px; letter-spacing: 1px; }
.hero__badge-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===========================
   QUEM SOMOS — texto à esquerda, imagem à direita
   =========================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about__content .section__eyebrow { margin-bottom: 12px; }
.about__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 20px;
}
.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.about__text strong { color: var(--cyan-700); }

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pillar-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 198, 222, 0.12);
  transform: translateX(4px);
}
.pillar-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-tint), var(--green-tint));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-700);
  font-size: 24px;
}
.pillar-card strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.pillar-card span {
  font-size: 13px;
  color: var(--gray-500);
}

.about__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
  outline: 1px solid var(--gray-200);
  background-color: var(--cyan-tint);
}
.about__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.about__media::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(0, 198, 222, 0.45);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ===========================
   NOSSOS SERVIÇOS
   =========================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--cyan);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 48, 60, 0.55) 0%, transparent 55%);
  z-index: 1;
}
.service-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-700);
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.service-card__body {
  padding: 20px 22px 24px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===========================
   NOSSO TRABALHO — grid de vídeos verticais
   =========================== */
.work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.work-tile {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  background-color: var(--navy);
}
.work-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--navy);
}

.work-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(12, 48, 60, 0.55), rgba(12, 48, 60, 0.12));
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.work-tile__overlay.is-hidden { opacity: 0; pointer-events: none; }
.work-tile__play {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-700);
  font-size: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.work-tile__overlay:hover .work-tile__play {
  transform: scale(1.08);
  background-color: var(--white);
}

/* ===========================
   DEPOIMENTOS — FUNDO ESCURO
   =========================== */
.testimonials {
  background:
    radial-gradient(100% 100% at 100% 0%, rgba(0, 198, 222, 0.14) 0%, transparent 55%),
    var(--navy);
  position: relative;
}
.testimonials .section__title { color: var(--white); }
.testimonials .section__eyebrow { color: var(--cyan); }
.testimonials .section__subtitle { color: rgba(255, 255, 255, 0.72); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border-top: 3px solid var(--cyan);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 0.5;
  color: var(--cyan);
  margin-bottom: 14px;
}
.testimonial-card__stars {
  color: #F5B301;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 22px;
  flex-grow: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 16px;
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.testimonial-card__source {
  font-size: 12px;
  color: var(--gray-400);
}

/* ===========================
   CTA EM DESTAQUE
   =========================== */
.cta-band {
  background: linear-gradient(135deg, var(--cyan-700) 0%, var(--green-700) 100%);
  padding: 66px 0;
  text-align: center;
}
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}
.cta-band .btn--ghost-light { background-color: var(--white); color: var(--navy); box-shadow: inset 0 0 0 2px var(--white); }
.cta-band .btn--ghost-light:hover { background-color: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7); }

/* ===========================
   LOCALIZAÇÃO
   =========================== */
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: stretch;
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.location__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.location__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}
.location__card--address {
  position: relative;
  padding-right: 56px;
}
.location__copy {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 198, 222, 0.10);
  color: var(--cyan-700);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.location__copy i { font-size: 18px; line-height: 1; }
.location__copy:hover {
  background-color: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  transform: translateY(-1px);
}
.location__copy--copied {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.location__card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--cyan-tint), var(--green-tint));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-700);
  font-size: 22px;
}
.location__card-content strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.location__card-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}
.location__card-content a { color: var(--cyan-700); font-weight: 600; }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ===========================
   INSTAGRAM
   =========================== */
.instagram {
  background-color: var(--cream);
  text-align: center;
}
.instagram__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 34px;
  box-shadow: var(--shadow-md);
}
.instagram__handle {
  font-size: 17px;
  color: var(--cyan-700);
  font-weight: 600;
  margin-bottom: 30px;
}
.instagram__grid { display: none; }

/* ===========================
   RODAPÉ
   =========================== */
.footer {
  background-color: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand { max-width: 360px; }
.footer__logo {
  height: 82px;
  width: auto;
  margin-bottom: 18px;
  /* logo transparente (ciano + grafite) fica ilegível no escuro → versão branca */
  filter: brightness(0) invert(1);
}
.footer__tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.footer__columns {
  display: flex;
  gap: 48px;
  text-align: right;
}
.footer__column-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.footer__column p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.footer__column a:hover { color: var(--cyan); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.footer__bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer__social { display: flex; gap: 14px; }
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s;
}
.footer__social-link:hover {
  background-color: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
  font-size: 32px;
  color: var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

/* ===========================
   RESPONSIVO — TABLET (900px)
   =========================== */
@media (max-width: 900px) {
  .header__inner { gap: 14px; }
  .header__toggle { display: flex; }

  .header__nav {
    position: fixed;
    top: 104px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 22px 24px 28px;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .header__nav--open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .header__menu {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    order: 2;
  }
  .header__menu a {
    display: block;
    padding: 12px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
  }
  .header__menu a::after { display: none; }
  .header__cta { order: 1; width: 100%; padding: 14px; font-size: 15px; }

  .hero__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero__tag { margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }

  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__media { order: -1; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .location__inner { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; align-items: center; text-align: center; }
  .footer__brand { max-width: 100%; }
  .footer__logo { margin-left: auto; margin-right: auto; }
  .footer__columns { flex-direction: column; gap: 24px; text-align: center; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ===========================
   RESPONSIVO — MOBILE (560px)
   =========================== */
@media (max-width: 560px) {
  .header__logo img { height: 54px; }
  .section { padding: 60px 0; }
  .section__title { font-size: 30px; }
  .hero { padding: 112px 0 64px; }
  .hero__title { font-size: 34px; }
  .about__title { font-size: 28px; }
  .cta-band__title { font-size: 26px; }

  .hero__badge {
    left: auto;
    right: 14px;
    transform: none;
    bottom: -20px;
    width: max-content;
    max-width: calc(100% - 28px);
  }
  .hero__photo { margin-bottom: 30px; }

  .services__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .work__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .btn--lg { width: 100%; }
  .hero__actions .btn { width: 100%; }

  .whatsapp-float { width: 54px; height: 54px; font-size: 28px; bottom: 16px; right: 16px; }
}
