/* ============================================
   FIRMAMENT ASSESSORIA CONTÁBIL — STYLES
   ============================================ */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:     #195973;
  --primary-dark:#0f3d50;
  --accent:      #1fa8d4;
  --accent-dark: #1589ae;
  --light-bg:    #edf6f9;
  --text-dark:   #0d2a33;
  --text-muted:  #4a6878;
  --text-light:  #FFFFFF;
  --card-bg:     #FFFFFF;
  --border:      #E2E6EF;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,.1);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.15);
  --transition:  .3s ease;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--accent); }
.highlight   { color: #7fd5ed; }

.section {
  padding: 96px 0;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-tag {
  display: inline-block;
  background: rgba(31,168,212,.1);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-header.light .section-tag {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.section-header.light h2,
.section-header.light p {
  color: #fff;
}

.section-tag.light {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

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

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(31,168,212,.4);
}

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

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition),
              box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--primary);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .95rem;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.logo-name {
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .logo-name {
    display: none;
  }
}

.logo-text strong {
  font-weight: 800;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: .9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 60% 40%;
  background: var(--primary);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 120px 60px 80px max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.hero-text {
  width: 100%;
  max-width: 560px;
}

.badge {
  display: inline-block;
  background: rgba(31,168,212,.25);
  color: #7fd5ed;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
  border: 1px solid rgba(31,168,212,.3);
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}

/* Hero image */
.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    transparent 30%
  );
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--light-bg);
}

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

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(31,168,212,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: background var(--transition);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card:hover .card-icon {
  background: var(--accent);
  color: #fff;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  color: var(--accent);
  font-size: .9rem;
  font-weight: 600;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  gap: 8px;
}

/* ============================================
   PRAZOS
   ============================================ */
.prazos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.prazo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.prazo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light, #e8f4fd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.prazo-icon svg {
  width: 22px;
  height: 22px;
}

.prazo-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prazo-servico {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.prazo-tempo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.prazo-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 32px;
}

@media (max-width: 768px) {
  .prazos-grid {
    flex-direction: column;
    padding: 28px 24px;
    gap: 24px;
  }
  .prazo-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .prazo-item {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  background: #fff;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sobre-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.sobre-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sobre-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre-img-wrapper img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.sobre-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.number-card {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--border);
}

.number-card strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.number-card span {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  background: var(--primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

.team-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.team-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--accent);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-initials {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-initials span {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.team-card h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  color: #7fd5ed;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.team-card p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}

.team-social a:hover {
  background: var(--accent);
  color: #fff;
}

.team-social svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--light-bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(31,168,212,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item span {
  color: var(--text-muted);
  font-size: .9rem;
}

/* Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark);
}

input, select, textarea {
  font-family: var(--font);
  font-size: .95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

input::placeholder, textarea::placeholder {
  color: #b0b7c3;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,168,212,.12);
}

input.error, select.error, textarea.error {
  border-color: #e53e3e;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6075' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}

.form-error {
  font-size: .8rem;
  color: #e53e3e;
  display: none;
}

.form-error.visible {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 14px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom p a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom p a:hover {
  color: #F5F06A;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #1a3a2a;
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: .95rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  z-index: 9999;
  border-left: 4px solid #48bb78;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  width: 20px;
  height: 20px;
  color: #48bb78;
  flex-shrink: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grids */
.cards-grid .card:nth-child(2) { transition-delay: .1s; }
.cards-grid .card:nth-child(3) { transition-delay: .2s; }
.cards-grid .card:nth-child(4) { transition-delay: .1s; }
.cards-grid .card:nth-child(5) { transition-delay: .2s; }
.cards-grid .card:nth-child(6) { transition-delay: .3s; }

.team-grid .team-card:nth-child(2) { transition-delay: .1s; }
.team-grid .team-card:nth-child(3) { transition-delay: .2s; }
.team-grid .team-card:nth-child(4) { transition-delay: .3s; }
.team-grid .team-card:nth-child(5) { transition-delay: .4s; }

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 380px;
  }

  .hero-image-overlay {
    background: linear-gradient(to bottom, var(--primary) 0%, transparent 40%);
  }

  .hero-content {
    padding: 80px 24px 60px;
  }

  .hero-text {
    max-width: 100%;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* Navbar */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.4rem;
    padding: 8px 24px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero-image {
    height: 280px;
  }

  /* Services */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* Sobre */
  .sobre-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  /* Toast */
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
