﻿/* =====================================================
   MG STORAGE SISTEM LTDA - CSS Principal
   Design Moderno e Profissional
   ===================================================== */

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

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

:root {
  --primary:      #0d2b4e;
  --primary-dark: #071a31;
  --primary-light:#1a4a82;
  --accent:       #1475b5;
  --accent-dark:  #0e5a96;
  --accent-light: #63b3ed;
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --text:         #1e293b;
  --text-light:   #64748b;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.10);
  --shadow:       0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.18);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.22);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --sidebar-w:    280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }

/* ===== SIDEBAR ===== */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 12px;
}
.sidebar-logo-icon {
  display: flex; align-items: center; justify-content: center;
  background: none;
}
.sidebar-logo-icon img { height: 54px; max-width: 160px; object-fit: contain; border-radius: 0; display: block; }
.sidebar-logo-text { color: var(--white); }
.sidebar-logo-text strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; }
.sidebar-logo-text span { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 400; }

.sidebar-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border: none; cursor: pointer;
  border-radius: 8px;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}
.sidebar-close:hover { background: rgba(255,255,255,.2); }

.sidebar-nav { padding: 20px 0; flex: 1; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  color: rgba(255,255,255,.75);
  font-size: 15px; font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-left-color: var(--accent);
}
.sidebar-nav a .nav-icon { font-size: 18px; width: 22px; text-align: center; }

.sidebar-contact {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sidebar-contact p { color: rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.sidebar-contact a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.75); font-size: 13px;
  margin-bottom: 8px; transition: var(--transition);
}
.sidebar-contact a:hover { color: var(--accent); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary-dark);
  padding: 10px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left span i { color: var(--accent); }
.topbar-right { display: flex; gap: 10px; }
.topbar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 12px;
  transition: var(--transition);
}
.topbar-social a:hover { background: var(--accent); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 800;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.hamburger {
  width: 44px; height: 44px;
  background: none; border: 2px solid var(--gray-200);
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: var(--transition); flex-shrink: 0;
}
.hamburger:hover { border-color: var(--accent); background: var(--gray-50); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}

.header-logo {
  display: flex; align-items: center; gap: 14px;
}
.header-logo-box {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.header-logo-text strong {
  display: block; font-size: 15px; font-weight: 800;
  color: var(--primary); line-height: 1.2;
  letter-spacing: -.3px;
}
.header-logo-text span {
  font-size: 11px; color: var(--text-light); font-weight: 400;
}

.header-nav { display: flex; gap: 4px; }
.header-nav a {
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: var(--transition);
}
.header-nav a:hover { color: var(--primary); background: var(--gray-50); }

.header-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13.5px; font-weight: 600;
  border: none; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(20,117,181,.35); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13.5px; font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: float 8s infinite ease-in-out;
}
.hero-particles span:nth-child(1) { width: 300px; height: 300px; top: -80px; right: -60px; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 200px; height: 200px; bottom: 60px; right: 15%; animation-delay: 2s; }
.hero-particles span:nth-child(3) { width: 150px; height: 150px; top: 30%; left: -50px; animation-delay: 4s; }
.hero-particles span:nth-child(4) { width: 80px; height: 80px; top: 15%; right: 30%; animation-delay: 1s; }
.hero-particles span:nth-child(5) { width: 120px; height: 120px; bottom: 20%; left: 20%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  position: relative; z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,117,181,.2);
  border: 1px solid rgba(20,117,181,.4);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--accent-light);
  font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.hero-btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,117,181,.45); }
.hero-btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(8px);
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 28px; margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
  display: block;
}
.hero-stat .number span { color: var(--accent); }
.hero-stat .label {
  font-size: 12px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px; font-weight: 500;
}

