/* ============================================
   Incentiva Mais — Landing Page Styles
   ============================================ */

:root {
  /* Incentiva Mais — guideline incentivamais.com.br */
  --brand-50: #fce4ec;
  --brand-100: #f8bbd0;
  --brand-200: #f48fb1;
  --brand-400: #ec407a;
  --brand-500: #e91e63;
  --brand-600: #d81b60;
  --brand-700: #c2185b;
  --accent-400: #5c6bc0;
  --accent-500: #3f51b5;
  --accent-600: #303f9f;
  --logo-red: #ff1a34;
  --gray-50: #f5f5f5;
  --gray-100: #f1f2f7;
  --gray-200: #e0e0e0;
  --gray-400: #9e9e9e;
  --gray-500: #757575;
  --gray-600: #616161;
  --gray-700: #424242;
  --gray-900: #212121;
  --dark: #212121;
  --dark-2: #222222;
  --dark-3: #424242;
  --shadow-glow: 0 0 40px -10px rgba(233, 30, 99, 0.35);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 20px rgba(233, 30, 99, 0.12), 0 8px 32px rgba(0, 0, 0, 0.08);
  --container: 80rem;
  --header-h: 4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

::selection { background: var(--brand-200); color: var(--brand-700); }

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

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

.hidden { display: none !important; }

ul { list-style: none; }

button, input, textarea {
  font: inherit;
  border: none;
  background: none;
}

/* ---- Utilities ---- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }
}

.gradient-text {
  background: linear-gradient(to right, var(--brand-500), var(--logo-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-heading {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-heading h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-heading p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section { padding-block: 5rem; }

@media (min-width: 1024px) {
  .section { padding-block: 7rem; }
}

/* ---- Animations ---- */

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

@keyframes float-reverse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes grow-bar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--brand-400);
  box-shadow: 0 0 60px -15px rgba(233, 30, 99, 0.45);
  transform: scale(1.02);
}

.btn-secondary {
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-700);
  box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-card-hover);
  transform: scale(1.02);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---- Header ---- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--dark-2);
  transition: all 0.3s;
}

.header.scrolled {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

@media (min-width: 1024px) {
  .header__nav { height: 5rem; }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  display: block;
  height: 3rem;
  width: auto;
  transition: transform 0.3s;
}

.logo:hover .logo__img { transform: scale(1.02); }

.logo__img--slim {
  height: 3.375rem;
  margin-bottom: 1rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--accent-500); }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s;
}

.menu-toggle:hover { background: rgba(255, 255, 255, 0.1); }

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg { width: 1.25rem; height: 1.25rem; }

.nav-mobile {
  display: none;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark-2);
}

.nav-mobile.open { display: block; }

@media (min-width: 768px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1rem;
}

.nav-mobile__links a {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s;
}

.nav-mobile__links a:hover {
  background: rgba(233, 30, 99, 0.15);
  color: var(--brand-200);
}

.nav-mobile__cta { padding: 0.5rem 1rem 1rem; }

body.menu-open { overflow: hidden; }

/* ---- Hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(5rem + 4rem);
    padding-bottom: 8rem;
  }
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(233, 30, 99, 0.12), transparent);
}

.hero__blob-right {
  pointer-events: none;
  position: absolute;
  right: -10rem;
  top: 5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(63, 81, 181, 0.1);
  filter: blur(64px);
}

.hero__blob-left {
  pointer-events: none;
  position: absolute;
  left: -10rem;
  bottom: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.08);
  filter: blur(64px);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  animation: fade-up 0.6s var(--ease) 0.2s both;
}

.hero__badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.hero__badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brand-400);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero__badge-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-500);
}

.hero__badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-700);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  animation: fade-up 0.6s var(--ease) 0.3s both;
}

.hero__desc {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
  animation: fade-up 0.6s var(--ease) 0.4s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  animation: fade-up 0.6s var(--ease) 0.5s both;
}

.hero__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
  animation: fade-up 0.6s var(--ease) 0.6s both;
}

@media (min-width: 640px) {
  .hero__highlights {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hero__highlights svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-500);
  flex-shrink: 0;
}

/* Hero illustration */

.hero-illustration {
  position: relative;
  max-width: 32rem;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .hero-illustration { max-width: none; }
}

.hero-illustration__glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: linear-gradient(to right, rgba(233, 30, 99, 0.15), rgba(63, 81, 181, 0.15));
  filter: blur(32px);
}

.hero-illustration__card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.6);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  box-shadow: var(--shadow-card-hover);
  backdrop-filter: blur(4px);
  animation: float 6s ease-in-out infinite;
}

.hero-illustration__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hero-illustration__dots {
  display: flex;
  gap: 0.5rem;
}

