/*
Theme Name: Dicere Telecom
Theme URI: https://diceretelecom.com.br
Author: Dicere Telecom
Author URI: https://diceretelecom.com.br
Description: Tema personalizado da Dicere Telecom - Conectando Pessoas e Empresas. Telecomunicações e Soluções Digitais.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dicere-telecom
Tags: one-page, custom-logo, responsive-layout
*/

/* ===== VARIABLES ===== */
:root {
  --red: #D42027;
  --red-dark: #A8191E;
  --red-light: #EF4044;
  --black: #111111;
  --dark: #1A1A1A;
  --dark-gray: #2A2A2A;
  --medium-gray: #666;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; transition: height 0.3s; }
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.5px; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--red-light); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 600 !important;
  transition: all 0.3s !important; border: 2px solid var(--red);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: transparent !important; color: var(--red-light) !important; border-color: var(--red-light); }

.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--black); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,32,39,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,32,39,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(212,32,39,0.05) 0%, transparent 40%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 24px;
  animation: fadeUp 1s ease-out;
}
.hero-badge {
  display: inline-block; padding: 8px 20px;
  border: 1px solid rgba(212,32,39,0.4); border-radius: 50px;
  color: var(--red-light); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 32px; animation: fadeUp 1s ease-out 0.2s both;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; color: var(--white); line-height: 1.1;
  margin-bottom: 24px; animation: fadeUp 1s ease-out 0.4s both;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 600px; margin: 0 auto 40px;
  animation: fadeUp 1s ease-out 0.6s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.8s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,32,39,0.4); }
.btn-primary svg { width: 20px; height: 20px; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn-outline svg { width: 18px; height: 18px; }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; stroke: rgba(255,255,255,0.3); }

/* ===== ABOUT ===== */
.about { padding: 120px 24px; background: var(--white); }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block; padding: 6px 16px;
  background: rgba(212,32,39,0.08); border-radius: 50px;
  color: var(--red); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 24px;
}
.section-title span { color: var(--red); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p {
  font-size: 1.05rem; line-height: 1.8; color: var(--medium-gray); margin-bottom: 20px;
}
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.stat-card {
  padding: 28px; border-radius: 16px;
  background: var(--light-gray); text-align: center;
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.stat-number {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 800; color: var(--red); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--medium-gray); margin-top: 8px; font-weight: 500; }
.about-visual {
  position: relative;
  background: var(--dark);
  border-radius: 24px;
  padding: 48px;
  display: flex; align-items: center; justify-content: center;
  min-height: 400px; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,32,39,0.2), transparent 70%);
  border-radius: 24px;
}
.about-visual img { position: relative; z-index: 1; max-width: 280px; }
.about-visual .deco-line {
  position: absolute; width: 200px; height: 200px;
  border: 2px solid rgba(212,32,39,0.2); border-radius: 50%;
}
.deco-line:nth-child(2) { top: -40px; right: -40px; }
.deco-line:nth-child(3) { bottom: -60px; left: -30px; width: 150px; height: 150px; }

