/* ========================================
   AGÊNCIA 365 — ASHLEY LAYOUT SYSTEM
   Full self-contained design system
======================================== */

/* ===== VARIABLES ===== */
:root {
  --primary-orange: #FF9900;
  --primary-red: #FF4D00;
  --primary-light: #FFB347;
  --gradient-primary: linear-gradient(135deg, #FF9900 0%, #FF4D00 100%);
  --gradient-button: linear-gradient(90deg, #FF9900 0%, #FF4D00 100%);
  --gradient-button-hover: linear-gradient(90deg, #FFB347 0%, #FF6600 100%);
  --bg-dark: #050508;
  --bg-dark-secondary: #0A0A0F;
  --bg-soft: #f4f4f4;
  --bg-card: rgba(20, 20, 25, 0.6);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-dark: #1a1a1a;
  --text-dark-soft: #555;
  --border-color: rgba(255, 255, 255, 0.1);
  --accent: var(--primary-orange);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', var(--font-primary);
  --whatsapp-green: #25D366;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
.mil-no-scroll { overflow: hidden; height: 100vh; }

/* ===== CONTAINER & GRID ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row > [class*="col-"] { padding: 0 15px; }
.col-12 { width: 100%; }
.col-md-4 { width: 100%; }
.col-md-6 { width: 100%; }
.col-md-7 { width: 100%; }
.col-lg-3 { width: 100%; }
.col-lg-4 { width: 100%; }
.col-lg-5 { width: 100%; }
.col-lg-6 { width: 100%; }
.col-lg-7 { width: 100%; }
.col-lg-8 { width: 100%; }
.col-lg-10 { width: 100%; }
.col-xl-4 { width: 100%; }
.col-xl-5 { width: 100%; }
@media (min-width: 768px) {
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333%; }
}
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
  .col-lg-10 { width: 83.333%; }
}
@media (min-width: 1200px) {
  .col-xl-4 { width: 33.333%; }
  .col-xl-5 { width: 41.666%; }
}
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

/* ===== SPACING UTILITIES ===== */
.mil-p-120-60 { padding-top: 120px; padding-bottom: 60px; }
.mil-p-120-30 { padding-top: 120px; padding-bottom: 30px; }
.mil-p-120-120 { padding-top: 120px; padding-bottom: 120px; }
.mil-p-120-0 { padding-top: 120px; padding-bottom: 0; }
.mil-p-0-120 { padding-top: 0; padding-bottom: 120px; }
.mil-mb-5 { margin-bottom: 5px; }
.mil-mb-10 { margin-bottom: 10px; }
.mil-mb-15 { margin-bottom: 15px; }
.mil-mb-30 { margin-bottom: 30px; }
.mil-mb-60 { margin-bottom: 60px; }
.mil-mb-90 { margin-bottom: 90px; }
.mil-mb-120 { margin-bottom: 120px; }
@media (max-width: 992px) {
  .mil-p-120-60 { padding-top: 80px; padding-bottom: 30px; }
  .mil-p-120-30 { padding-top: 80px; padding-bottom: 15px; }
  .mil-p-120-120 { padding-top: 80px; padding-bottom: 80px; }
  .mil-p-120-0 { padding-top: 80px; }
  .mil-p-0-120 { padding-bottom: 80px; }
  .mil-mb-90 { margin-bottom: 60px; }
  .mil-mb-120 { margin-bottom: 60px; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1, .mil-h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
p { margin-bottom: 15px; text-align: left; }
.mil-upper { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; }
.mil-thin { font-weight: 300; }
.mil-accent { color: var(--accent); }
.mil-center { text-align: center; }
.mil-center p { text-align: center; }
.mil-suptitle {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  margin-bottom: 20px;
}
.mil-suptitle-right { text-align: right; }
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dark BG text */
.mil-dark-bg { background: var(--bg-dark); }
.mil-dark-bg h1, .mil-dark-bg h2, .mil-dark-bg h3, .mil-dark-bg h4, .mil-dark-bg h5, .mil-dark-bg h6,
.mil-muted { color: var(--text-primary); }
.mil-light-soft { color: var(--text-secondary); }
.mil-dark-bg p { color: var(--text-secondary); }

/* Light sections */
.mil-soft-bg { background: var(--bg-soft); }

/* White BG sections */
.mil-white-bg {
  background: #ffffff;
  color: var(--text-dark);
}
.mil-white-bg h1, .mil-white-bg h2, .mil-white-bg h3,
.mil-white-bg h4, .mil-white-bg h5, .mil-white-bg h6 {
  color: var(--text-dark);
}
.mil-white-bg p { color: var(--text-dark-soft); }
.mil-white-bg .mil-partner-item { color: #999; }
.mil-white-bg .mil-partner-item:hover { color: var(--text-dark); }
.mil-white-bg .mil-suptitle { color: var(--text-dark-soft); }
.mil-white-bg .mil-thin { font-weight: 300; }
.mil-white-bg .mil-quote { color: var(--text-dark); }
.mil-white-bg .mil-label { color: var(--text-dark-soft); }
.mil-white-bg .mil-label.mil-accent { color: var(--accent); }
.mil-white-bg .mil-link.mil-dark { color: var(--text-dark); }
.mil-white-bg .mil-link.mil-dark:hover { color: var(--accent); }
.mil-white-bg .mil-post-text { color: var(--text-dark-soft); }
.mil-white-bg .mil-blog-card h4 { color: var(--text-dark); }
.mil-white-bg .mil-blog-card:hover h4 { color: var(--accent); }
.mil-white-bg .mil-cover-frame { border-radius: 8px; }
.mil-white-bg .mil-divider { background: rgba(0,0,0,0.1); }

/* ===== PRELOADER ===== */
.mil-preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--bg-dark); z-index: 99999;
  display: flex; justify-content: center; align-items: center;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.mil-preloader.mil-hidden { transform: translateY(-100%); pointer-events: none; }
.mil-preloader-animation { position: relative; width: 100%; height: 100px; display: flex; justify-content: center; align-items: center; }
.mil-pos-abs { position: absolute; display: flex; flex-direction: column; align-items: center; }
.mil-pos-abs .mil-h3 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 700;
  color: var(--text-primary); opacity: 0; transform: translateY(30px);
  transition: all 0.5s ease; display: none; line-height: 1.1;
}
.mil-pos-abs .mil-h3.mil-thin { font-weight: 300; color: var(--text-muted); }
.mil-pos-abs .mil-h3.mil-active { display: block; opacity: 1; transform: translateY(0); }
.mil-pos-abs .mil-h3.mil-past { display: block; opacity: 0; transform: translateY(-30px); }
.mil-animation-2 { display: none; }
.mil-animation-2.mil-active { display: flex; }
.mil-reveal-frame { position: relative; overflow: hidden; }
.mil-reveal-box {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--accent); transform: translateX(-101%); z-index: 2;
}
.mil-reveal-box.mil-active { animation: revealSweep 1.2s cubic-bezier(0.86, 0, 0.07, 1) forwards; }
@keyframes revealSweep { 0% { transform: translateX(-101%); } 50% { transform: translateX(0); } 100% { transform: translateX(101%); } }

/* ===== PROGRESS BAR ===== */
.mil-progress-track {
  position: fixed; right: 0; top: 0; width: 4px; height: 100vh;
  background: rgba(255,255,255,0.05); z-index: 9999;
}
.mil-progress { width: 100%; height: 0%; background: var(--gradient-primary); transition: height 0.1s linear; }

/* ===== CUSTOM CURSOR ===== */
.mil-ball {
  position: fixed; top: 0; left: 0; width: 20px; height: 20px;
  background: transparent; border: 2px solid white; border-radius: 50%;
  pointer-events: none; z-index: 999999; mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  display: flex; justify-content: center; align-items: center;
  margin-top: -10px; margin-left: -10px;
}
.mil-ball .mil-icon-1, .mil-ball .mil-more-text, .mil-ball .mil-choose-text { display: none; font-size: 14px; font-weight: 600; }
.mil-ball.mil-hover { width: 80px; height: 80px; background: white; margin-top: -40px; margin-left: -40px; }
@media (min-width: 1024px) { body, a, button, input, textarea { cursor: none; } }
@media (max-width: 1023px) { .mil-ball { display: none !important; } }

/* ===== FRAME ===== */
.mil-frame {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  pointer-events: none; z-index: 9990;
  transition: none;
}
.mil-frame-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 30px clamp(20px, 4vw, 40px);
  pointer-events: all;
  transition: background 0.35s ease;
}
/* When scrolling over white sections, darken the frame header */
.mil-frame.mil-on-light .mil-frame-top {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.mil-frame-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-direction: row-reverse; /* Swaps left and right children */
  padding: 30px clamp(20px, 4vw, 40px);
  pointer-events: all;
}
.mil-logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  color: var(--text-primary); letter-spacing: 1px; z-index: 10;
  transition: color 0.35s ease;
}
.mil-logo span { color: var(--accent); }
.mil-frame.mil-on-light .mil-logo { color: var(--text-dark); }

/* ===== MENU BUTTON ===== */
.mil-menu-btn {
  width: 40px; height: 24px; position: relative; cursor: pointer; z-index: 10;
}
.mil-menu-btn span {
  position: absolute; height: 2px; width: 100%; background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s ease; left: 0;
}
.mil-menu-btn span:nth-child(1) { top: 0; }
.mil-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mil-menu-btn span:nth-child(3) { bottom: 0; width: 60%; }
.mil-menu-btn.mil-active span:nth-child(1) { top: 50%; transform: rotate(45deg) translateY(-50%); }
.mil-menu-btn.mil-active span:nth-child(2) { opacity: 0; }
.mil-menu-btn.mil-active span:nth-child(3) { bottom: 50%; width: 100%; transform: rotate(-45deg) translateY(50%); }
/* Dark hamburger on light sections */
.mil-frame.mil-on-light .mil-menu-btn span { background: var(--text-dark); }
.mil-frame.mil-on-light .mil-back-to-top a { color: var(--text-dark-soft); }

/* ===== MENU OVERLAY ===== */
.mil-menu-frame {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 9995; pointer-events: none; opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mil-menu-frame.mil-active { opacity: 1; visibility: visible; pointer-events: all; }
.mil-menu-content {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-dark); display: flex; align-items: center;
  padding: 100px 0 60px;
  overflow-y: auto;
}
.mil-main-menu ul { padding: 0; }
.mil-main-menu > ul > li { margin-bottom: 8px; }
.mil-main-menu > ul > li > a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: var(--text-primary); display: inline-block;
  position: relative; transition: color 0.3s ease;
}
.mil-main-menu > ul > li > a:hover { color: var(--accent); }
.mil-main-menu > ul > li > ul { padding-left: 20px; margin-top: 8px; display: none; }
.mil-main-menu > ul > li.mil-active > ul { display: block; }
.mil-main-menu > ul > li > ul > li > a {
  font-size: 1rem; color: var(--text-secondary); padding: 4px 0; display: inline-block;
  transition: color 0.3s ease;
}
.mil-main-menu > ul > li > ul > li > a:hover { color: var(--accent); }

.mil-menu-right-frame { height: 100%; display: flex; align-items: center; }
.mil-menu-right { width: 100%; }
.mil-menu-list li { margin-bottom: 8px; }
.mil-menu-list a { font-size: 0.95rem; transition: color 0.3s ease; }
.mil-menu-list a:hover { color: var(--accent); }
.mil-divider { height: 1px; background: var(--border-color); width: 100%; }
.mil-no-wrap { white-space: nowrap; }

/* ===== CURTAIN ===== */
.mil-curtain {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 9990;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mil-curtain.mil-active { opacity: 1; visibility: visible; pointer-events: all; }

/* ===== BACK TO TOP ===== */
.mil-current-page { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); transition: color 0.35s ease; }
.mil-back-to-top a { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); transition: color 0.3s; }
.mil-back-to-top a:hover { color: var(--accent); }
.mil-frame.mil-on-light .mil-current-page { color: var(--text-dark-soft); }

