/* =============================================
   AJSimões – Main Stylesheet
   ============================================= */

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

:root {
  --primary:      #1a56db;
  --primary-dark: #1341b0;
  --primary-light:#dbeafe;
  --accent:       #f97316;
  --accent-dark:  #ea6908;
  --dark:         #111827;
  --gray-800:     #1f2937;
  --gray-700:     #374151;
  --gray-600:     #4b5563;
  --gray-400:     #9ca3af;
  --gray-200:     #e5e7eb;
  --gray-100:     #f3f4f6;
  --white:        #ffffff;
  --success:      #10b981;
  --elar-green:   #059669;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow:       0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md:    0 10px 25px -3px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 40px -10px rgba(0,0,0,.18);
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   all .3s ease;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- SECTION BASE --- */
.section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  background: var(--primary-light);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-label.center { display: block; text-align: center; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-title.center { text-align: center; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.section-subtitle.center { text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .875rem; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }
.btn-call {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-size: .875rem;
}
.btn-call:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-white-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-1px); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.logo {
  display: flex; align-items: baseline; gap: .2rem;
  flex-shrink: 0;
}
.logo-aj {
  font-family: var(--font-heading);
  font-size: 1.7rem; font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.logo-simoes {
  font-family: var(--font-heading);
  font-size: 1.7rem; font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.logo-tag {
  font-size: .7rem; font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-left: .5rem;
  display: none;
}
@media (min-width: 1024px) { .logo-tag { display: block; } }

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-list { display: flex; gap: .15rem; align-items: center; }
  .nav-link {
    font-size: .875rem; font-weight: 500;
    color: var(--gray-700);
    padding: .4rem .7rem;
    border-radius: 6px;
    transition: var(--transition);
  }
  .nav-link:hover { background: var(--primary-light); color: var(--primary); }
}
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.hamburger {
  display: flex; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: 999; padding: 1rem 1.25rem;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-list { flex-direction: column; gap: .25rem; }
.mobile-nav .nav-link { display: block; padding: .75rem 1rem; }
.mobile-nav .btn-call { width: 100%; justify-content: center; margin-top: .75rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1a56db 100%);
  overflow: hidden;
  padding-top: 68px;
}
.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-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,.12) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1;
  color: var(--white);
  max-width: 820px;
  padding: 4rem 1.25rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .85rem; font-weight: 500;
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-badge .fa-star { color: #fbbf24; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-title .highlight { color: #fbbf24; }
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 640px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-contacts-bar {
  display: flex; flex-wrap: wrap; gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
}
.hero-phone {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem; font-weight: 500;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .4rem 1rem;
  transition: var(--transition);
}
.hero-phone:hover { background: rgba(255,255,255,.18); color: var(--white); }
.hero-phone .fas { color: #4ade80; }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
.hero-scroll-indicator a { color: inherit; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   HIGHLIGHTS BAR
   ============================================= */
.highlights-bar {
  background: var(--primary);
  padding: 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.highlight-item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.2rem 1.5rem;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,.08); }
.highlight-item > .fas {
  font-size: 1.4rem; color: #fbbf24;
  flex-shrink: 0;
}
.highlight-item strong { display: block; font-size: .9rem; font-weight: 600; }
.highlight-item span { font-size: .78rem; opacity: .8; }

/* =============================================
   SOBRE NÓS
   ============================================= */
.sobre { background: var(--gray-100); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) { .sobre-grid { grid-template-columns: 1fr; } }
.sobre-text > p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.75; }
.sobre-stats {
  display: flex; gap: 1.5rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center; flex: 1; min-width: 100px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
}
.stat-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .78rem; color: var(--gray-600); font-weight: 500; margin-top: .25rem; }
.sobre-image-col { display: flex; flex-direction: column; gap: 1rem; }
.sobre-img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 3rem; gap: .5rem;
}
.sobre-img-placeholder p { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.9); }
.address-card {
  display: flex; gap: 1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}
.address-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--primary-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem;
}
.address-info > strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: .3rem; }
.address-info > p { font-size: .875rem; color: var(--gray-600); margin-bottom: .5rem; }
.horario-badge {
  display: flex; align-items: center; gap: .3rem;
  font-size: .775rem; font-weight: 500;
  background: #dcfce7; color: #166534;
  padding: .25rem .6rem; border-radius: 999px;
  width: fit-content; margin-bottom: .25rem;
}
.horario-note { font-size: .75rem; color: var(--gray-400); }

/* =============================================
   MARCAS
   ============================================= */