/* ===== SERVICES ===== */
.services { padding: 120px 24px; background: var(--black); }
.services .section-label { background: rgba(212,32,39,0.2); }
.services .section-title { color: var(--white); }
.services-subtitle { color: rgba(255,255,255,0.5); font-size: 1.1rem; margin-bottom: 60px; max-width: 600px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 36px; position: relative;
  transition: all 0.4s; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(212,32,39,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(212,32,39,0.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 120px 24px; background: var(--light-gray); }
.testimonials .section-title { color: var(--black); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--white); border-radius: 20px; padding: 36px;
  position: relative; transition: all 0.3s;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.testimonial-quote {
  font-size: 2.5rem; color: var(--red); font-family: Georgia, serif;
  line-height: 1; margin-bottom: 16px; opacity: 0.5;
}
.testimonial-card p {
  font-size: 0.95rem; color: var(--medium-gray); line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
  font-family: var(--font-display);
}
.testimonial-info h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.testimonial-info span { font-size: 0.8rem; color: var(--medium-gray); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: #FFC107; }

/* ===== CONTACT ===== */
.contact { padding: 120px 24px; background: var(--white); }
.offices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.office-card {
  border: 1px solid #E8E8E8; border-radius: 20px; padding: 36px;
  position: relative; transition: all 0.4s; overflow: hidden;
}
.office-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0; transition: opacity 0.4s;
}
.office-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.office-card:hover::before { opacity: 1; }
.office-city {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 800; color: var(--black); margin-bottom: 4px;
}
.office-state { font-size: 0.85rem; color: var(--red); font-weight: 600; margin-bottom: 16px; letter-spacing: 1px; }
.office-info { display: flex; flex-direction: column; gap: 12px; }
.office-row { display: flex; align-items: flex-start; gap: 10px; }
.office-row svg {
  width: 18px; height: 18px; min-width: 18px;
  stroke: var(--red); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  margin-top: 2px;
}
.office-row span { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; }
.office-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 12px 24px; border-radius: 50px;
  background: #25D366; color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s;
}
.office-whatsapp:hover { background: #1EBE57; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37,211,102,0.4); color: var(--white); }
.office-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== TRABALHE CONOSCO ===== */
.tc-hero {
  position: relative; min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 80px; text-align: center;
  background: var(--black);
  overflow: hidden;
}
.tc-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,32,39,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(212,32,39,0.08) 0%, transparent 50%);
}
.tc-hero-content { position: relative; z-index: 1; }
.tc-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.tc-hero-title span { color: var(--red); }
.tc-hero-subtitle {
  color: rgba(255,255,255,0.5); font-size: 1.15rem;
  max-width: 550px; margin: 0 auto 40px;
}
.tc-hero-stats { display: flex; gap: 40px; justify-content: center; }
.tc-stat { display: flex; align-items: baseline; gap: 8px; }
.tc-stat-number {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 800; color: var(--red); line-height: 1;
}
.tc-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Cities grid */
.tc-cities {
  padding: 100px 24px 120px;
  background: var(--dark);
  position: relative;
}
.tc-cities::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,32,39,0.06) 0%, transparent 50%);
}
.tc-cities .section-container { position: relative; z-index: 1; }
.tc-cities-header { text-align: center; margin-bottom: 60px; }
.tc-cities-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.tc-cities-title span { color: var(--red); }
.tc-cities-subtitle { color: rgba(255,255,255,0.45); font-size: 1rem; }