/* Hero Card */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 36px;
  width: 100%; max-width: 420px;
  animation: slideUp .8s ease both;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-card-title {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.hero-card-sub { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 28px; }

.lead-form .form-group { margin-bottom: 16px; }
.lead-form label {
  display: block; font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.7); margin-bottom: 7px;
  text-transform: uppercase; letter-spacing: .5px;
}
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px; font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}
.lead-form input::placeholder { color: rgba(255,255,255,.4); }
.lead-form input:focus { border-color: var(--accent); background: rgba(255,255,255,.15); box-shadow: 0 0 0 3px rgba(20,117,181,.2); }
.lead-form textarea {
  resize: none; height: 90px;
  color: var(--white); font-family: 'Inter', sans-serif;
}
.lead-form textarea::placeholder { color: rgba(255,255,255,.4); }
.lead-form textarea:focus { border-color: var(--accent); background: rgba(255,255,255,.15); box-shadow: 0 0 0 3px rgba(20,117,181,.2); }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  padding: 15px;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(20,117,181,.4); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-success, .form-error {
  display: none;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  margin-top: 12px;
}
.form-success { background: rgba(52,211,153,.2); color: #6ee7b7; border: 1px solid rgba(52,211,153,.3); }
.form-error   { background: rgba(248,113,113,.2); color: #fca5a5; border: 1px solid rgba(248,113,113,.3); }

/* ===== SECTIONS COMMONS ===== */
.section { padding: 96px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-badge {
  display: inline-block;
  background: rgba(13,43,78,.08);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(13,43,78,.1);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--primary);
  line-height: 1.15; letter-spacing: -.5px;
  margin-bottom: 16px;
}
.section-title .acc { color: var(--accent); }
.section-desc { font-size: 17px; color: var(--text-light); line-height: 1.7; font-weight: 300; }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px; margin: 20px auto 0;
}

/* ===== SOBRE NÃ“S ===== */
.about { background: var(--gray-50); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img {
  width: 100%; height: 480px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-float .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge-float .txt { font-size: 12px; font-weight: 500; opacity: .85; }

.about-content .section-header { text-align: left; margin: 0 0 32px; }
.about-content .section-divider { margin-left: 0; }

.about-features { margin-top: 32px; display: grid; gap: 16px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.about-feature:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(20,117,181,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.about-feature-text strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.about-feature-text span  { font-size: 13px; color: var(--text-light); }

/* ===== SERVIÃ‡OS ===== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(13,43,78,.25);
}
.service-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--primary); margin-bottom: 12px;
}
.service-card p { font-size: 14.5px; color: var(--text-light); line-height: 1.7; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 13.5px; font-weight: 600;
  color: var(--accent); transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0; position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  position: relative; z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--white);
  line-height: 1; display: block;
  margin-bottom: 8px;
}
.stat-number .stat-plus { color: var(--accent); }
.stat-label {
  font-size: 13.5px; color: rgba(255,255,255,.6);
  font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
}
.stat-icon {
  font-size: 36px; margin-bottom: 16px;
  display: block; opacity: .7;
}

/* ===== POR QUE ESCOLHER ===== */
.why { background: var(--gray-50); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.why-card .why-icon {
  font-size: 40px; margin-bottom: 16px; display: block;
}
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ===== CONTATO SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden;
}
.contact-section::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(20,117,181,.1);
  border-radius: 50%;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
  position: relative; z-index: 2;
}
.contact-info h2 {
  font-size: 2.4rem; font-weight: 800;
  color: var(--white); line-height: 1.2;
  margin-bottom: 20px; letter-spacing: -.5px;
}
.contact-info p {
  font-size: 16px; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 40px;
}
.contact-items { display: grid; gap: 18px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; border: 1px solid rgba(255,255,255,.1);
}
.contact-item-text strong { display: block; font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item-text span { color: var(--white); font-size: 14.5px; font-weight: 500; }
.contact-item-text a { color: var(--white); transition: var(--transition); }
.contact-item-text a:hover { color: var(--accent-light); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-xl);
}
.contact-form-box h3 {
  font-size: 20px; font-weight: 800;
  color: var(--primary); margin-bottom: 6px;
}
.contact-form-box p { font-size: 13.5px; color: var(--text-light); margin-bottom: 28px; }
.contact-form-box .form-group { margin-bottom: 16px; }
.contact-form-box label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 7px; }
.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--white);
  outline: none; transition: var(--transition);
}
.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,43,78,.1);
}
.contact-form-box textarea { resize: none; height: 110px; }
.contact-form-box .btn-submit {
  background: var(--accent); color: var(--white);
  width: 100%; padding: 15px;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif;
}
.contact-form-box .btn-submit:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(20,117,181,.4); }
.contact-form-box .form-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.contact-form-box .form-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  display: flex; align-items: center;
  background: none;
}
.footer-logo-icon img { height: 54px; max-width: 160px; object-fit: contain; display: block; border-radius: 0; }
.footer-logo-text strong { display: block; color: var(--white); font-size: 15px; font-weight: 800; }
.footer-logo-text span { color: rgba(255,255,255,.5); font-size: 11.5px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 16px;
  transition: var(--transition); border: 1px solid rgba(255,255,255,.07);
}
.footer-social-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }

.footer-col h4 {
  color: var(--white); font-size: 13.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55); font-size: 13.5px;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-col ul li a::before { content: '\203A'; color: var(--accent); font-weight: 700; }

.footer-contact-list { list-style: none !important; }
.footer-contact-list li {
  display: flex; gap: 12px;
  color: rgba(255,255,255,.55); font-size: 13px;
  margin-bottom: 14px; align-items: flex-start;
}
.footer-contact-list li i { color: var(--accent); margin-top: 2px; }
.footer-contact-list li a { color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-contact-list li a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-bottom p a { color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-bottom p a:hover { color: var(--accent-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.4); font-size: 12.5px; transition: var(--transition); }
.footer-legal a:hover { color: var(--accent-light); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
}
.whatsapp-btn a {
  display: flex; align-items: center; justify-content: center;
  width: 62px; height: 62px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: waBounce 2.5s infinite;
}
.whatsapp-btn a:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.6); animation: none; }
.whatsapp-btn a svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 74px; top: 50%;
  transform: translateY(-50%);
  background: #25d366; color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  pointer-events: none; opacity: 0;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #25d366;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px;
  z-index: 9999;
  width: 44px; height: 44px;
  background: var(--primary);
  border: none; border-radius: 12px;
  color: var(--white); font-size: 18px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); transform: translateY(-2px); }

/* ===== UTILITY ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { justify-content: center; }
  .contact-form-box { padding: 28px 20px; }
  .btn-outline { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btn-primary, .hero-btn-secondary { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

