:root {
  --color-primary: #28436a;
  --color-primary-dark: #1c2f4a;
  --color-accent: #bda27c;
  --color-bg: #f5f5f7;
  --color-text: #1f2430;
  --color-muted: #6c7480;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: #ffffff;
}

/* Container / Layout base */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5ea;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo img {
  width: 166px;
  height: auto;
}

.logo-main {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--color-muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background-color: #f4f4f6;
  color: var(--color-primary-dark);
}

.nav-cta {
  background-color: var(--color-primary);
  color: #ffffff !important;
}

.nav-cta:hover {
  background-color: var(--color-primary-dark);
}

/* Hero */

.hero {
  padding: 150px 0 150px;
  background:
    linear-gradient(
      rgba(40, 67, 106, 0.8),
      rgba(28, 47, 74, 0.9)
    ),
    url("img/CHEDE_GRUPO_0001.jpg");
  background:
    linear-gradient(
      rgba(40, 67, 106, 0.8),
      rgba(28, 47, 74, 0.9)
    ),
    image-set(
      "img/CHEDE_GRUPO_0001.webp" type("image/webp"),
      "img/CHEDE_GRUPO_0001.jpg" type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin: 16px 0;
  line-height: 1.2;
  color: #ffffff;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #bda27c;
}

.highlight {
  color: #bda27c;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.hero-bullets li {
  margin-bottom: 8px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.hero .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease,
    transform 0.06s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

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

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

.btn-outline:hover {
  background-color: #f3f5fa;
}

.btn-block {
  width: 100%;
}

/* Cards / Form */

.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 20px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #ececf1;
}

.hero .btn-primary {
  background-color: #bda27c;
  border-color: #bda27c;
  color: #1f2430;
}

.hero .btn-primary:hover {
  background-color: #a88d6b;
  border-color: #a88d6b;
}

.hero .form-card {
  background-color: rgba(0, 0, 0, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  color: #ffffff;
}

.form-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.hero .form-card h2 {
  color: #ffffff;
}

.form-subtitle {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hero .form-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.form-group {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.hero .form-group label {
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: var(--radius-md);
  border: 1px solid #d2d5dd;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}

.hero .form-group input,
.hero .form-group select,
.hero .form-group textarea {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero .form-group input::placeholder,
.hero .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero .form-group select {
  color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(40, 67, 106, 0.14);
}

.hero .form-group input:focus,
.hero .form-group select:focus,
.hero .form-group textarea:focus {
  border-color: #bda27c;
  box-shadow: 0 0 0 2px rgba(189, 162, 124, 0.35);
}

.form-note {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero .form-note,
.hero .form-feedback {
  color: rgba(255, 255, 255, 0.8);
}

.form-feedback {
  margin-top: 8px;
  font-size: 0.8rem;
}

/* Sections */

.section {
  padding: 48px 0;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--color-muted);
}

.section-attorneys {
  background: linear-gradient(180deg, #f2f2f7 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
}

.section-attorneys::before,
.section-attorneys::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(189, 162, 124, 0.12);
  border-radius: 32px;
  transform: rotate(35deg);
  z-index: 0;
}

.section-attorneys::before {
  top: 40px;
  left: -60px;
}

.section-attorneys::after {
  bottom: -60px;
  right: -40px;
}

.section-attorneys .container {
  position: relative;
  z-index: 1;
}

.attorneys-header {
  text-align: center;
  margin-bottom: 30px;
}

.attorneys-line {
  display: inline-block;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  margin-bottom: 16px;
}

.attorneys-header h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.attorneys-header .text-highlight {
  color: #bda27c;
}

.attorneys-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

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

.attorney-card {
  text-align: center;
  padding: 28px 24px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(15, 27, 63, 0.08);
}

.attorney-photo {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  margin: 0 auto 18px;
  padding: 6px;
  background: linear-gradient(135deg, var(--color-primary), #bda27c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attorney-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
}

.attorney-name {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.attorney-role {
  margin: 6px 0 14px;
  font-size: 0.9rem;
  color: #bda27c;
  font-weight: 600;
}

.attorney-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.attorney-details li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.attorney-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #bda27c;
}

.attorneys-cta-panel {
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(40, 67, 106, 0.18);
  background: #f9f9fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.attorneys-cta-panel h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-primary-dark);
}

.attorneys-cta-panel h3 span {
  color: #bda27c;
  text-transform: uppercase;
}

.attorneys-cta-panel p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  max-width: 520px;
}

.section-testimonials {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-testimonials::before,
.section-testimonials::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(40, 67, 106, 0.08);
  transform: rotate(45deg);
  z-index: 0;
}

.section-testimonials::before {
  top: 40px;
  left: -120px;
}

.section-testimonials::after {
  bottom: -130px;
  right: -80px;
}

.section-testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-top {
  display: flex;
  justify-content: center;
  text-align: center;
}

.rating-panel {
  background: #fafafa;
  border-radius: 14px;
  padding: 26px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-width: 220px;
}

.rating-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rating-stars {
  font-size: 1.6rem;
  color: #f4b000;
  margin: 8px 0;
}

.rating-panel p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.rating-source {
  display: block;
  margin-top: 10px;
}

.rating-source img {
  width: 96px;
  height: auto;
}

.testimonials-heading {
  flex: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.heading-line {
  display: inline-block;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  margin-bottom: 16px;
}

.testimonials-heading h2 {
  margin: 0;
  font-size: 1.9rem;
}

.testimonials-heading h2 span {
  color: #bda27c;
  text-transform: uppercase;
}

.testimonials-heading p {
  margin-top: 10px;
  color: var(--color-muted);
}

.testimonials-slider {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.slider-rating-panel {
  flex: 0 0 260px;
  align-self: stretch;
}

.slider-shell {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.slider-nav {
  border: none;
  background-color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(31, 36, 48, 0.16);
  font-size: 1.8rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.slider-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.slider-nav:not(:disabled):hover {
  transform: translateY(-2px);
}

.testimonials-window {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.testimonial-slide {
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(11, 26, 66, 0.08);
  min-height: 210px;
}

.testimonial-slide-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-slide-header strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-slide-header span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.badge-google {
  margin-left: auto;
}

.badge-google img {
  width: 20px;
  height: auto;
}

.testimonial-stars {
  color: #f4b000;
  font-size: 1.2rem;
  margin: 12px 0 6px;
}

.testimonial-slide p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section-hammer-cta {
  padding: 90px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.48)),
    url("img/martelo.png");
  background: linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.48)),
    image-set(
      "img/martelo.webp" type("image/webp"),
      "img/martelo.png" type("image/png")
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
}

.section-hammer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.18;
  pointer-events: none;
}

.section-hammer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      45deg,
      transparent 0,
      transparent 46%,
      rgba(255, 255, 255, 0.12) 46%,
      rgba(255, 255, 255, 0.12) 54%,
      transparent 54%,
      transparent 100%
    ),
    linear-gradient(
      -45deg,
      transparent 0,
      transparent 46%,
      rgba(255, 255, 255, 0.12) 46%,
      rgba(255, 255, 255, 0.12) 54%,
      transparent 54%,
      transparent 100%
    );
  background-size: 160px 160px;
  opacity: 0.18;
  pointer-events: none;
}

.section-hammer-cta .container {
  position: relative;
  z-index: 1;
}

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

.hammer-line {
  display: inline-block;
  width: 90px;
  height: 4px;
  background-color: #bda27c;
  margin: 0 auto 18px;
}

.hammer-card h2 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.hammer-card h2 span {
  color: #bda27c;
  text-transform: uppercase;
}

.hammer-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hammer-card p + p {
  margin-top: 12px;
}

.hammer-btn {
  margin: 24px auto 0;
  background: linear-gradient(120deg, #0cb34a, #35ce5f);
  border: none;
  color: #ffffff;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hammer-btn:hover {
  background: linear-gradient(120deg, #0aa340, #2fb556);
}

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

  .testimonials-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-heading {
    text-align: left;
  }

  .testimonials-slider {
    flex-direction: column;
  }

  .slider-rating-panel {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .testimonials-slider {
    flex-direction: column;
  }

  .slider-shell {
    flex-direction: column;
  }

  .slider-nav {
    order: 2;
  }

  .testimonials-window {
    order: 1;
    width: 100%;
  }
}

/* Grids */

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  text-align: center;
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.feature-card .feature-icon {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.section-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lists */

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.list li {
  margin-bottom: 8px;
}

/* Testemunhos */

.testimonial-card {
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-muted);
}

.testimonial-name {
  margin-top: 10px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* FAQ */

.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid #dedfe6;
  background-color: #ffffff;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--color-text);
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease-out, padding 0.18s ease-out;
  padding: 0 14px;
}

.faq-answer p {
  margin: 8px 0 12px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 0;
}

/* Contato */

.section-contact {
  background: linear-gradient(120deg, #122a48 0%, #193456 60%, #142742 100%);
  color: #ffffff;
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cpath d='M0 120 L120 40 L260 80 L360 10 L500 100 L640 40 L800 120 L640 200 L520 160 L420 260 L300 220 L160 300 L0 240' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cpath d='M0 360 L140 420 L260 320 L400 380 L560 320 L720 420 L800 360' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cpath d='M60 0 L120 160 L260 40 L320 220 L460 60 L520 260 L660 120 L720 320 L840 200' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.section-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.15),
    transparent 55%
  );
  opacity: 0.2;
  z-index: 0;
}

.section-contact .contact-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.section-contact .container {
  position: relative;
  z-index: 2;
}

.section-contact .section-header.left::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #bda27c;
  margin-top: 12px;
}

.section-contact .contact-logo {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

.section-contact .section-header h2 {
  color: #ffffff;
}

.section-contact .section-header p,
.section-contact .list li,
.section-contact .contato-card p {
  color: rgba(255, 255, 255, 0.9);
}

.section-contact .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: none;
}

.section-contact .card .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.section-contact .card .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.section-contact strong {
  color: #bda27c;
}

.section-contact .btn-primary {
  background-color: #bda27c;
  border-color: #bda27c;
  color: #1f2430;
}

.section-contact .btn-primary:hover {
  background-color: #a88d6b;
  border-color: #a88d6b;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.contato-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Footer */

.footer {
  padding: 20px 0 26px;
  background-color: #0f1722;
  color: #e5e7eb;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
}

.footer-small {
  margin-top: 4px;
  color: #9ca3af;
}

.footer-brand {
  display: inline-block;
  margin-top: 10px;
}

.footer-brand img {
  width: 210px;
  height: auto;
}

/* WhatsApp floating button */

.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  background-color: #25d366;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

/* Responsividade */

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

  .hero-form-wrapper {
    order: -1;
  }

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

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

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

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

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