@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal: #2B5F6A;
  --teal-dark: #1E4550;
  --teal-light: #3D7A87;
  --burgundy: #7D2B45;
  --burgundy-dark: #5E2035;
  --gray-light: #EBEBEB;
  --gray-mid: #D0D0D0;
  --off-white: #F7F6F4;
  --white: #FFFFFF;
  --text-dark: #1C2B30;
  --text-mid: #4A6670;
  --text-light: #7A9099;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

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

img {
  max-width: 100%;
}

/* ─── NAV ─── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 12px;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  min-width: 200px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.nav-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */

.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/globo_rede.png');
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

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

.btn-secondary {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(43,95,106,0.12);
  width: 100%;
  max-width: 360px;
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.hero-card-item:last-child {
  border-bottom: none;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
  flex-shrink: 0;
}

.hero-card-dot.burgundy {
  background: var(--burgundy);
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.hero-card-text strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

/* ─── SECTION BASE ─── */

section {
  padding: 5rem 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--burgundy);
  margin: 1.25rem 0;
}

/* ─── SOBRE (home summary) ─── */

.sobre-home {
  background: var(--white);
}

.sobre-home-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-home-img {
  position: relative;
}

.sobre-home-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

.sobre-home-foto {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
}

.sobre-home-img::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--teal);
  border-radius: 8px;
  z-index: -1;
}

.sobre-home-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.link-arrow {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 0.7rem;
}

/* ─── SERVIÇOS ─── */

.servicos-home {
  background: var(--off-white);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.servico-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid var(--teal);
  transition: transform 0.2s, box-shadow 0.2s;
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43,95,106,0.1);
}

.servico-card.destaque {
  border-top-color: var(--burgundy);
}

.servico-card.em-breve {
  border-top-color: var(--gray-mid);
  opacity: 0.85;
}

.servico-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.servico-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.servico-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.servico-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  background: var(--gray-light);
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ─── ANTES/DEPOIS ─── */

.transformacao {
  background: var(--teal);
  color: var(--white);
}

.transformacao .section-eyebrow {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.transformacao .section-title {
  color: var(--white);
}

.transformacao-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}

.transformacao-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.transformacao-col.antes h4 {
  color: rgba(255,255,255,0.5);
}

.transformacao-col.depois h4 {
  color: rgba(255,255,255,0.9);
}

.transformacao-arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  color: var(--burgundy);
  font-size: 1.5rem;
}

.transform-item {
  padding: 0.875rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.transform-item.antes {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

.transform-item.depois {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

/* ─── DEPOIMENTOS ─── */

.depoimentos {
  background: var(--white);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.depoimento-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.75rem;
}

.depoimento-aspas {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.depoimento-google-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.depoimento-google-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depoimento-estrelas {
  color: #f4b400;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.depoimento-google-badge {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #4285F4;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depoimento-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.depoimento-autor {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.depoimento-cargo {
  font-size: 0.8rem;
  color: var(--text-light);
}

.depoimentos-placeholder {
  margin-top: 3rem;
  padding: 3rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 2px dashed var(--gray-mid);
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ─── CTA FINAL ─── */

.cta-final {
  background: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/globo_rede.png');
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ─── SPHERE DECORATIONS (content sections) ─── */

.has-sphere-left {
  position: relative;
  overflow: hidden;
}

.has-sphere-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/globo_rede.png');
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cta-final .section-title {
  max-width: 600px;
  margin: 0 auto 1rem;
}

.cta-final .section-subtitle {
  margin: 0 auto 2rem;
  max-width: 500px;
}

.cta-final .divider {
  margin: 1rem auto;
}

/* ─── FOOTER ─── */

footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 5%;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── PÁGINAS INTERNAS ─── */

.page-hero {
  padding-top: 72px;
  background: var(--off-white);
  padding-bottom: 4rem;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/globo_rede.png');
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 4rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

.content-section {
  padding: 4rem 5%;
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: flex-start;
}

.features-list li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check::after {
  content: '✓';
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── SOBRE PAGE ─── */

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.sobre-sidebar {
  position: sticky;
  top: 90px;
}

.sobre-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
  margin-bottom: 1.5rem;
}

.sobre-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.sobre-credentials {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.25rem;
}

.sobre-credentials h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.sobre-credentials li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-light);
  list-style: none;
}

.sobre-credentials li:last-child {
  border-bottom: none;
}

.sobre-text p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.sobre-text p:first-child {
  font-size: 1.15rem;
  color: var(--text-dark);
}

/* ─── CURSOS ─── */

.cursos-em-breve {
  text-align: center;
  padding: 6rem 5%;
}

.cursos-badge {
  display: inline-block;
  background: var(--burgundy);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 2rem auto 0;
}

.email-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.email-form input:focus {
  border-color: var(--teal);
}

.email-form button {
  background: var(--teal);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--teal-dark);
}

/* ─── CONTATO ─── */

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contato-info h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.contato-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contato-icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contato-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contato-item a, .contato-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contato-form {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.btn-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--teal-dark);
}

/* ─── RESPONSIVO ─── */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    display: none;
  }

  .sobre-home-inner {
    grid-template-columns: 1fr;
  }

  .sobre-home-img {
    display: block;
  }

  .sobre-home-foto {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center top;
  }

  .sobre-sidebar {
    position: static;
  }

  .sobre-photo {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center top;
  }

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

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

  .transformacao-arrow {
    display: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .sobre-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--gray-light);
    gap: 1rem;
    align-items: flex-start;
  }

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

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 3.5rem 5%;
  }

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

  .email-form {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ── Grids de cards ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

/* ── Botão flutuante WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
