:root {
  --violet: #6e6bab;
  --blue: #6ab2d8;
  --rose: #d68280;
  --green: #b5ca5d;
  --light: #f0f0f0;
  --white: #ffffff;
  --black: #151515;
  --text: #444444;
  --title: #1f1f25;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 50px rgba(25, 25, 25, 0.08);
  --radius: 28px;
  --container: 1180px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: var(--white);
  font-weight: 900;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--title);
  font-size: 1rem;
}

.brand-copy small {
  color: #666;
}

.desktop-nav {
  display: flex;
  gap: 1.5rem;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  font-weight: 700;
  font-size: 0.98rem;
}

.desktop-nav a.active,
.mobile-nav a.active {
  color: var(--violet);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  margin: 5px auto;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav.open {
  display: flex;
}

/* hero */
.hero-full {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.logo {
  height: 55px;
  width: auto;
  display: block;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  background:
    url("images/hero.png")
    center center / cover no-repeat;
  transform: scale(1.03);
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 14, 0.76) 0%, rgba(10, 10, 14, 0.4) 55%, rgba(10, 10, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(110, 107, 171, 0.12), rgba(0, 0, 0, 0.18));
}

.hero-full-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 110px 2rem 120px;
}

.hero-copy {
  max-width: 760px;
}

.hero-topline {
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
}

.hero-full h1 {
  margin: 0 0 18px;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}

.hero-lead {
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 30px;
}

.hero-side {
  max-width: 520px;
  width: 100%;
}

.hero-side-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  width: 100%;
}

.mini-line {
  display: inline-block;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--rose);
  margin-bottom: 18px;
}

.hero-side-card p {
  margin: 0;
  color: var(--white);
  font-weight: 600;
}

.hero-stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 0;
  background: var(--rose);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
}

/* FOOTER FORTE */

.strong-footer {
  margin-top: 48px;
  background:
    linear-gradient(135deg, #1d1e27 0%, #2a2c39 45%, #6e6bab 100%);
  color: var(--white);
  border-top: none;
  position: relative;
  overflow: hidden;
}

/*.strong-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(106, 178, 216, 0.14);
  filter: blur(8px);
}*/

/*.strong-footer::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(214, 130, 128, 0.14);
  filter: blur(8px);
}*/

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
  gap: 2rem;
  padding: 64px 0 36px;
}

.footer-brand-block {
  max-width: 420px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: 210px;
  height: auto;
  display: block;
}

.footer-tagline {
  margin: 16px 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-manifesto {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.footer-column h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-list li,
.footer-list a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-list a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-list a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-contact-list li {
  line-height: 1.6;
}

.footer-bottom {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* page hero */
.page-hero {
  padding: 110px 0 84px;
}

.page-hero-violet {
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.page-hero-dark {
  background: linear-gradient(135deg, #23232b, var(--violet));
}

.page-hero-rose {
  background: linear-gradient(135deg, var(--rose), var(--violet));
}

.narrow {
  max-width: 820px;
}

.page-title {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.page-lead {
  font-size: 1.08rem;
  max-width: 700px;
}

.light {
  color: var(--white) !important;
}

/* sections */
.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--light), #ffffff);
}

.section-dark {
  background: #1b1c24;
  color: var(--white);
}

.section-offset {
  position: relative;
  margin-top: -40px;
  z-index: 3;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--rose);
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--title);
  font-weight: 900;
}

.section-heading-large {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading-large.centered,
.center-cta {
    padding-top: 1.25rem;
  text-align: center;
}

.editorial-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.editorial-copy {
  max-width: 680px;
}

.editorial-visual {
  position: relative;
  min-height: 420px;
}

.visual-panel {
  position: absolute;
  border-radius: 30px;
}

.panel-violet {
  inset: 20px auto auto 0;
  width: 68%;
  height: 280px;
  background: linear-gradient(135deg, rgba(110, 107, 171, 0.22), rgba(110, 107, 171, 0.08));
}

.panel-blue {
  inset: auto 0 0 auto;
  width: 58%;
  height: 230px;
  background: linear-gradient(135deg, rgba(106, 178, 216, 0.28), rgba(106, 178, 216, 0.08));
}

.visual-message {
  position: absolute;
  right: 40px;
  top: 80px;
  width: min(360px, 100%);
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.visual-message strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--title);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-feature-card h3,
.service-feature-card p {
  color: var(--white);
}

.service-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.12em;
}

.split-banner {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(214, 130, 128, 0.1), rgba(106, 178, 216, 0.12));
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.split-banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.point-box {
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
}

.point-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--title);
}

.team-strip,
.team-bio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.team-strip-card,
.team-bio-card,
.method-block-inner,
.service-stack-card,
.contact-panel,
.form-panel,
.contact-item-box,
.final-cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-bio-card {
  overflow: hidden;
  padding: 0;
}

.team-photo-wrap-diana {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6E6BAB; /* ou usa uma cor da tua paleta */
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 10%;
}

.team-photo-wrap-francisco {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B5CA5D; /* ou usa uma cor da tua paleta */
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 10%;
}

.team-photo-wrap-mafalda {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D68280; /* ou usa uma cor da tua paleta */
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 10%;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
 
  display: block;
}

.team-bio-content {
  padding: 18px 24px 24px;
}

.team-strip-card,
.team-bio-card,
.method-block-inner,
.contact-panel,
.form-panel {
  padding: 28px;
}

.team-strip-card {
  padding-top: 2rem;
}