/* State group headers */
.tc-state-group { margin-bottom: 60px; }
.tc-state-group:last-of-type { margin-bottom: 40px; }
.tc-state-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(212,32,39,0.15);
}
.tc-state-flag {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: #fff; flex-shrink: 0;
}
.tc-state-flag--rs { background: linear-gradient(135deg, #D42027, #a8191e); }
.tc-state-flag--sc { background: linear-gradient(135deg, #D42027, #a8191e); }
.tc-state-name {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--white); margin: 0;
}
.tc-state-count { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.tc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 60px;
}

.tc-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; transition: all 0.3s; cursor: pointer;
}
.tc-card:hover {
  background: rgba(212,32,39,0.1);
  border-color: rgba(212,32,39,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,32,39,0.15);
}
.tc-card--soon { opacity: 0.5; cursor: default; }
.tc-card--soon:hover { transform: none; box-shadow: none; background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); }

.tc-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(212,32,39,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-card-icon svg { width: 20px; height: 20px; stroke: var(--red); }

.tc-card-info { flex: 1; min-width: 0; }
.tc-card-city {
  display: block; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600; color: var(--white);
}
.tc-card-action {
  display: block; font-size: 0.78rem; color: var(--red);
  font-weight: 500; margin-top: 2px;
}
.tc-card--soon .tc-card-action { color: rgba(255,255,255,0.3); }

.tc-card-arrow {
  flex-shrink: 0; opacity: 0; transform: translateX(-6px);
  transition: all 0.3s;
}
.tc-card-arrow svg { width: 18px; height: 18px; stroke: var(--red); }
.tc-card:hover .tc-card-arrow { opacity: 1; transform: translateX(0); }

/* Multi-loja badge */
.tc-card--multi { cursor: pointer; }
.tc-card-badge {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(212,32,39,0.15); color: var(--red);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
}
.tc-card--multi:hover .tc-card-badge {
  background: var(--red); color: var(--white);
}

/* ===== MODAL ===== */
.tc-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.tc-modal-overlay.active { opacity: 1; visibility: visible; }
.tc-modal-overlay.active .tc-modal {
  transform: translateY(0) scale(1); opacity: 1;
}

.tc-modal {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; width: 100%; max-width: 480px;
  max-height: 80vh; overflow-y: auto;
  padding: 36px 28px 28px; position: relative;
  transform: translateY(20px) scale(0.97); opacity: 0;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.tc-modal::-webkit-scrollbar { width: 4px; }
.tc-modal::-webkit-scrollbar-track { background: transparent; }
.tc-modal::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

.tc-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.tc-modal-close svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.5); }
.tc-modal-close:hover { background: rgba(212,32,39,0.15); border-color: rgba(212,32,39,0.3); }
.tc-modal-close:hover svg { stroke: var(--red); }

.tc-modal-header { text-align: center; margin-bottom: 28px; }
.tc-modal-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(212,32,39,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.tc-modal-icon svg { width: 28px; height: 28px; stroke: var(--red); }
.tc-modal-title {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 800; color: var(--white); margin-bottom: 6px;
}
.tc-modal-subtitle { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

.tc-modal-list { display: flex; flex-direction: column; gap: 10px; }

.tc-modal-loja {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; transition: all 0.3s; cursor: pointer;
}
.tc-modal-loja:hover {
  background: rgba(212,32,39,0.1);
  border-color: rgba(212,32,39,0.3);
  transform: translateX(4px);
}
.tc-modal-loja-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-modal-loja-icon svg { width: 20px; height: 20px; stroke: var(--red); }
.tc-modal-loja-info { flex: 1; }
.tc-modal-loja-nome {
  display: block; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600; color: var(--white);
}
.tc-modal-loja-action {
  display: block; font-size: 0.78rem; color: var(--red);
  font-weight: 500; margin-top: 2px;
}
.tc-modal-loja-arrow {
  flex-shrink: 0; opacity: 0; transform: translateX(-6px);
  transition: all 0.3s;
}
.tc-modal-loja-arrow svg { width: 16px; height: 16px; stroke: var(--red); }
.tc-modal-loja:hover .tc-modal-loja-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  .tc-modal { padding: 28px 20px 20px; max-width: 100%; border-radius: 16px; }
  .tc-modal-overlay { align-items: flex-end; padding: 0; }
  .tc-modal-overlay.active .tc-modal { transform: translateY(0); }
  .tc-modal { border-radius: 20px 20px 0 0; max-height: 85vh; }
}

/* CTA area */
.tc-cta-area {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
}
.tc-cta-text {
  font-size: 1.05rem; color: rgba(255,255,255,0.5);
  max-width: 450px; line-height: 1.6;
}
.tc-cta-text strong { color: var(--white); }

@media (max-width: 768px) {
  .tc-hero { min-height: 45vh; padding: 120px 24px 60px; }
  .tc-hero-stats { gap: 24px; }
  .tc-cities { padding: 60px 24px 80px; }
  .tc-grid { grid-template-columns: 1fr; }
  .tc-cta-area { flex-direction: column; gap: 24px; text-align: center; }
}

/* ===== STORES (Pessoa Física) ===== */
.stores {
  padding: 120px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.stores::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,32,39,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(212,32,39,0.06) 0%, transparent 50%);
}
.stores .section-container { position: relative; z-index: 1; }
.stores .section-label { background: rgba(212,32,39,0.2); }
.stores .section-title { color: var(--white); }
.stores-subtitle {
  color: rgba(255,255,255,0.5); font-size: 1.1rem;
  margin: 16px auto 0; max-width: 600px;
}
.stores-stats {
  display: flex; gap: 40px; justify-content: center; margin-bottom: 60px;
}
.store-stat { display: flex; align-items: baseline; gap: 8px; }
.store-stat-number {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 800; color: var(--red); line-height: 1;
}
.store-stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500;
}
.state-section { margin-bottom: 40px; }
.state-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.state-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(212,32,39,0.12);
  display: flex; align-items: center; justify-content: center;
}
.state-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.state-name-label {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--white);
}
.state-count {
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05); padding: 3px 10px;
  border-radius: 50px; font-weight: 600;
}
.badges-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.city-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s; cursor: default;
}
.city-badge:hover {
  background: rgba(212,32,39,0.1);
  border-color: rgba(212,32,39,0.3);
  transform: translateY(-2px);
}
.city-badge .badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.city-badge .badge-dot--sc { background: var(--red); }
.state-icon--sc { background: rgba(212,32,39,0.12); }
.state-icon--sc svg { stroke: var(--red); }
.city-badge .badge-name {
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  font-weight: 500; white-space: nowrap;
}
.city-badge:hover .badge-name { color: var(--white); }
.stores-cta-area {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 50px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stores-cta-text {
  font-size: 1.1rem; color: rgba(255,255,255,0.5);
  max-width: 400px; line-height: 1.6;
}
.stores-cta-text strong { color: var(--white); }

@media (max-width: 768px) {
  .stores { padding: 80px 24px; }
  .stores-stats { flex-wrap: wrap; gap: 24px; }
  .stores-cta-area {
    flex-direction: column; gap: 24px; text-align: center;
  }
  .stores-cta-text { max-width: 100%; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black); padding: 60px 24px 30px; text-align: center;
}
.footer-logo img { height: 60px; margin-bottom: 24px; }
.footer-text { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 8px; }
.footer-subtext { color: rgba(255,255,255,0.25); font-size: 0.78rem; margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.footer-divider { width: 60px; height: 2px; background: var(--red); margin: 0 auto 20px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }
.whatsapp-popup {
  position: fixed; bottom: 100px; right: 30px; z-index: 998;
  background: var(--white); border-radius: 16px; padding: 20px;
  width: 280px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s;
}
.whatsapp-popup.active { opacity: 1; visibility: visible; transform: translateY(0); }
.whatsapp-popup h4 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; margin-bottom: 12px; color: var(--black);
  border: none; padding: 0; background: none;
}
.whatsapp-popup a,
.whatsapp-popup a:link,
.whatsapp-popup a:visited {
  display: flex !important; flex-direction: column; align-items: flex-start;
  padding: 12px 16px; border-radius: 12px; font-size: 0.9rem;
  color: var(--black); transition: all 0.3s; text-decoration: none;
  margin-bottom: 6px; border: none;
  background: var(--light-gray);
  box-shadow: none; outline: none;
  font-weight: 600;
}
.whatsapp-popup a:hover { background: rgba(37,211,102,0.1); color: #25D366; text-decoration: none; }
.whatsapp-popup a span {
  font-size: 0.8rem; color: var(--medium-gray);
  display: block; margin-top: 2px; font-weight: 400;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1; transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; min-height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 24px; z-index: 1000;
  }
  .nav-links.active { display: flex; }
  .nav-links a { color: var(--white) !important; font-size: 1.2rem; }
  .mobile-toggle { display: flex; }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-buttons { flex-direction: column; align-items: center; }

  .about { padding: 80px 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }

  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.7rem; padding: 6px 16px; }
  .btn { padding: 14px 28px; font-size: 0.9rem; }
  .stat-card { padding: 20px; }
  .stat-number { font-size: 2rem; }
  .service-card { padding: 28px; }
  .testimonial-card { padding: 28px; }
  .office-card { padding: 28px; }
}
