@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --c-primary: #0d2b52;
  --c-primary-dark: #081d38;
  --c-sky: #4a9bd9;
  --c-sky-light: #7ab8e8;
  --c-green: #10b981;
  --c-green-dark: #059669;
  --c-green-light: #34d399;
  --c-white: #fff;
  --c-bg: #f8f9fa;
  --c-bg-alt: #eef1f5;
  --c-text: #2c3e50;
  --c-text-light: #6c7a89;
  --c-border: #dce1e8;
  --c-radius: 8px;
  --c-radius-lg: 12px;
  --c-shadow-lg: 0 8px 32px rgba(13,43,82,0.12);
  --c-transition: 0.3s ease;
}

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

html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text);
  background-color: var(--c-bg);
}

h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0.5rem; }
p { margin-top: 0; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

.mc-navbar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.mc-navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.mc-navbar-brand img { height: 40px; }

.mc-navbar-brand span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary);
}

.mc-navbar-brand .mc-brand-green { color: var(--c-green); }

.mc-navbar-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-navbar-links a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--c-radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text-light);
  transition: all 0.2s;
  text-decoration: none;
}

.mc-navbar-links a:hover {
  color: var(--c-primary);
  background: var(--c-bg-alt);
}

.mc-navbar-links a.mc-nav-active {
  color: var(--c-green);
  font-weight: 600;
}

.mc-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mc-hamburger svg { width: 24px; height: 24px; stroke: var(--c-primary); fill: none; }

.mc-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

@media (max-width: 480px) { .mc-container { padding: 0 1rem; } }

.mc-hero {
  min-height: auto;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 40%, var(--c-sky) 100%);
  color: #fff;
  position: relative;
}

@media (min-width: 769px) { .mc-hero { min-height: calc(100vh - 70px); } }

.mc-hero .mc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mc-hero-badge {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.mc-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) { .mc-hero h1 { font-size: 2rem; } }
@media (max-width: 480px) { .mc-hero h1 { font-size: 1.6rem; } }

.mc-hero h1 span { color: var(--c-green-light); }

.mc-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.mc-hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 480px) { .mc-hero-buttons { flex-direction: column; align-items: stretch; } }

.mc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--c-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--c-transition);
  text-decoration: none;
  line-height: 1.5;
}

.mc-btn-primary { background: var(--c-green); color: #fff; }
.mc-btn-primary:hover { background: var(--c-green-dark); transform: translateY(-2px); box-shadow: var(--c-shadow-lg); color: #fff; }

.mc-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.mc-btn-outline:hover { background: #fff; color: var(--c-primary); }

.mc-btn-green { background: var(--c-green); color: #fff; }
.mc-btn-green:hover { background: var(--c-green-dark); transform: translateY(-2px); box-shadow: var(--c-shadow-lg); color: #fff; }

.mc-btn-white { background: #fff; color: var(--c-primary); font-weight: 600; }
.mc-btn-white:hover { background: var(--c-bg); transform: translateY(-2px); box-shadow: var(--c-shadow-lg); color: var(--c-primary); }

.mc-hero-visual { z-index: 2; }

.mc-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--c-radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
}

.mc-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.mc-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 480px) {
  .mc-hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .mc-hero-stat-number { font-size: 1.5rem; }
}

.mc-hero-stat { text-align: center; }
.mc-hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--c-green-light); }
.mc-hero-stat-label { font-size: 0.85rem; opacity: 0.8; color: rgba(255,255,255,0.8); }

.mc-section { padding: 5rem 0; }

.mc-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--c-text);
}

.mc-section-subtitle {
  font-size: 1.05rem;
  text-align: center;
  color: var(--c-text-light);
  max-width: 620px;
  margin: 0 auto 3rem;
}

.mc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.mc-service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 1.75rem;
  transition: all var(--c-transition);
}

.mc-service-card:hover { transform: translateY(-4px); box-shadow: var(--c-shadow-lg); border-color: var(--c-sky-light); }

.mc-service-icon {
  width: 52px;
  height: 52px;
  background: var(--c-bg-alt);
  border-radius: var(--c-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all var(--c-transition);
}

.mc-service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all var(--c-transition);
}

.mc-service-card:hover .mc-service-icon { background: var(--c-primary); }
.mc-service-card:hover .mc-service-icon svg { stroke: #fff; }

.mc-service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--c-primary);
}

.mc-service-card p { font-size: 0.88rem; color: var(--c-text-light); line-height: 1.6; }