.team-initials {
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: var(--white);
  font-weight: 900;
}

.team-initials img {
  object-position: center 25%;
}

.team-role {
  color: var(--violet);
  font-weight: 800;
  margin-bottom: 8px;
}

.team-meta {
  color: #666;
  font-size: 0.95rem;
}

.method-list {
  margin: 0;
  padding-left: 1.2rem;
}

.services-stack {
  display: grid;
  gap: 1.2rem;
}

.service-stack-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.service-stack-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.02;
  color: var(--title);
}

.service-stack-card ul {
  margin-top: 14px;
  padding-left: 1.2rem;
}

.contact-panel h2 {
  margin-bottom: 22px;
}

.contact-item-box {
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: none;
}

.contact-item-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--title);
}

.contact-item-box a {
  color: var(--violet);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

/* CONSENTIMENTO */

.consent {
  margin-top: 20px;
}

.consent-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.consent-label:hover .custom-checkbox {
  border-color: #D68280;
}

.consent-label input {
  display: none;
}

/* caixa personalizada */
.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #6E6BAB;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

/* estado ativo */
.consent-label input:checked + .custom-checkbox {
  background-color: #6E6BAB;
  border-color: #6E6BAB;
}

/* check */
.custom-checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
}

/* mostrar check */
.consent-label input:checked + .custom-checkbox::after {
  opacity: 1;
}

.consent-text {
  font-size: 14px;
  color: #545454;
  line-height: 1.4;
}

.consent-text a {
  color: #6E6BAB;
  text-decoration: none;
  font-weight: 600;
}

.consent-text a:hover {
  text-decoration: underline;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 800;
  color: var(--title);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(106, 178, 216, 0.16);
}

textarea {
  resize: vertical;
}

.form-feedback {
  min-height: 22px;
  margin: 0;
  font-weight: 700;
}

.final-cta {
  padding-top: 10px;
}

.final-cta-box {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(106, 178, 216, 0.12), rgba(181, 202, 93, 0.12));
}

.final-cta-box .btn {
  min-width: 180px;
  text-align: center;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fbfbfb;
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

/* buttons */
.btn {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(214, 130, 128, 0.24);
}

.btn-primary:hover {
  background: #c97573;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: var(--white);
  color: var(--violet);
}

.btn-full {
  width: 100%;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

/* responsive */
@media (max-width: 1080px) {
  .hero-full-inner,
  .editorial-grid,
  .contact-layout,
  .split-banner {
    grid-template-columns: 1fr;
  }

  .service-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-strip,
  .team-bio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-banner-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-side {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-full {
    min-height: 88vh;
  }

  .section,
  .page-hero {
    padding: 76px 0 64px;
  }

  .hero-full-inner {
    padding: 84px 1.25rem 90px;
  }

  .final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 0 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

.footer-logo {
    width: 160px;
    height: auto;
  }

}



@media (max-width: 640px) {
    .editorial-visual {
    min-height: 360px;
  }

  .visual-message {
    left: 16px;
    right: 16px;
    top: 90px;
    width: auto;
    padding: 22px;
  }

  .panel-violet {
    width: 72%;
    height: 180px;
  }

  .panel-blue {
    width: 58%;
    height: 150px;
  }

  .visual-message strong {
    font-size: 1.1rem;
  }
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .service-feature-grid,
  .team-strip,
  .team-bio-grid,
  .split-banner-list {
    grid-template-columns: 1fr;
  }

  .service-stack-card {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .brand-copy small {
    display: none;
  }

  .visual-message,
  .team-strip-card,
  .team-bio-card,
  .method-block-inner,
  .service-stack-card,
  .contact-panel,
  .form-panel,
  .final-cta-box {
    padding: 22px;
  }

  .hero-full h1 {
    line-height: 0.98;
  }

  .hero-stripe {
    font-size: 0.8rem;
  }
}

.site-footer.strong-footer {
  margin-top: 48px;
  background: linear-gradient(135deg, #1d1e27 0%, #2a2c39 45%, #6e6bab 100%);
  color: #ffffff;
  border-top: none;
  position: relative;
  overflow: hidden;
}



.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background-color: #25D366;
  color: white;
  text-decoration: none;
  

  padding: 14px 18px;
  border-radius: 10px;

  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 999px;

  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);

  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.36);
}

.floating-whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.floating-whatsapp-text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 50%;
  }

  .floating-whatsapp-text {
    display: none;
  }

  .floating-whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}


.form-panel-centered {
  max-width: 760px;
  margin: 0 auto;
}

.form-note {
  margin: 0 0 22px;
  color: #666;
  line-height: 1.6;
}

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-contact-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-full-bg {
    background-position: 18% center;
    transform: scale(1);
  }

  .hero-full-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 72px 1.25rem 88px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-side {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-full-bg {
    background-position: 18% center;
    transform: scale(1);
  }

  .hero-full-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 72px 1.25rem 88px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-side {
    max-width: 100%;
  }
}


.team-portrait-grid {
  align-items: stretch;
}

.team-portrait-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-portrait-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--light);
  overflow: hidden;
}

.team-portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.team-portrait-content {
  padding: 24px 28px 28px;
}

.team-portrait-content h3 {
  margin-bottom: 10px;
}

.team-portrait-content p:last-child {
  margin-bottom: 0;
}

.team-diana {
  background: #6e6bab;
}

.team-francisco {
  background: #b5ca5d;
}

.team-mafalda {
  background: #d68280;
}