/*
Theme Name: ITEK Tecnologia
Theme URI: 
Author: 
Author URI: 
Description: Tema WordPress para ITEK Informática — Reparação, Software e Suporte Técnico
Version: 1.0
License: GPL v2 or later
Text Domain: itek
*/

:root {
  --bg: oklch(98% 0.004 240);
  --surface: oklch(100% 0 0);
  --fg: oklch(15% 0.005 0);
  --muted: oklch(48% 0.01 0);
  --border: oklch(90% 0.006 240);
  --accent: #1414DC;
  --accent-dark: #000E79;
  --accent-light: oklch(88% 0.08 278);

  --font-display: 'Sora', 'Avenir Next', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;

  --nav-height: 72px;
  --radius: 14px;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.nav-hidden {
  transform: translateY(-100%);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

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

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

.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
  border-radius: var(--radius);
  transition: background 0.15s;
}

.nav-links a:hover {
  background: var(--accent-light);
}

.nav-cta {
  background: #1414DC;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background: #000E79 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hero {
  --hero-bg: url('assets/images/mqtnxleb-image.png');
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  color: #fff;
  padding-top: var(--nav-height);
  padding-bottom: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-bg) center/cover no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-rays-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.85;
}

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 48px;
  width: 100%;
}

.hero-header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.hero-title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 800px;
}

.hero-title {
  color: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Sora', var(--font-display), system-ui, sans-serif;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  justify-content: center;
  letter-spacing: -2px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-desc-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 600px;
  width: 100%;
}

.hero-desc {
  color: #A8A8A8;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-paper {
  align-items: center;
  border-radius: 2px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  padding: 12px 14px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-paper:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-paper-text {
  font-family: 'Geist Mono', 'SF Mono', var(--font-body), monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  line-height: 16px;
  text-transform: uppercase;
  width: max-content;
}

.btn-paper-primary {
  background-color: #FFFFFF;
}

.btn-paper-primary .btn-paper-text {
  color: #0D0D0D;
}

.btn-paper-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-paper-secondary .btn-paper-text {
  color: #FFFFFF;
}

/* Sombra/Glow do botão no Paper */
.btn-paper-glow {
  bottom: -22px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(5px);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s;
}

.btn-paper:hover .btn-paper-glow {
  opacity: 0.6;
}

.hero-rating-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
}

.hero-rating-star {
  height: 14px;
  width: 14px;
  fill: #FFDD45;
  display: inline-block;
}

.hero-rating-text {
  color: #A8A8A8;
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 42px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

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

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

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

section {
  padding: 48px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  margin-top: 4px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
  margin-top: 12px;
}

#servicos {
  background-color: #000000;
  box-sizing: border-box;
  padding: 128px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.services-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-top: 48px;
}

.service-card {
  box-sizing: border-box;
  width: 100%;
}

.service-image-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-sizing: border-box;
  margin-bottom: 16px;
  overflow: clip;
  position: relative;
  width: 100%;
}

.service-image-bg {
  background-position: 50%;
  background-size: cover;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image-bg {
  transform: scale(1.03);
}

.service-meta-row {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.service-carousel-title {
  box-sizing: border-box;
  color: #FFFFFF;
  font-family: var(--font-display), "Inter", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.33;
}

.service-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  box-sizing: border-box;
  padding: 4px 12px;
}

.service-tag-text {
  box-sizing: border-box;
  color: #FAFAFA;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}.glare-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
  background-size: 250% 250%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -100% -100%, 0 0;
  z-index: 3;
}

#sobre {
  background-color: #000000;
  box-sizing: border-box;
  padding: 128px 0;
  width: 100%;
}

.about-container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

.about-wrapper-grid {
  align-items: flex-end;
  box-sizing: border-box;
  display: flex;
  gap: 56px;
  width: 100%;
}

.about-col {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 50%;
}

.about-img-group-left {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(-40px);
}

.about-img-group-right {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(40px);
}

.about-image-card {
  aspect-ratio: 2 / 1.5;
  border-radius: 16px;
  box-sizing: border-box;
  overflow: clip;
  position: relative;
  width: 100%;
}

.about-image-bg {
  background-position: 50%;
  background-size: cover;
  bottom: 0px;
  box-sizing: border-box;
  height: 100%;
  left: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
}

.about-text-content {
  box-sizing: border-box;
  flex-grow: 1;
}

.about-title {
  box-sizing: border-box;
  color: #FFFFFF;
  font-family: var(--font-display), "Inter", system-ui, sans-serif;
  font-size: 36px;
  line-height: 1.12;
  margin-bottom: 24px;
}

.about-paragraphs {
  box-sizing: border-box;
  margin-bottom: 24px;
  max-width: 576px;
}

.about-paragraph {
  box-sizing: border-box;
  color: #71717B;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

.about-btn-container {
  box-sizing: border-box;
  margin-top: 32px;
}

.btn-about-roles {
  align-items: center;
  background-color: #18181B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-sizing: border-box;
  display: inline-flex;
  gap: 6px;
  height: 40px;
  justify-content: center;
  padding: 0 16px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-about-roles:hover {
  background-color: #27272A;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-about-roles-text {
  box-sizing: border-box;
  color: #FAFAFA;
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 142.857%;
  width: max-content;
}

#contactos {
  background-color: #000000;
  box-sizing: border-box;
  padding: 128px 0;
  width: 100%;
}

.contact-container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

.contact-wrapper {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
}

.contact-header {
  box-sizing: border-box;
  margin-bottom: 64px;
  text-align: center;
}

.contact-title {
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-display), "Inter", system-ui, sans-serif;
  font-size: 48px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: -1.2px;
  line-height: 100%;
  margin-bottom: 16px;
  text-align: center;
}