.marcas { background: var(--white); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.brand-card {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; padding: 1.25rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: default;
}
.brand-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.brand-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.brand-card span { font-weight: 600; font-size: .9rem; color: var(--dark); }
.featured-brand {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  border-color: var(--accent) !important;
  position: relative;
}
.featured-brand .brand-icon { background: var(--accent); color: var(--white); }
.featured-brand em { font-size: .7rem; font-style: normal; font-weight: 600; color: var(--accent-dark); }
.brand-more { opacity: .6; }
.brand-more .brand-icon { color: var(--gray-400); }

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos { background: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.service-icon.blue { background: #dbeafe; color: var(--primary); }
.service-icon.orange { background: #ffedd5; color: var(--accent); }
.service-icon.green { background: #d1fae5; color: #059669; }
.service-icon.teal { background: #ccfbf1; color: #0f766e; }
.service-icon.red { background: #fee2e2; color: #dc2626; }
.service-icon.purple { background: #ede9fe; color: #7c3aed; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--dark); }
.service-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.servicos-cta {
  text-align: center; margin-top: 3rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--primary);
}
.servicos-cta p { margin-bottom: 1.25rem; color: var(--gray-700); font-size: 1.05rem; }

/* =============================================
   E-LAR
   ============================================= */
.elar {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #059669 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.elar::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.04'%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");
}
.elar-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.elar-badge-gov {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  padding: .35rem 1rem; margin-bottom: 1rem;
}
.elar .section-label { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.elar .section-title { color: var(--white); }
.elar-brand { color: #6ee7b7; }
.elar-intro { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 680px; }
.elar-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
@media (max-width: 700px) { .elar-grid { grid-template-columns: 1fr; } }
.elar-troca, .elar-vantagens {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.elar-troca h3, .elar-vantagens h3 {
  font-size: 1rem; font-weight: 700;
  color: #6ee7b7; margin-bottom: 1.25rem;
}
.elar-items {
  display: flex; align-items: center;
  gap: .75rem; margin-bottom: 1rem;
}
.elar-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: .3rem;
  padding: .75rem; border-radius: var(--radius);
  text-align: center; font-size: .85rem;
}
.elar-item.from { background: rgba(239,68,68,.2); border: 1px solid rgba(239,68,68,.3); }
.elar-item.from .fas { color: #fca5a5; font-size: 1.2rem; }
.elar-item.to { background: rgba(52,211,153,.2); border: 1px solid rgba(52,211,153,.3); }
.elar-item.to .fas { color: #6ee7b7; font-size: 1.2rem; }
.elar-arrow { color: #6ee7b7; font-size: 1.2rem; }
.elar-list { display: flex; flex-direction: column; gap: .65rem; }
.elar-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: rgba(255,255,255,.9); }
.elar-list .fas { color: #6ee7b7; margin-top: .15rem; flex-shrink: 0; }
.elar-como {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 2.5rem;
}
.elar-como h3 { font-size: 1rem; font-weight: 700; color: #6ee7b7; margin-bottom: 1.5rem; }
.elar-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.elar-step {
  display: flex; align-items: flex-start; gap: .85rem;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: #6ee7b7; color: #064e3b;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.elar-step p { font-size: .875rem; color: rgba(255,255,255,.88); line-height: 1.6; }
.elar-cta { text-align: center; }
.elar-cta > p { color: rgba(255,255,255,.8); margin-bottom: 1.25rem; }
.elar-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =============================================
   TELEMÓVEIS
   ============================================= */
.telemoveis { background: var(--white); }
.telemoveis-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .telemoveis-inner { grid-template-columns: 1fr; } }
.tele-icon-wrap {
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: white;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.telemoveis-text-col > p { color: var(--gray-600); margin-bottom: 1rem; }
.tele-phones { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.tele-phone-btn {
  display: flex; align-items: center; gap: 1rem;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  transition: var(--transition);
}
.tele-phone-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateX(4px);
}
.tele-phone-btn > .fas {
  font-size: 1.4rem; color: var(--primary);
  flex-shrink: 0;
}
.tele-phone-btn span { font-size: .78rem; color: var(--gray-600); display: block; }
.tele-phone-btn strong { font-size: 1.05rem; color: var(--dark); }
.tele-notice {
  display: flex; align-items: flex-start; gap: .75rem;
  background: #fef9c3; border: 1px solid #fde68a;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.tele-notice .fas { color: #d97706; margin-top: .15rem; flex-shrink: 0; }
.tele-notice p { font-size: .875rem; color: #92400e; }

/* =============================================
   PAGAMENTO
   ============================================= */
.pagamento { background: var(--gray-100); }
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.payment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.payment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.featured-payment {
  border-color: var(--primary) !important;
  position: relative;
  overflow: hidden;
}
.featured-payment::before {
  content: '✓ Recomendado';
  position: absolute; top: 14px; right: -22px;
  background: var(--primary); color: white;
  font-size: .7rem; font-weight: 700;
  padding: .25rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: .05em;
}
.payment-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.25rem;
}
.payment-icon.mbway { background: #fef3c7; color: #d97706; }
.payment-icon.iban { background: #dbeafe; color: var(--primary); }
.payment-icon.cash { background: #d1fae5; color: #059669; }
.payment-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.payment-card p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1rem; }
.payment-number {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--gray-100); border-radius: var(--radius);
  padding: .75rem 1rem; font-size: 1.2rem;
  font-weight: 800; color: var(--primary);
  margin-bottom: 1.25rem;
}
.iban-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: var(--gray-100); border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1.25rem;
  color: var(--gray-600); font-size: .875rem;
}
.iban-placeholder .fas { font-size: 1.5rem; color: var(--gray-400); }

/* =============================================
   CONTACTOS
   ============================================= */
.contactos { background: var(--white); }
.contactos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.contact-block {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}
.contact-block h3 {
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; gap: .5rem;
  color: var(--dark); margin-bottom: 1.25rem;
}
.contact-block h3 .fas { color: var(--primary); }
.phones-block { grid-row: span 1; }
.contact-phones { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.contact-phone-item {
  display: flex; align-items: center; gap: .85rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.contact-phone-item:hover { border-color: var(--primary); }
.cphone-icon {
  width: 38px; height: 38px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem; flex-shrink: 0;
}
.contact-phone-item span { font-size: .77rem; color: var(--gray-600); display: block; }
.contact-phone-item strong { font-size: .95rem; color: var(--dark); }
.contact-email h3 { border-top: 1px solid var(--gray-200); padding-top: 1.25rem; }
.email-link {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1rem; font-weight: 600; color: var(--primary);
  transition: var(--transition);
}
.email-link:hover { text-decoration: underline; }
.location-info p {
  font-size: .9rem; color: var(--gray-700);
  display: flex; align-items: flex-start; gap: .5rem;
  margin-bottom: 1.25rem;
}
.location-info .fas { color: var(--accent); margin-top: .2rem; flex-shrink: 0; }
.horario-table { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.horario-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .5rem .75rem;
  background: var(--white); border-radius: 6px;
  border-left: 3px solid var(--success);
  gap: .5rem;
}
.horario-row.closed { border-left-color: #ef4444; }
.horario-row .dia { font-weight: 600; font-size: .85rem; color: var(--dark); white-space: nowrap; }
.horario-row .hora { font-size: .82rem; color: var(--gray-600); text-align: right; }
.horario-row .hora em { color: var(--gray-400); font-style: italic; }
.closed-text { color: #ef4444 !important; font-weight: 600; }
.map-btn { width: 100%; justify-content: center; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); text-align: center;
  padding: 80px 0;
}
.cta-final h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-final > .container > p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-final-phones { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.cta-email { color: rgba(255,255,255,.7); font-size: .9rem; }
.cta-email a { color: #93c5fd; font-weight: 600; }
.cta-email a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .footer-logo {
  display: flex; align-items: baseline; gap: .15rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-aj { color: var(--primary); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.footer-brand .logo-simoes { color: var(--white); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: .75rem; }
.footer-email a { color: #93c5fd; font-size: .875rem; }
.footer-email .fas { margin-right: .3rem; }
.footer-col h4 { color: var(--white); font-weight: 600; margin-bottom: 1rem; font-size: .95rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li { font-size: .875rem; }
.footer-col a { color: var(--gray-400); transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-contacts li { display: flex; align-items: center; gap: .5rem; }
.footer-contacts .fas { color: var(--primary); width: 16px; }
.footer-address { margin-top: 1rem; font-size: .82rem; }
.footer-address p { display: flex; gap: .4rem; }
.footer-address .fas { color: var(--accent); margin-top: .1rem; flex-shrink: 0; }
.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: var(--gray-400);
}

/* =============================================
   FLOATING CTA & BACK TO TOP
   ============================================= */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
}
.floating-btn {
  display: flex; align-items: center; gap: .6rem;
  background: var(--accent); color: white;
  border-radius: 999px;
  padding: .85rem 1.4rem;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
  transition: var(--transition);
  animation: pulse-float 3s infinite;
}
.floating-btn:hover { background: var(--accent-dark); transform: scale(1.05); }
.floating-btn .fas { font-size: 1.1rem; }
@keyframes pulse-float {
  0%, 100% { box-shadow: 0 6px 20px rgba(249,115,22,.45); }
  50% { box-shadow: 0 6px 30px rgba(249,115,22,.7); }
}
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 44px; height: 44px;
  background: var(--primary); color: white;
  border: none; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0; pointer-events: none; z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero-content { padding: 2.5rem 1.25rem; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .highlight-item:last-child { border-bottom: none; }
  .cta-final-phones { flex-direction: column; align-items: center; }
  .floating-label { display: none; }
  .floating-btn { padding: .85rem; border-radius: 50%; width: 54px; height: 54px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .highlights-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
