﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #296FA3;
  --primary-dark: #1d5280;
  --primary-light: #3a84bb;
  --text: #212121;
  --text-muted: #555;
  --text-light: rgba(0,0,0,0.64);
  --bg: #ffffff;
  --bg-alt: #f2f2f2;
  --border: #e0e0e0;
  --nav-text: rgba(0,0,0,0.8);
  --nav-text-muted: rgba(0,0,0,0.64);
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-card: 0 1px 6px rgba(0,0,0,0.08);
  --radius: 4px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nav-text);
  font-weight: 500;
  font-size: 1rem;
}

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

.logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
}

.logo-ic {
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--nav-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--nav-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(41,111,163,0.08);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0;
}

.mobile-menu a {
  color: var(--nav-text-muted);
  padding: 10px 24px;
  font-size: 0.92rem;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu a:hover { color: var(--primary); background: #f8f8f8; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  margin-top: 64px;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: #1d3a5c;
  background-image: url('images/bg/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 32, 32, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-content h2.hero-sub {
  font-size: 25px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  max-width: 640px;
  line-height: 1.7;
}

.hero-pillars {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-pillar {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.hero-pillar strong { color: #fff; }

.hero-quote {
  margin-top: 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  max-width: 600px;
  line-height: 1.7;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
}

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

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

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

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

.btn-outline-primary:hover {
  background: rgba(41,111,163,0.05);
}

.btn-lg { padding: 12px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-radius: 4px;
}

.btn-whatsapp:hover { background: #1db954; }

/* ===== SECTION COMMONS ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-white { background: #fff; }

.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.section-header.left { text-align: left; }

.section-header h1,
.section-header h2 {
  font-size: 45px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header h2.sub {
  font-size: 25px;
  font-weight: 400;
  color: var(--primary);
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.left p { margin: 0; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 64px;
  background-color: #1d3a5c;
  background-image: url('images/bg/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,32,32,0.5);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: 45px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 48px 0 32px;
  background: #fff;
}

.intro-section p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 800px;
}

/* ===== SERVICE ITEMS ===== */
.service-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-item.reverse {
  grid-template-columns: 1fr 340px;
}

.service-item-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.service-item-img-fallback {
  min-height: 240px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.service-item.reverse .service-item-img-wrap { order: 2; }
.service-item.reverse .service-item-body { order: 1; }

.service-item-body {
  padding: 32px;
}

.service-item-body h2 {
  font-size: 25px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-item-body .service-tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.service-item-body > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.service-detail-cols h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.service-detail-cols ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-detail-cols ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.service-detail-cols ul li::before {
  content: 'â€¢';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===== SERVICE GRID (inicio) ===== */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card-home {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.service-card-home:hover { box-shadow: var(--shadow); }

.service-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-alt);
}

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

.service-card-home:hover .service-card-img { transform: scale(1.03); }

.service-card-body {
  padding: 16px;
}

.service-card-body h2 {
  font-size: 17px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 10px;
}

.service-link:hover { text-decoration: underline; }

/* ===== SECTION WITH BG IMAGE ===== */
.bg-section {
  position: relative;
  padding: 64px 0;
  background-color: #1d3a5c;
  background-size: cover;
  background-position: center;
}

.bg-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,32,32,0.5);
}

.bg-section-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-section h1 {
  font-size: 45px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.bg-section h2 {
  font-size: 25px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

.bg-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ===== CONTACT HOME ===== */
.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-home-text h1 {
  font-size: 45px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-home-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ===== CONTACT ITEMS ===== */
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(41,111,163,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-icon.wa { background: rgba(37,211,102,0.12); color: #25d366; }

.contact-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p, .contact-item a {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-item a:hover { color: var(--primary); text-decoration: underline; }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--bg-alt);
  padding: 40px 0;
  text-align: center;
}

.social-proof p {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner h3 {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  font-size: 0.95rem;
  padding: 10px 28px;
}

.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.blog-card:hover { box-shadow: var(--shadow); }

.blog-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-alt);
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img { transform: scale(1.03); }

.blog-img-fallback { height: 200px; }
.blog-img-fallback.fi-1 { background: linear-gradient(135deg,#1a3a6b,#296FA3); }
.blog-img-fallback.fi-2 { background: linear-gradient(135deg,#d95f00,#e8a020); }
.blog-img-fallback.fi-3 { background: linear-gradient(135deg,#1e8a4a,#2db56a); }
.blog-img-fallback.fi-4 { background: linear-gradient(135deg,#6b35b0,#9060d0); }

.blog-body { padding: 20px; }

.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: rgba(41,111,163,0.1);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.blog-body h1 {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-link:hover { text-decoration: underline; }

/* ===== MAP ===== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ===== CONTACT PAGE ===== */
.contact-page-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-page-intro a { color: var(--primary); font-weight: 500; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-page-h1 {
  font-size: 45px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-page-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ccc;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(41,111,163,0.15);
}

.form-success {
  display: none;
  color: #1e8a4a;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  background: rgba(30,138,74,0.08);
  border-radius: 4px;
}

/* ===== ABOUT (quiÃ©nes somos) ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.about-intro-text h1 {
  font-size: 45px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-intro-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-intro-text strong { color: var(--text); }

.about-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-photo-placeholder {
  height: 320px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.mvf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvf-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.mvf-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.mvf-card h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
}

.mvf-card blockquote {
  border-left: 3px solid var(--primary);
  padding: 8px 12px;
  margin: 0 0 12px 0;
  font-style: italic;
  color: var(--text);
  font-size: 14px;
  background: rgba(41,111,163,0.04);
  border-radius: 0 4px 4px 0;
}

.mvf-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.about-extended-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.about-extended-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.about-extended-list li i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.diff-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

.diff-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY IC ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.why-card i { font-size: 24px; color: var(--primary); margin-bottom: 10px; display: block; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== BLOG ARTICLE ===== */
.blog-article { max-width: 780px; margin: 0 auto; }

.blog-article-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.blog-article-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.blog-article-img-fallback { height: 400px; border-radius: var(--radius); margin-bottom: 32px; }
.blog-article-img-fallback.fi-1 { background: linear-gradient(135deg,#1a3a6b,#296FA3); }
.blog-article-img-fallback.fi-2 { background: linear-gradient(135deg,#d95f00,#e8a020); }
.blog-article-img-fallback.fi-3 { background: linear-gradient(135deg,#1e8a4a,#2db56a); }
.blog-article-img-fallback.fi-4 { background: linear-gradient(135deg,#6b35b0,#9060d0); }

.blog-article h1 {
  font-size: 45px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.blog-article .blog-author {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: block;
}

.blog-article .blog-lead {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.blog-article h2 {
  font-size: 25px;
  font-weight: 400;
  color: var(--primary);
  margin: 32px 0 12px;
}

.blog-article h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin: 24px 0 8px;
}

.blog-article p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.blog-article ul, .blog-article ol {
  padding-left: 24px;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-article li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-article blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(41,111,163,0.04);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-size: 16px;
  color: var(--text);
}

.tip-card {
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  border-radius: 0 4px 4px 0;
  padding: 14px 18px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tip-num {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

.benefit-card {
  display: flex;
  gap: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.benefit-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-body h2, .benefit-body h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 6px;
}

.benefit-body p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }

.article-cta { text-align: center; margin: 32px 0 20px; }

.article-nav { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

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

/* ===== FOOTER ===== */
.footer {
  background: #202124;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }

.footer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-logo-text { color: rgba(255,255,255,0.7); font-size: 14px; }

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }

.footer-links { display: flex; gap: 16px; }

.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .mvf-grid { grid-template-columns: 1fr 1fr; }
  .differentiators-grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 280px 1fr; }
  .service-item.reverse { grid-template-columns: 1fr 280px; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .contact-home-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; }
  .service-item.reverse { grid-template-columns: 1fr; }
  .service-item.reverse .service-item-img-wrap { order: 0; }
  .service-item.reverse .service-item-body { order: 0; }
  .service-item-img { min-height: 220px; }
  .service-detail-cols { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 32px; }
  .hero-content h2.hero-sub { font-size: 18px; }
  .section-header h1, .section-header h2 { font-size: 32px; }
  .mvf-grid { grid-template-columns: 1fr; }
  .differentiators-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .blog-article h1 { font-size: 28px; }
  .page-hero-content h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
}