.contact-desc {
  box-sizing: border-box;
  color: #71717B;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 16px;
  justify-content: center;
  line-height: 150%;
  margin-left: auto;
  margin-right: auto;
  max-width: 672px;
  text-align: center;
}

.contact-card-v2 {
  background-color: #2929299C;
  border-radius: 15px;
  box-sizing: border-box;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(5, minmax(0px, 1fr));
  padding: 48px;
  width: 100%;
}

.contact-info-col {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 4px;
  grid-column: span 2;
}

.contact-info-item {
  align-items: start;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
  padding: 16px;
  width: 100%;
}



.contact-info-text {
  box-sizing: border-box;
  color: #71717B;
  display: inline-block;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.contact-info-text a {
  color: inherit;
  text-decoration: none;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.contact-info-icon {
  flex-shrink: 0;
}

.contact-form-col {
  box-sizing: border-box;
  grid-column: span 3;
}

.contact-form-col-spacer {
  box-sizing: border-box;
  height: 0;
  margin-bottom: 16px;
}

.contact-fields-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.contact-fields-row {
  box-sizing: border-box;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
}

.contact-field-group {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact-field-label-row {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  width: 100%;
}

.contact-field-label {
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 137.5%;
}

.contact-field-required {
  box-sizing: border-box;
  color: oklch(57.7% 0.245 27.3);
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 137.5%;
}

.contact-input-wrapper {
  align-items: center;
  border: 1px solid #E4E4E7;
  border-radius: 6px;
  box-shadow: #0000000D 0px 1px 3px;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  min-width: 0;
  overflow: clip;
  width: 100%;
}

.contact-input-wrapper input {
  background: transparent;
  border: none;
  box-sizing: border-box;
  color: #FFFFFF;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 14px;
  height: 100%;
  outline: none;
  padding: 4px 10px;
  width: 100%;
}

.contact-input-wrapper input::placeholder {
  color: #71717B;
}

.contact-textarea-wrapper {
  border: 1px solid #E4E4E7;
  border-radius: 6px;
  box-shadow: #0000000D 0px 1px 3px;
  box-sizing: border-box;
  display: flex;
  min-height: 100px;
  overflow: clip;
  width: 100%;
}

.contact-textarea-wrapper textarea {
  background: transparent;
  border: none;
  box-sizing: border-box;
  color: #FFFFFF;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 14px;
  height: 100%;
  min-height: 100px;
  outline: none;
  padding: 8px 10px;
  resize: vertical;
  width: 100%;
}

.contact-textarea-wrapper textarea::placeholder {
  color: #71717B;
}

.contact-submit-btn {
  align-items: center;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  gap: 6px;
  height: 40px;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
  width: 100%;
}

.contact-submit-btn:hover {
  background-color: #1A1A1A;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-submit-text {
  box-sizing: border-box;
  color: #FAFAFA;
  display: flex;
  flex-shrink: 0;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 142.857%;
  text-align: center;
  width: max-content;
}

.contact-map-v2 {
  background-color: #E5E5E5;
  box-sizing: border-box;
  height: 311px;
  position: relative;
  width: 100%;
  margin-top: 64px;
  overflow: hidden;
  border-radius: 12px;
}

.contact-map-v2 iframe {
  filter: grayscale(1);
  height: 100%;
  width: 100%;
  border: 0;
  display: block;
}

.contact-map-pin-container {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-map-label {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: #0000001A 0px 10px 20px;
  box-sizing: border-box;
  padding: 12px 20px;
}

.contact-map-title {
  box-sizing: border-box;
  color: #1A1C19;
  font-family: var(--font-body), "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

footer {
  background: linear-gradient(to top, #1414DC, #000000);
  padding: 48px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 0.8px solid rgba(229, 231, 235, 0.3);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand-name {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #fff;
}

.footer-brand-sub {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.footer-logo-img {
  max-width: 280px;
  height: auto;
  margin-top: 4px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-col {
  text-align: center;
}

.footer-col-title {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-links a,
.footer-links span {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s;
}

.footer-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

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

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 901px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-col {
    text-align: left;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .hero .container {
    max-width: var(--max-w);
  }

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

  .service-card {
    max-width: 500px;
    margin-inline: auto;
  }

  .about-wrapper-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .about-col {
    width: 100%;
    gap: 48px;
  }

  .about-img-group-left,
  .about-img-group-right {
    transform: none;
  }

  .contact-card-v2 {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .contact-info-col {
    grid-column: span 5;
  }

  .contact-form-col {
    grid-column: span 5;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-brand {
    flex: 0 0 100%;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px 16px;
    gap: 8px;
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.06);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
  }

  .nav-links .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

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



  .hero {
    min-height: 100vh;
  }

  section {
    padding: 48px 0;
  }

  .footer-top {
    gap: 16px;
    text-align: center;
  }

  .footer-col-empresa {
    display: none;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo-img {
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 32px;
  }
  .contact-card-v2 {
    padding: 24px 16px;
  }
}

@media (max-width: 400px) {
  .contact-title {
    font-size: 28px;
  }
}

.hero-wrapper > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.2, 0, 0, 1), transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.hero-loaded .hero-wrapper > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-loaded .hero-header-block {
  transition-delay: 0.05s;
}

.hero-loaded .hero-actions-row {
  transition-delay: 0.22s;
}

.hero-loaded .hero-rating-block {
  transition-delay: 0.35s;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.2, 0, 0, 1), transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

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

.services-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.service-card {
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {

  .hero-wrapper > *,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .service-card,
  .service-icon {
    transition: none !important;
  }

  .service-card:hover,
  .service-card:hover .service-icon {
    transform: none !important;
  }
}