/* ===== BANNER / HERO ===== */
.mil-banner {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 60px; overflow: hidden;
}
.mil-banner .mi-invert-fix { width: 100%; position: relative; z-index: 2; }
.mil-banner-content { position: relative; z-index: 3; padding-top: 200px; }
.mil-banner h1 {
  margin-bottom: 40px; text-shadow: 0 10px 60px rgba(0,0,0,0.5);
}
.mil-banner h1 .mil-thin { font-weight: 300; }
.mil-banner-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.mil-banner-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(5,5,8,0.3) 0%, rgba(5,5,8,0.85) 100%);
  z-index: 1;
}

/* ===== BUTTONS ===== */
.mil-button {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px; background: var(--gradient-button);
  color: #fff; font-weight: 600; font-size: 0.95rem;
  border-radius: 50px; border: none;
  transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer;
}
.mil-button:hover { background: var(--gradient-button-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,77,0,0.3); }
.mil-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;
  transition: color 0.3s ease;
}
.mil-link.mil-muted { color: var(--text-muted); }
.mil-link.mil-muted:hover, .mil-link.mil-dark:hover { color: var(--accent); }
.mil-link.mil-dark { color: var(--text-dark); }
.mil-link::after {
  content: '→'; transition: transform 0.3s ease;
}
.mil-link:hover::after { transform: translateX(4px); }
.mil-btn-space { margin-right: 30px; }