.hero-illustration__dots span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.hero-illustration__dots span:nth-child(1) { background: #f87171; }
.hero-illustration__dots span:nth-child(2) { background: #facc15; }
.hero-illustration__dots span:nth-child(3) { background: #4ade80; }

.hero-illustration__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
}

.hero-illustration__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-illustration__bar {
  flex: 1;
  border-radius: 0.375rem 0.375rem 0 0;
  background: linear-gradient(to top, var(--brand-500), var(--accent-400));
  transform-origin: bottom;
  animation: grow-bar 0.5s var(--ease) both;
}

.hero-illustration__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-illustration__stat {
  border-radius: 0.75rem;
  background: var(--gray-50);
  padding: 0.75rem;
  text-align: center;
}

.hero-illustration__stat strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}

.hero-illustration__stat span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero-illustration__alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: var(--brand-50);
  padding: 0.75rem;
}

.hero-illustration__alert svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-600);
  flex-shrink: 0;
}

.hero-illustration__alert p {
  font-size: 0.875rem;
  color: var(--brand-700);
}

.hero-illustration__float-top {
  position: absolute;
  right: -1rem;
  top: -1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
  animation: float 4s ease-in-out 1s infinite;
}

.hero-illustration__float-bottom {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
  animation: float-reverse 5s ease-in-out 2s infinite;
}

.hero-illustration__float-top p:first-child,
.hero-illustration__float-bottom p:first-child {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}

.hero-illustration__float-top p:last-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-600);
}

.hero-illustration__float-bottom p:last-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-500);
}

/* ---- Cards ---- */

.card {
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--brand-50), rgba(63, 81, 181, 0.1));
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-600);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- Benefits ---- */

.benefits__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Features ---- */

.features {
  background: rgba(249, 250, 251, 0.5);
}

.features__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease);
}

.feature-card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-card-hover);
}

.feature-card__bg {
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(63, 81, 181, 0.05));
  transition: transform 0.5s;
}

.feature-card:hover .feature-card__bg { transform: scale(1.5); }

.feature-card__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  box-shadow: var(--shadow-glow);
}

.feature-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.feature-card__badge {
  border-radius: 9999px;
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
}

.feature-card h3 {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-card p {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- Stats ---- */

.stats {
  position: relative;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dark), var(--dark-3));
}

.stats__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v2H24v-2h12zM36 24v2H24v-2h12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats .section-heading h2 { color: #fff; }
.stats .section-heading p { color: rgba(255, 255, 255, 0.7); }
.stats .section-badge {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.stats__grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-item { text-align: center; }

.stat-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  margin-inline: auto;
  margin-bottom: 1rem;
}

.stat-item__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}

.stat-item__value {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
}

.stat-item__label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Steps ---- */

.steps__grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
}

.steps__line {
  display: none;
}

@media (min-width: 768px) {
  .steps__line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--brand-200), transparent);
  }
}

.step-item { position: relative; text-align: center; }

.step-item__icon-wrap {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.step-item__icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  opacity: 0.1;
}

.step-item__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0.5rem auto 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  box-shadow: var(--shadow-glow);
}

.step-item__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}

.step-item__number {
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-600);
  box-shadow: var(--shadow-card);
}

.step-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-500);
}

.step-item h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.step-item p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- Testimonials ---- */

.testimonials {
  background: rgba(249, 250, 251, 0.5);
}

.testimonials__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover { box-shadow: var(--shadow-card-hover); }

.testimonial-card > svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-200);
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  flex: 1;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ---- Contact ---- */

#contato {
  background: var(--dark-3);
  color: #fff;
}

#contato .section-heading h2 { color: #f5f5f5; }
#contato .section-heading p { color: #e0e0e0; }
#contato .section-badge {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact__grid {
  max-width: 64rem;
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 2fr 3fr; }
}

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__info-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
}

.contact__info-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.contact__info-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #e0e0e0;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  box-shadow: none;
  transition: all 0.3s;
}

.contact__link:hover {
  border-color: var(--brand-500);
  background: rgba(233, 30, 99, 0.12);
}

.contact__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(233, 30, 99, 0.2);
}

.contact__link-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-200);
}

.contact__link-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.contact__link-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.contact__form {
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact__fields {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact__fields { grid-template-columns: repeat(2, 1fr); }
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group__input {
  position: relative;
}

.form-group__input svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--gray-400);
  pointer-events: none;
}

.form-group__input--textarea svg {
  top: 0.875rem;
  transform: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  background: rgba(249, 250, 251, 0.5);
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-size: 0.875rem;
  color: var(--gray-900);
  outline: none;
  transition: all 0.2s;
}

.form-group textarea {
  resize: none;
  min-height: 6rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-200);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

.form-success {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-600);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Footer ---- */

.footer {
  border-top: none;
  background: var(--dark);
  color: #fff;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .footer { padding-block: 5rem; }
}

.footer__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__desc {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.footer__social a:hover {
  border-color: var(--brand-500);
  color: var(--brand-200);
  background: rgba(233, 30, 99, 0.15);
}

.footer__social svg {
  width: 1rem;
  height: 1rem;
}

.footer__title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--brand-200); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__contact-item:hover { color: var(--brand-200); }

.footer__contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
