/* ═══════════════════════════════════════════
   CLUBE DA PINTURA — style.css
   Paleta: Azul Navy #0D2B6E + Verde #3DB54A
════════════════════════════════════════════ */

:root {
  --blue:         #0D2B6E;
  --blue-dark:    #081d4e;
  --blue-mid:     #1a3d8a;
  --green:        #3DB54A;
  --green-hover:  #2ea03c;
  --white:        #ffffff;
  --gray-light:   #f5f7fa;
  --gray-text:    #5a6478;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1ebe5d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #2d3748; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; }

/* ── Utilitários ── */
.text-green { color: var(--green) !important; }
.text-muted-custom { color: var(--gray-text); line-height: 1.8; }

/* ── Navbar ── */
#mainNav {
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 18px 0;
}
#mainNav.scrolled {
  background: var(--blue-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  padding: 10px 0;
}
/* Logo navbar e footer */
.navbar-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  transition: opacity 0.2s;
}
.navbar-logo:hover { opacity: 0.9; }

.footer-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.nav-link { font-weight: 600; font-size: 14px; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-link:hover { color: var(--green) !important; }

/* ── Botão WhatsApp ── */
.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #fff !important;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ── Botão primário ── */
.btn-primary-custom {
  display: inline-flex; align-items: center;
  background: var(--blue); color: #fff;
  padding: 12px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary-custom:hover { background: var(--blue-mid); transform: translateY(-2px); color: #fff; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1562259929-b4e1fd3aef09?w=1400&q=85');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,29,78,0.88) 0%, rgba(13,43,110,0.78) 60%, rgba(61,181,74,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 20px 80px;
}
.hero-badge {
  display: inline-block; background: rgba(61,181,74,0.2);
  border: 1px solid rgba(61,181,74,0.5); color: var(--green);
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.15;
  margin: 20px 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 600px; margin: 0 auto;
}
.hero-cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); padding: 8px 20px; border-radius: 50px; font-size: 14px;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  color: rgba(255,255,255,0.6); font-size: 22px;
  animation: bounce 2s ease-in-out infinite; display: block;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ── Section helpers ── */
.section-tag {
  display: inline-block; background: rgba(61,181,74,0.12);
  color: var(--green); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue); }
.section-sub { color: var(--gray-text); font-size: 16px; }

/* ── Serviços ── */
.section-services { background: var(--gray-light); }
.service-card {
  background: #fff; border-radius: 16px;
  padding: 32px 24px; text-align: center;
  border: 1px solid #e8ecf2;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,43,110,0.12); }
.service-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.service-title { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.service-desc  { font-size: 14px; color: var(--gray-text); line-height: 1.7; }
.service-tag   { display: inline-block; background: rgba(61,181,74,0.12); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-top: 12px; }

/* ── Sobre ── */
.section-sobre { background: #fff; }
.sobre-img-wrap { position: relative; }
.sobre-img-wrap img { width: 100%; object-fit: cover; max-height: 460px; }
.sobre-badge {
  position: absolute; bottom: -16px; right: 24px;
  background: var(--green); color: #fff;
  padding: 12px 20px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 24px rgba(61,181,74,0.4);
}
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; }
.stat-label  { font-size: 12px; color: var(--gray-text); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Diferenciais ── */
.section-diferenciais { background: var(--blue-dark); }
.section-diferenciais .section-title { color: #fff; }
.section-diferenciais .section-tag { background: rgba(255,255,255,0.1); color: var(--green); }
.diferencial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 20px;
  color: rgba(255,255,255,0.9);
  transition: background 0.25s, transform 0.25s;
}
.diferencial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.diferencial-card h4 { font-size: 17px; font-weight: 800; color: #fff; margin: 16px 0 10px; }
.diferencial-card p  { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }
.diferencial-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}

/* ── CTA ── */
.section-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
}
.cta-box { max-width: 720px; margin: 0 auto; }
.cta-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
}
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; }
.cta-sub   { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; }
.cta-note  { color: rgba(255,255,255,0.55); font-size: 13px; }

/* ── Footer ── */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.8); }
.footer-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 14px; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.65); }
.footer-link { color: rgba(255,255,255,0.65) !important; text-decoration: none; display: inline-flex; align-items: center; transition: color 0.2s; }
.footer-link:hover { color: var(--green) !important; }
.footer-divider { border-color: rgba(255,255,255,0.1); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background-color: var(--whatsapp-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.7);
  color: #fff;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .sobre-badge { right: 12px; font-size: 12px; padding: 10px 14px; }
  .hero-content { padding: 100px 16px 60px; }
}