/* ===== CIRCLE TEXT ===== */
.mil-circle-text {
  position: relative; width: 150px; height: 150px;
  display: flex; justify-content: center; align-items: center;
  margin-top: 60px;
}
.mil-ct-svg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  animation: rotateText 15s linear infinite;
}
.mil-ct-svg text { fill: var(--text-muted); font-family: var(--font-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 4px; }
@keyframes rotateText { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.mil-circle-text .mil-button {
  width: 50px; height: 50px; padding: 0; border-radius: 50%; z-index: 2;
  display: flex; justify-content: center; align-items: center;
}
.mil-circle-text .mil-button svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2; fill: none; }
.mil-arrow-down svg { transform: rotate(90deg); }

/* ===== ANIMATION ORBS ===== */
.mil-animation-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.mil-animation {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
  opacity: 0.08; filter: blur(80px);
}
.mil-position-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.mil-position-2 { width: 400px; height: 400px; bottom: -100px; left: -50px; }
.mil-position-3 { width: 250px; height: 250px; bottom: 20%; right: 30%; }
.mil-gradient {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 40%;
  background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 100%);
  z-index: 1;
}

/* ===== FADE UP ANIMATION ===== */
.mil-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.mil-up.mil-active { opacity: 1; transform: translateY(0); }

