/* SpeedBravo — folha de estilos principal */


/* ─── variáveis globais ───────────────────────────────────────────────── */
:root {
  --color-primary:       #08B8EA;
  --color-primary-dark:  #0699c4;
  --color-primary-light: rgba(8, 184, 234, 0.1);
  --color-dark:          #2C407D;
  --color-dark-2:        #334a90;
  --color-dark-3:        #3a529e;
  --color-gray:          #6b7280;
  --color-gray-light:    #9ca3af;
  --color-light:         #f9fafb;
  --color-white:         #ffffff;

  --font-body:    'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;

  --shadow-card: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(8, 184, 234, 0.2);

  --transition:      0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.2s ease;

  --container-max:     1280px;
  --container-padding: 2rem;
}


/* ─── padrão de fundo ────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/Fundos/topography.svg');
  background-repeat: repeat;
  background-size: 600px 600px;
  filter: invert(1);
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}


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

body {
  font-family: var(--font-body);
  background: var(--color-dark);
  color: var(--color-white);
  overflow-x: hidden;
}

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

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


/* ─── utilitários ────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  z-index: 1000;
}

/* escondido — o JS anima ao entrar no ecrã */
.reveal {
  opacity: 0;
}


/* ─── navbar ─────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.lang-switcher:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
}


/* ─── botões ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--color-white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
}


/* ─── hero interna ───────────────────────────────────────────────────── */
.hero-inner {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--color-dark-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner[style*="background-image"]::after,
.hero-has-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 64, 125, 0.27);
  z-index: 1;
}

.hero-inner[style*="background-image"] .container,
.hero-has-media .container {
  z-index: 2;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(8, 184, 234, 0.06) 0%, transparent 70%);
}

.hero-inner .container {
  position: relative;
  z-index: 2;
}

/* breadcrumb - (Ex. Página Inicial > Sobre Nós) */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  line-height: 1.7;
}


/* ─── cabeçalhos de secção ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ─── secção sobre nós (teaser na homepage) ──────────────────────────── */
.about-section {
  padding: 4rem 0 2rem;
  background: var(--color-dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 500px;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-md) + 1px);
  background: linear-gradient(135deg, var(--color-primary), transparent 60%);
  z-index: -1;
  opacity: 0.4;
}

.about-years-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.about-years-badge .number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-years-badge .text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ─── cta banner ─────────────────────────────────────────────────────── */
.cta-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(8, 184, 234, 0.1) 0%, transparent 70%);
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}


/* ─── footer ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--color-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

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

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}


/* ─── hero homepage ──────────────────────────────────────────────────── */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  background: var(--color-dark);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.379);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(8, 184, 234, 0.08) 0%, transparent 60%);
}

.hero-home .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background: rgba(254, 254, 254, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(254, 254, 254, 0.2);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  overflow: hidden;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
}

.scroll-indicator .line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  opacity: 0;
}

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

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-float-badge {
  position: absolute;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  opacity: 0;
}

.hero-float-badge.top {
  top: -1rem;
  right: -1rem;
}

.hero-float-badge.bottom {
  bottom: -1rem;
  left: -1rem;
}


/* ─── estatísticas ───────────────────────────────────────────────────── */
.stats-section {
  padding: 5rem 0;
  background: var(--color-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}


/* ─── cards de serviços (homepage) ──────────────────────────────────── */
.services-section {
  padding: 7rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

/* card de destaque — ocupa toda a coluna esquerda */
.service-card:first-child {
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--color-dark-3) 0%, var(--color-dark-2) 70%);
  border-color: rgba(8, 184, 234, 0.2);
}

.service-card:first-child .service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: auto;
  padding-bottom: 0;
}

.service-card:first-child h3 {
  font-size: 1.6rem;
  margin-top: 2rem;
}

.service-card:first-child p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.379);
  z-index: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 3;
}

.service-card:hover {
  border-color: rgba(8, 184, 234, 0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 0.8rem;
}


/* ─── lista de serviços ──────────────────────────────────────────────── */
.services-list-section {
  padding: 6rem 0;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-list-card {
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-list-card .service-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.service-list-card .service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.379);
  z-index: 1;
}

.service-list-card .service-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-list-card:hover {
  border-color: rgba(8, 184, 234, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.service-list-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.service-list-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  flex: 1;
}

.service-list-card .btn-outline {
  margin-top: 2rem;
  align-self: flex-start;
}


/* ─── detalhe de serviço ─────────────────────────────────────────────── */
.service-detail-section {
  padding: 6rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-description {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 1rem;
}

.service-description h2,
.service-description h3 {
  color: var(--color-white);
  font-family: var(--font-display);
  margin: 2rem 0 1rem;
}

/* card lateral com o que está incluído */
.highlights-card {
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: sticky;
  top: 7rem;
  align-self: start;
}

.highlights-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.highlight-check {
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}


/* ─── página de contacto ─────────────────────────────────────────────── */
.contact-section {
  padding: 7rem 0;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-item-text span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.contact-item-text p {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form {
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 3rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition-fast);
  width: 100%;
}

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

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

.form-group select option {
  background: var(--color-dark-2);
}

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

.form-success {
  background: rgba(8, 184, 234, 0.1);
  border: 1px solid rgba(8, 184, 234, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}


/* ─── valores ────────────────────────────────────────────────────────── */
.values-section {
  padding: 4rem 0 2rem;
  background: var(--color-dark-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(8, 184, 234, 0.2);
  background: rgba(8, 184, 234, 0.03);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 0 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}


/* ─── processo ───────────────────────────────────────────────────────── */
.process-section {
  padding: 6rem 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 2.2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}


/* ─── equipa ─────────────────────────────────────────────────────────── */
.team-section {
  padding: 6rem 0;
  background: var(--color-dark-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(8, 184, 234, 0.3);
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--color-primary);
}


/* ─── responsivo ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-home .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

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

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-card:first-child {
    grid-row: auto;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }

  .btn-primary,
  .btn-outline {
    cursor: pointer;
  }
}