.mc-section-dark { background: var(--c-primary); color: #fff; }
.mc-section-dark .mc-section-title { color: #fff; }
.mc-section-dark .mc-why-card h3 { color: #fff; }
.mc-section-dark .mc-section-subtitle { color: rgba(255,255,255,0.8); }

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

.mc-why-card { text-align: center; padding: 1.5rem; }

.mc-why-icon {
  width: 64px;
  height: 64px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.mc-why-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-why-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: #fff; }
.mc-why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

.mc-cta { background: var(--c-green); color: #fff; text-align: center; padding: 4rem 0; }
.mc-cta h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.mc-cta p { font-size: 1.05rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.9; }

.mc-page-hero {
  background: linear-gradient(135deg, #081d38, #4a9bd9);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.mc-page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.5rem; color: #fff; }
.mc-page-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.9); }

.mc-section-alt { padding: 4rem 0; background: #f8f9fa; }

.mc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mc-about-text h2 { font-size: 1.6rem; font-weight: 700; color: #0d2b52; margin-bottom: 1rem; }
.mc-about-text p { font-size: 0.95rem; color: #6c7a89; line-height: 1.8; margin-bottom: 1rem; }

.mc-about-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eef1f5;
}

.mc-about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mc-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.mc-value-card {
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mc-value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,43,82,0.12); border-color: #7ab8e8; }

.mc-value-icon {
  width: 56px;
  height: 56px;
  background: #eef1f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.mc-value-icon svg {
  width: 26px;
  height: 26px;
  stroke: #0d2b52;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.mc-value-card:hover .mc-value-icon { background: #0d2b52; }
.mc-value-card:hover .mc-value-icon svg { stroke: #fff; }

.mc-value-card h3 { font-size: 1.05rem; font-weight: 600; color: #2c3e50; margin-bottom: 0.5rem; }
.mc-value-card p { font-size: 0.88rem; color: #6c7a89; line-height: 1.6; }

.mc-stats-bar {
  background: linear-gradient(135deg, #081d38 0%, #0d2b52 100%);
  color: #fff;
  padding: 3rem 0;
}

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

.mc-stat-number { font-size: 2.5rem; font-weight: 800; color: #34d399; margin-bottom: 0.25rem; }
.mc-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.mc-cta-section { padding: 4rem 0; text-align: center; }

.mc-page-header {
  background: linear-gradient(135deg, #081d38, #4a9bd9);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.mc-page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.5rem; color: #fff; }
.mc-page-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.9); padding: 0 1rem; }

@media (max-width: 480px) { .mc-page-hero h1 { font-size: 1.7rem; } }

.mc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--c-border);
}

.mc-detail:nth-child(even) { direction: rtl; }
.mc-detail:nth-child(even) > * { direction: ltr; }

@media (max-width: 768px) {
  .mc-detail { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .mc-detail:nth-child(even) { direction: ltr; }
  .mc-detail-img { max-width: 400px; margin: 0 auto; }
}

.mc-detail-img {
  aspect-ratio: 4/3;
  border-radius: var(--c-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-bg-alt), var(--c-border));
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.mc-detail-icon {
  font-size: 2.5rem;
  opacity: 0.35;
  text-align: center;
  padding: 3rem;
}

.mc-timeline {
  position: relative;
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding-left: 3rem;
}

.mc-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-green) 0%, var(--c-sky) 100%);
  border-radius: 2px;
}

.mc-timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.mc-timeline-item:last-child {
  padding-bottom: 0;
}

.mc-timeline-number {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px var(--c-bg);
  z-index: 1;
}

.mc-timeline-content {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.mc-timeline-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--c-navy);
}

.mc-timeline-content p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.mc-detail-content h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--c-primary); }
.mc-detail-content p { color: var(--c-text-light); margin-bottom: 0.75rem; line-height: 1.7; }
.mc-detail-content ul { margin-bottom: 1.25rem; }
.mc-detail-content ul li { padding: 0.2rem 0; color: var(--c-text-light); display: flex; align-items: center; gap: 0.5rem; }
.mc-detail-content ul li::before { content: '\2713'; color: var(--c-green); font-weight: 700; }

.mc-blog-hero {
  background: linear-gradient(135deg, #081d38 0%, #0d2b52 40%, #4a9bd9 100%);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.mc-blog-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.mc-blog-hero p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.9); }

.mc-blog-section { padding: 3rem 0; }
.mc-blog-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.mc-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

@media (max-width: 480px) { .mc-blog-grid { grid-template-columns: 1fr; } }

.mc-blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef1f5;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.mc-blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(13,43,82,0.15); }

.mc-blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #0d2b52, #4a9bd9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mc-blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-blog-card-img .placeholder-text { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }

.mc-blog-card-body { padding: 1.5rem; }

.mc-blog-card-category {
  display: inline-block;
  background: #eef1f5;
  color: #0d2b52;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mc-blog-card-body h3 { font-size: 1.15rem; font-weight: 700; color: #2c3e50; margin-bottom: 0.5rem; line-height: 1.3; }
.mc-blog-card-body p { font-size: 0.9rem; color: #6c7a89; line-height: 1.5; margin-bottom: 0.75rem; }
.mc-blog-card-meta { font-size: 0.82rem; color: #9ca3af; }

.mc-blog-empty { text-align: center; padding: 4rem 1rem; color: #6c7a89; }
.mc-blog-empty h3 { font-size: 1.3rem; color: #2c3e50; margin-bottom: 0.5rem; }
.mc-blog-empty p { font-size: 0.95rem; }

.mc-contact-hero {
  min-height: auto;
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #081d38 0%, #0d2b52 40%, #4a9bd9 100%);
  color: #fff;
}

.mc-contact-hero .mc-container { text-align: center; width: 100%; }
.mc-contact-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.75rem; color: #fff; }
.mc-contact-hero h1 span { color: #34d399; }
.mc-contact-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.mc-main-section { padding: 4rem 0; }

.mc-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mc-form-card {
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 12px;
  padding: 2.25rem;
}

.mc-form-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 1.5rem; color: #0d2b52; }

.mc-form-group { margin-bottom: 1.1rem; }
.mc-form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.88rem; color: #2c3e50; }

.mc-form-group input,
.mc-form-group select,
.mc-form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #dce1e8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
  color: #2c3e50;
  box-sizing: border-box;
  line-height: 1.5;
}

.mc-form-group select { -webkit-appearance: auto; appearance: auto; padding-right: 2rem; }

.mc-form-group input:focus,
.mc-form-group select:focus,
.mc-form-group textarea:focus {
  outline: none;
  border-color: #4a9bd9;
  box-shadow: 0 0 0 3px rgba(74,155,217,0.1);
}

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

.mc-alert { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; display: none; font-weight: 500; }
.mc-alert-success { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.mc-alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.mc-whatsapp-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 12px;
  padding: 1.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.mc-whatsapp-card svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-whatsapp-text { flex: 1; }
.mc-whatsapp-text h4 { font-size: 1rem; font-weight: 700; margin: 0 0 0.25rem; }
.mc-whatsapp-text p { font-size: 0.85rem; opacity: 0.9; margin: 0; line-height: 1.4; }

.mc-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  color: #128c7e;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.mc-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); color: #128c7e; }

.mc-right-col { display: flex; flex-direction: column; gap: 1.25rem; }

.mc-info-card {
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 12px;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.mc-info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(13,43,82,0.12); border-color: #7ab8e8; }

.mc-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #eef1f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mc-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0d2b52;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.mc-info-card:hover .mc-info-icon { background: #0d2b52; }
.mc-info-card:hover .mc-info-icon svg { stroke: #fff; }

.mc-info-text h3 { font-size: 0.78rem; font-weight: 600; color: #6c7a89; margin: 0 0 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.mc-info-text p { font-size: 0.92rem; color: #2c3e50; margin: 0; line-height: 1.4; }
.mc-info-text a { color: #4a9bd9; text-decoration: none; font-weight: 600; }
.mc-info-text a:hover { color: #0d2b52; }

.mc-map-card { border-radius: 12px; overflow: hidden; border: 1px solid #dce1e8; min-height: 260px; background: #eef1f5; }
.mc-map-card iframe { width: 100%; height: 260px; border: none; display: block; }

.mc-footer { background-color: #081d38; color: #fff; padding: 3rem 0 1.5rem; width: 100%; margin: 0; }
.mc-footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.mc-footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; }
.mc-footer-logo { height: 50px; width: auto; }
.mc-footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.mc-footer-nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.mc-footer-nav a:hover { color: #fff; }
.mc-footer-divider { border-top: 1px solid rgba(255,255,255,0.15); margin: 0; }
.mc-footer-bottom { padding-top: 1.5rem; }
.mc-footer-copy { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }

.mc-blog-post-hero {
  background: linear-gradient(135deg, #081d38 0%, #0d2b52 40%, #4a9bd9 100%);
  color: #fff;
  padding: 3rem 0 2rem;
  text-align: center;
}

.mc-blog-post-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.75rem; color: #fff; }

.mc-blog-post-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.mc-blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c3e50;
}

.mc-blog-post-content h2 { font-size: 1.5rem; font-weight: 700; color: #0d2b52; margin-top: 2rem; margin-bottom: 0.75rem; }
.mc-blog-post-content h3 { font-size: 1.25rem; font-weight: 600; color: #0d2b52; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.mc-blog-post-content p { margin-bottom: 1rem; }
.mc-blog-post-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.mc-blog-post-content ul li { margin-bottom: 0.25rem; }
.mc-blog-post-back { text-align: center; padding: 2rem 0; }
.mc-blog-post-back a { color: var(--c-sky); font-weight: 600; text-decoration: none; }
.mc-blog-post-back a:hover { color: var(--c-primary); }

.mc-service-card-featured {
  background: linear-gradient(135deg, #0d2b52 0%, #1a3f6f 100%);
  border-color: #4a9bd9;
  color: #fff;
}

.mc-service-card-featured h3 { color: #fff; }
.mc-service-card-featured p { color: rgba(255,255,255,0.8); }

.mc-service-card-featured .mc-service-icon {
  background: rgba(74,155,217,0.2);
}

.mc-service-card-featured .mc-service-icon svg { stroke: #4a9bd9; }

.mc-service-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,43,82,0.3);
  border-color: var(--c-green);
}

.mc-reformas-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--c-border);
}

.mc-reformas-content {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.mc-reformas-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.mc-reformas-content p {
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mc-reformas-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 1.5rem;
}

.mc-reformas-content ul li {
  padding: 0.2rem 0;
  color: var(--c-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mc-reformas-content ul li::before {
  content: '\2713';
  color: var(--c-green);
  font-weight: 700;
}

.mc-reformas-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-radius: var(--c-radius-lg);
  overflow: hidden;
}

.mc-reformas-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.mc-detail-img-triple {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  background: var(--c-bg-alt);
  aspect-ratio: auto;
}

.mc-detail-img-triple img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .mc-hero .mc-container { grid-template-columns: 1fr; text-align: center; }
  .mc-hero p { margin-left: auto; margin-right: auto; }
  .mc-hero-buttons { justify-content: center; }
  .mc-hero-stats { justify-content: center; }
  .mc-hero-visual { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .mc-hamburger { display: block; }
  .mc-navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .mc-navbar-links.mc-nav-open { display: flex; }
  .mc-section-title { font-size: 1.7rem; }
  .mc-about-grid { grid-template-columns: 1fr; }
  .mc-stats-grid { grid-template-columns: 1fr 1fr; }
  .mc-values-grid { grid-template-columns: 1fr 1fr; }
  .mc-contact-hero h1 { font-size: 1.8rem; }
  .mc-main-grid { grid-template-columns: 1fr; }
  .mc-whatsapp-card { flex-direction: column; text-align: center; }
  .mc-blog-hero h1 { font-size: 2rem; }
  .mc-footer-top { flex-direction: column; text-align: center; }
  .mc-footer-nav { justify-content: center; }
  .mc-blog-post-hero h1 { font-size: 1.7rem; }
  .mc-blog-post-content { padding: 2rem 1rem; }
  .mc-reformas-gallery { grid-template-columns: 1fr 1fr; }
  .mc-reformas-gallery img { height: 220px; }
  .mc-reformas-gallery img:first-child { grid-column: span 2; }
  .mc-detail-img-triple { grid-template-columns: 1fr 1fr !important; }
  .mc-detail-img-triple img { height: 220px; min-height: 0; }
  .mc-detail-img-triple img:first-child { grid-column: span 2; }
}

@media (max-width: 480px) {
  .mc-section { padding: 3rem 0; }
  .mc-section-title { font-size: 1.4rem; }
  .mc-btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
  .mc-services-grid { grid-template-columns: 1fr; }
  .mc-stats-grid { grid-template-columns: 1fr 1fr; }
  .mc-values-grid { grid-template-columns: 1fr; }
  .mc-form-card { padding: 1.5rem; }
  .mc-reformas-gallery img { height: 180px; }
}