/* ===== ABOUT SECTION ===== */
.mil-about-photo { position: relative; }
.mil-img-frame {
  position: relative; overflow: hidden; border-radius: 4px;
}
.mil-img-frame img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.mil-about-quote { display: flex; align-items: center; gap: 20px; }
.mil-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.mil-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mil-quote { font-size: 1.1rem; line-height: 1.5; }

/* ===== SERVICES GRID ===== */
.mil-services-grid { display: flex; flex-wrap: wrap; }
.mil-services-grid-item { border: 1px solid var(--border-color); }
.mil-service-card-sm {
  display: block; padding: 40px 30px; height: 100%;
  transition: background 0.3s ease; color: inherit;
}
.mil-service-card-sm:hover { background: rgba(255, 153, 0, 0.05); }
.mil-service-card-sm h5 { margin-bottom: 15px; }
.mil-icon-button-sm {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-button); display: flex; justify-content: center; align-items: center;
}

/* ===== COMPLEX TEXT (BIG HEADLINE) ===== */
.mil-complex-text {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
}
.mil-text-image {
  display: inline-block; width: 100px; height: 50px; border-radius: 50px;
  overflow: hidden; vertical-align: middle;
}
.mil-text-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== BLOG CARDS ===== */
.mil-blog-card { display: block; transition: transform 0.3s ease; }
.mil-blog-card:hover { transform: translateY(-4px); }
.mil-cover-frame {
  position: relative; overflow: hidden; border-radius: 4px; margin-bottom: 30px;
  padding-bottom: 60%;
}
.mil-cover-frame img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mil-blog-card:hover .mil-cover-frame img { transform: scale(1.05); }
.mil-post-descr { padding: 0; }
.mil-labels { display: flex; gap: 12px; flex-wrap: wrap; }
.mil-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.mil-label.mil-accent { color: var(--accent); }
.mil-post-text { color: var(--text-dark-soft); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mil-adaptive-right { text-align: right; }
@media (max-width: 992px) { .mil-adaptive-right { text-align: left; } }

/* ===== FOOTER ===== */
.mil-footer-menu ul li { margin-bottom: 10px; }
.mil-main-menu ul li a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #FFFFFF;
  transition: all 0.4s ease;
  padding: 10px 0;
  display: block;
}
.mil-footer-menu ul li a {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--text-primary); transition: color 0.3s;
}
.mil-footer-menu ul li a:hover { color: var(--accent); }
.mil-subscribe-form {
  display: flex; gap: 0; border-bottom: 1px solid var(--border-color);
}
.mil-subscribe-form input {
  background: transparent; border: none; outline: none; color: var(--text-primary);
  font-size: 0.95rem; padding: 12px 0; flex: 1;
}
.mil-subscribe-form input::placeholder { color: var(--text-muted); }
.mil-subscribe-form button {
  background: var(--gradient-button); border: none; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mil-subscribe-form button::after { content: '→'; color: white; font-size: 18px; }
.mil-vert-between { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.mil-social-icons { display: flex; gap: 16px; }
.mil-social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-color); color: var(--text-primary);
  transition: all 0.3s;
}
.mil-social-icons a:hover { background: var(--accent); border-color: var(--accent); color: #000; }
.mil-social-icons a svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== CONTACT FORM ===== */
.mil-contact-form .form-group { margin-bottom: 30px; }
.mil-contact-form label {
  display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 10px; font-weight: 500;
}
.mil-contact-form input,
.mil-contact-form textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border-color);
  color: var(--text-primary); font-family: var(--font-primary);
  font-size: 1rem; padding: 12px 0; outline: none;
  transition: border-color 0.3s;
}
.mil-contact-form input:focus,
.mil-contact-form textarea:focus { border-color: var(--accent); }
.mil-contact-form textarea { resize: vertical; min-height: 80px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9998;
  width: 60px; height: 60px; background: var(--whatsapp-green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ===== CLIENTS MARQUEE ===== */
.mil-partners {
  display: flex; gap: 60px; align-items: center; flex-wrap: wrap; justify-content: center;
  padding: 40px 0;
}
.mil-partner-item {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--text-muted); white-space: nowrap; transition: color 0.3s;
}
.mil-partner-item:hover { color: var(--text-primary); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .mil-banner { min-height: 90vh; padding-bottom: 80px; }
  .mil-banner h1 { margin-bottom: 30px; line-height: 1.1; }
  .mil-frame-bottom { 
    display: flex; 
    padding: 15px 20px; 
    background: rgba(5,5,8,0.3);
    backdrop-filter: blur(5px);
  }
  .mil-circle-text { width: 120px; height: 120px; margin-top: 40px; }
  .mil-menu-content { padding-top: 80px; }
  .mil-complex-text { justify-content: center; }
  .mil-text-image { width: 80px; height: 40px; }
  .mil-services-grid { flex-direction: column; }
}
@media (max-width: 768px) {
  .mil-banner { min-height: auto; padding: 140px 0 80px; }
  .mil-banner-content { padding-top: 0; }
  .mil-frame-top { padding: 20px; background: rgba(5,5,8,0.8); backdrop-filter: blur(10px); }
  .mil-btn-space { margin-right: 0; margin-bottom: 16px; width: 100%; }
  .mil-button { width: 100%; justify-content: center; padding: 16px 20px; }
  .mil-partners { gap: 30px; }
  .whatsapp-float { bottom: 85px; right: 20px; width: 50px; height: 50px; }
  .mil-p-120-120 { padding-top: 60px; padding-bottom: 60px; }
  .mil-mb-90 { margin-bottom: 40px; }
  h2 { line-height: 1.3 !important; }
  p { text-align: left !important; hyphens: auto; }
}


