:root {
  --color-primary: #1a3a5c;
  --color-primary-rgb: 26, 58, 92;
  --color-secondary: #2c5f8a;
  --color-accent: #3a7cc0;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f8fb;
  --color-text: #1e2a3a;
  --color-text-light: #5a6a7e;
  --color-border: #dfe4ea;
  --color-white: #ffffff;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

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

button, a, input, textarea, select {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

section[id] {
  scroll-margin-top: 80px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  font-family: var(--font-body);
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1240px) {
  .container { padding: 0; }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

@media (min-width: 768px) {
  .navbar-inner { padding: 0 40px; }
}

@media (min-width: 1240px) {
  .navbar-inner { padding: 0; }
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.4s ease;
  line-height: 1.3;
}

.navbar.scrolled .navbar-logo {
  color: var(--color-primary);
}

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

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

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

.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--color-primary);
}

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

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--color-text);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 58, 92, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overscroll-behavior: contain;
}

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

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1200&q=80') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,58,92,0.7), rgba(0,0,0,0.55));
  z-index: 1;
}

.hero-float-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(58, 124, 192, 0.08);
  filter: blur(80px);
  top: 10%;
  left: -5%;
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}

.hero-float-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  filter: blur(60px);
  bottom: 15%;
  right: 5%;
  z-index: 1;
  animation: float 8s ease-in-out infinite 1s;
}

.hero-float-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(26,58,92,0.1);
  filter: blur(70px);
  top: 60%;
  left: 30%;
  z-index: 1;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 2px;
  color: var(--color-white);
  text-wrap: balance;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 strong {
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4rem; }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-white);
  padding: 16px 40px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease 0.6s forwards, pulse 2.5s infinite 1.4s;
  opacity: 0;
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(255,255,255,0.1); }
}

/* SECTION SEPARATOR */
.section-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--color-primary-rgb), 0.15), transparent);
}

/* SECTION STYLES */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section { padding: 100px 0; }
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-accent {
  background: rgba(var(--color-primary-rgb), 0.03);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 16px;
  text-wrap: balance;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-title strong {
  font-weight: 700;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* FLOAT SHAPES */
.float-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.fs-1 {
  width: 200px;
  height: 200px;
  background: rgba(var(--color-primary-rgb), 0.04);
  filter: blur(80px);
  top: 10%;
  right: -5%;
  animation: float 7s ease-in-out infinite;
}

.fs-2 {
  width: 150px;
  height: 150px;
  background: rgba(var(--color-primary-rgb), 0.05);
  filter: blur(70px);
  bottom: 10%;
  left: -3%;
  animation: float 6s ease-in-out infinite 1.5s;
}

/* CARDS */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.card:hover .card-icon {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

/* COUNTERS */
.counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--color-border);
}

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

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

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .counter-number { font-size: 3rem; }
}

.counter-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ABOUT / ENFOQUE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

.about-image {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 1024px) {
  .about-image img { height: 500px; }
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.2;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .about-content h2 { font-size: 2.25rem; }
}

.about-content h2 strong {
  font-weight: 700;
}

.about-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.about-feature .material-icons {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feature p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* SERVICES */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.service-image {
  overflow: hidden;
  height: 220px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 28px 24px;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.service-link:hover {
  gap: 8px;
  opacity: 0.8;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(var(--color-primary-rgb), 0.12);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #d4a84b;
}

.testimonial-stars .material-icons {
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

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

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.5px;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question .material-icons {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--color-text-light);
}

.faq-question[aria-expanded="true"] .material-icons {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-white);
  margin-bottom: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.08);
}

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

.btn-submit {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.2);
}

.form-success {
  display: none;
  padding: 16px 24px;
  background: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.2);
  border-radius: 4px;
  color: #1a7a3a;
  font-size: 0.95rem;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-icon .material-icons,
.contact-info-icon .fab {
  font-size: 1.2rem;
}

.contact-info-text h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

.contact-map {
  margin-top: 32px;
}

/* TEAM */
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.team-card-image {
  overflow: hidden;
  height: 280px;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-body {
  padding: 28px 24px;
}

.team-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.team-card-body .team-specialty {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card-body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.team-link:hover {
  gap: 8px;
  opacity: 0.8;
}

/* SUBPAGE HERO */
.subpage-hero {
  background: var(--color-primary);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,58,92,1), rgba(44,95,138,0.9));
  z-index: 0;
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero .hero-label {
  animation: none;
  opacity: 1;
}

.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 16px;
  animation: none;
  opacity: 1;
}

@media (min-width: 768px) {
  .subpage-hero h1 { font-size: 3rem; }
}

.subpage-hero h1 strong {
  font-weight: 700;
}

.subpage-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* SUBPAGE CONTENT */
.subpage-content {
  padding: 80px 0;
}

.subpage-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.2;
}

.subpage-content h2 strong {
  font-weight: 700;
}

.subpage-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.subpage-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.subpage-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.subpage-content ul li .material-icons {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.subpage-cta {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 48px;
}

.subpage-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-text);
  margin-bottom: 16px;
}

.subpage-cta h3 strong {
  font-weight: 700;
}

.subpage-cta p {
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 16px 40px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.2);
}

/* TEAM PROFILE PAGE */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

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

.profile-photo {
  overflow: hidden;
  border-radius: 4px;
}

.profile-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.profile-info h2 {
  margin-bottom: 8px;
}

.profile-specialty {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
}

/* FOOTER */
.footer {
  background: #0f1f2e;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

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

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  color: var(--color-white);
  border-color: var(--color-white);
  background: rgba(255,255,255,0.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  animation: waPulse 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
