/* =============================================
   SÓ PEÇAS FIAT - STYLESHEET PRINCIPAL
   Loja de Autopeças em Contagem/MG
   ============================================= */

/* ===== VARIÁVEIS CSS ===== */
:root {
  --navy: #1a2e5a;
  --navy-dark: #0f1d3d;
  --red: #c8102e;
  --red-dark: #a00d24;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-500: #86868b;
  --gray-600: #6e6e73;
  --gray-700: #515154;
  --gray-800: #1d1d1f;
  --white: #ffffff;
  --whatsapp: #25D366;
  --waze: #33CCFF;
}

/* ===== RESET E BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
.headline-xl { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 800; 
  letter-spacing: -0.03em; 
  line-height: 1.05; 
}
.headline-lg { 
  font-size: clamp(1.75rem, 3vw, 2.5rem); 
  font-weight: 700; 
  letter-spacing: -0.02em; 
  line-height: 1.1; 
}
.headline-md { font-size: 1.25rem; font-weight: 600; }
.text-gray { color: var(--gray-500); }
.text-navy { color: var(--navy); }
.text-red { color: var(--red); }

/* ===== NAVBAR ===== */
.navbar-main {
  position: fixed; 
  top: 0; left: 0; right: 0; 
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.navbar-main.scrolled { 
  box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
}
.navbar-main .logo { height: 36px; }
.navbar-main .nav-link { 
  color: var(--gray-800); 
  font-weight: 500; 
  font-size: 0.9rem; 
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}
.navbar-main .nav-link:hover { color: var(--red); }

.btn-nav-cta {
  background: var(--navy); 
  color: white !important;
  padding: 0.5rem 1.25rem; 
  border-radius: 50px;
  font-weight: 600; 
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.btn-nav-cta:hover { 
  background: var(--navy-dark); 
  transform: translateY(-1px); 
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative; 
  min-height: 100vh;
  display: flex; 
  align-items: center;
  background: var(--navy-dark); 
  overflow: hidden;
}
.hero-bg {
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; height: 100%; 
  z-index: 0;
}
.hero-bg .carousel-item {
  height: 100vh;
  animation: slowZoom 20s ease-in-out infinite;
}
@keyframes slowZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero-overlay {
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,46,90,0.9) 0%, rgba(26,46,90,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; 
  z-index: 2;
  text-align: center; 
  color: white;
  padding: 120px 20px 80px;
  max-width: 900px; 
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  background: var(--red); 
  color: white;
  padding: 0.5rem 1.25rem; 
  border-radius: 50px;
  font-size: 0.875rem; 
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.25rem; 
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px; 
  margin-left: auto; 
  margin-right: auto;
}
.hero-cta { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 1rem; 
  margin-bottom: 3rem; 
}

.btn-hero-primary {
  display: inline-flex; 
  align-items: center; 
  gap: 0.75rem;
  background: var(--whatsapp); 
  color: white;
  font-size: 1.1rem; 
  font-weight: 600;
  padding: 1rem 2rem; 
  border-radius: 50px;
  text-decoration: none; 
  transition: all 0.3s ease;
}
.btn-hero-primary:hover { 
  background: #1da851; 
  transform: scale(1.03); 
  color: white; 
}

.btn-hero-secondary {
  display: inline-flex; 
  align-items: center; 
  gap: 0.75rem;
  background: white; 
  color: var(--navy);
  font-size: 1.1rem; 
  font-weight: 600;
  padding: 1rem 2rem; 
  border-radius: 50px;
  text-decoration: none; 
  transition: all 0.3s ease;
  border: 2px solid white;
}
.btn-hero-secondary:hover { 
  background: transparent; 
  color: white; 
  border-color: white; 
}

/* ===== INFO PILLS ===== */
.hero-info { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 1rem; 
}
.info-pill-group { display: flex; gap: 0.5rem; }
.info-pill {
  display: flex; 
  align-items: center; 
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.5rem; 
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none; 
  color: white;
}
.info-pill-link { 
  transition: all 0.3s ease; 
  cursor: pointer; 
}
.info-pill-link:hover { 
  background: rgba(255,255,255,0.2); 
  color: white; 
  transform: translateY(-2px); 
}
.info-pill i { font-size: 1.25rem; color: var(--red); }
.info-pill-waze i { color: var(--waze); }
.info-pill-waze:hover { background: rgba(51,204,255,0.2); }
.info-pill-small {
  padding: 1rem; 
  border-radius: 12px;
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.info-pill-small i { color: white; opacity: 0.7; margin: 0; }
.info-pill-small:hover i { opacity: 1; }
.info-pill-label { 
  font-size: 0.7rem; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  opacity: 0.7; 
}
.info-pill-value { font-weight: 600; font-size: 0.95rem; }

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.section-light { background: var(--gray-100); }
.section-navy { background: var(--navy); color: white; }
.section-header { 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto 50px; 
}
.section-label {
  display: inline-block;
  background: rgba(200,16,46,0.1); 
  color: var(--red);
  padding: 0.5rem 1rem; 
  border-radius: 50px;
  font-size: 0.8rem; 
  font-weight: 600;
  text-transform: uppercase; 
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
  max-width: 1100px; 
  margin: 0 auto; 
}

.twentytwenty-container { 
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
}
.experience-badge {
  position: absolute; 
  bottom: 20px; 
  left: 20px;
  background: var(--navy); 
  color: white;
  padding: 1.25rem 1.5rem; 
  border-radius: 16px;
  z-index: 999; 
  text-align: center;
}
.experience-badge .number { 
  font-size: 2.5rem; 
  font-weight: 800; 
  line-height: 1; 
  color: var(--red); 
}
.experience-badge .label { 
  font-size: 0.75rem; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  opacity: 0.8; 
}

.feature-list { 
  display: flex; 
  flex-direction: column; 
  gap: 0.75rem; 
  margin-top: 1.5rem; 
}
.feature-item {
  display: flex; 
  align-items: center; 
  gap: 1rem;
  padding: 1rem 1.25rem; 
  background: var(--gray-100);
  border-radius: 12px; 
  transition: all 0.3s ease;
}
.feature-item:hover { 
  transform: translateX(5px); 
  background: var(--gray-200); 
}
.feature-item i {
  width: 36px; height: 36px;
  background: var(--navy); 
  color: white;
  border-radius: 8px;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 20px;
}
.brands-highlight {
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 40px; 
  flex-wrap: wrap;
  max-width: 1000px; 
  margin: 0 auto;
}
.brand-main {
  display: flex; 
  align-items: center; 
  gap: 24px;
  background: rgba(255,255,255,0.1);
  padding: 30px 40px; 
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
}
.brand-logo-main { 
  height: 80px; 
  filter: brightness(0) invert(1); 
  -webkit-filter: brightness(0) invert(1); 
}
.brand-logo-text {
  font-size: 4rem; 
  font-weight: 900; 
  color: white;
  letter-spacing: -0.05em; 
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.brand-main-text { color: white; }
.brand-tag {
  display: inline-block;
  background: var(--red); 
  color: white;
  padding: 4px 12px; 
  border-radius: 20px;
  font-size: 0.7rem; 
  font-weight: 600;
  text-transform: uppercase; 
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.brand-main-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.brand-main-text p { font-size: 0.9rem; opacity: 0.8; margin: 0; }

.brands-divider {
  width: 50px; height: 50px;
  background: var(--red); 
  color: white;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.5rem; 
  font-weight: 700;
}

.brands-others { text-align: center; color: white; }
.brands-others-label { 
  display: block; 
  font-size: 0.8rem; 
  opacity: 0.7; 
  margin-bottom: 16px; 
  text-transform: uppercase; 
  letter-spacing: 0.05em;
}
.brands-logos { display: flex; align-items: center; gap: 16px; }
.brands-logos img { 
  height: 40px; 
  filter: brightness(0) invert(1); 
  -webkit-filter: brightness(0) invert(1);
  opacity: 0.7; 
  transition: all 0.3s ease; 
}
.brands-logos img:hover { opacity: 1; }
.brand-text-logo {
  font-size: 1.1rem; 
  font-weight: 800; 
  color: white;
  background: rgba(255,255,255,0.15);
  padding: 10px 18px; 
  border-radius: 10px;
  opacity: 0.8; 
  transition: all 0.3s ease;
}
.brand-text-logo:hover { opacity: 1; background: rgba(255,255,255,0.25); }
.brands-more { 
  background: rgba(255,255,255,0.15); 
  padding: 8px 16px; 
  border-radius: 20px;
  font-size: 0.85rem; 
  font-weight: 500;
}

/* ===== PRODUCTS SHOWCASE ===== */
.products-showcase {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
  max-width: 900px; 
  margin: 0 auto;
}

.product-item {
  text-align: center; 
  padding: 40px 24px;
  background: white; 
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.product-item:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 30px 60px rgba(26,46,90,0.15);
  border-color: var(--navy);
}
.product-icon {
  width: 80px; height: 80px; 
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 20px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 2rem; 
  color: var(--navy);
  transition: all 0.4s ease;
}
.product-item:hover .product-icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  transform: scale(1.1);
}
.product-item h3 { 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 8px;
}
.product-item p { 
  font-size: 0.85rem; 
  color: var(--gray-500); 
  margin: 0; 
  line-height: 1.5;
}

.products-cta {
  text-align: center; 
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.products-cta p {
  font-size: 1rem; 
  color: var(--gray-500);
  margin-bottom: 16px;
}

.btn-primary-custom {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white; 
  font-weight: 600; 
  font-size: 1rem;
  padding: 1rem 2rem; 
  border-radius: 50px;
  text-decoration: none; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-primary-custom:hover {
  transform: translateY(-3px); 
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== CATEGORIES ===== */
.categories-section { background: var(--navy); padding: 40px 20px; }
.categories-grid {
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  gap: 1.5rem;
  max-width: 900px; 
  margin: 0 auto;
}
.category-item {
  text-align: center; 
  text-decoration: none;
  padding: 1.5rem 1rem; 
  background: rgba(255,255,255,0.05);
  border-radius: 16px; 
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.category-item:hover { 
  background: rgba(255,255,255,0.1); 
  transform: translateY(-3px); 
}
.category-item img { 
  width: 56px; height: 56px; 
  object-fit: contain; 
  margin-bottom: 0.75rem; 
  filter: brightness(0) invert(1); 
  opacity: 0.9; 
}
.category-item span { 
  display: block; 
  color: white; 
  font-size: 0.85rem; 
  font-weight: 500; 
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  max-width: 1100px; 
  margin: 0 auto; 
}

.testimonial-card {
  background: white; 
  border-radius: 16px; 
  padding: 1.75rem;
  border: 1px solid var(--gray-200); 
  height: 100%;
  display: flex; 
  flex-direction: column;
  transition: all 0.3s ease;
}
.testimonial-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
}

.testimonial-header {
  display: flex; 
  align-items: center; 
  gap: 0.75rem; 
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.testimonial-avatar {
  width: 48px; height: 48px; 
  border-radius: 50%; 
  object-fit: cover;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.testimonial-date { font-size: 0.8rem; color: var(--gray-500); }
.testimonial-rating { 
  margin-left: auto; 
  color: #ffc107; 
  font-size: 0.8rem;
}

.testimonial-text { 
  flex: 1; 
  font-size: 0.95rem; 
  color: var(--gray-700); 
  line-height: 1.7;
  font-style: italic;
}

.stars { color: #ffc107; font-size: 1.1rem; }

.btn-secondary-custom {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  padding: 0.75rem 1.5rem; 
  border-radius: 30px;
  background: white; 
  color: var(--navy);
  border: 2px solid var(--gray-200);
  font-weight: 600; 
  font-size: 0.9rem;
  text-decoration: none; 
  transition: all 0.3s ease;
}
.btn-secondary-custom:hover { 
  border-color: var(--navy); 
  background: var(--navy); 
  color: white; 
}

.google-badge {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 1rem;
  background: white; 
  padding: 1.25rem 2rem; 
  border-radius: 12px;
  max-width: 350px; 
  margin: 40px auto 0;
}
.google-badge img { height: 24px; }
.google-badge-score { font-size: 1.75rem; font-weight: 700; color: var(--navy); }

/* ===== CONTACT SECTION ===== */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.2fr; 
  gap: 50px; 
  max-width: 1100px; 
  margin: 0 auto; 
  align-items: start; 
}

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; 
  padding: 1.25rem;
  transition: all 0.3s ease; 
  text-decoration: none; 
  color: white;
}
.contact-card:hover { 
  background: rgba(255,255,255,0.12); 
  transform: translateY(-2px); 
  color: white; 
}
.contact-card i { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--red); }
.contact-card h4 { 
  font-size: 0.7rem; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  opacity: 0.6; 
  margin-bottom: 0.25rem; 
}
.contact-card p { font-weight: 500; font-size: 0.95rem; margin: 0; }

.map-container { border-radius: 16px; overflow: hidden; height: 350px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== CONTACT INFO BOX ===== */
.contact-info-box {
  background: white; 
  border-radius: 20px; 
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-info-item {
  display: flex; 
  gap: 1rem; 
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; 
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item i {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--navy); 
  color: white;
  border-radius: 12px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item strong { 
  display: block; 
  font-size: 0.9rem; 
  margin-bottom: 0.25rem; 
  color: var(--navy); 
}
.contact-info-item p { 
  font-size: 0.95rem; 
  color: var(--gray-600); 
  margin: 0 0 0.5rem 0; 
}

.contact-info-address,
.contact-info-phone {
  text-decoration: none; 
  color: var(--gray-600); 
  display: inline;
  transition: color 0.2s ease;
}
.contact-info-address:hover {
  color: var(--waze); 
  cursor: pointer;
}
.contact-info-phone {
  cursor: pointer; 
  position: relative;
}
.contact-info-phone:hover {
  color: var(--navy);
}
.contact-info-phone:hover i {
  animation: phoneRing 0.6s ease-in-out;
}
@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}

.btn-waze-small {
  display: inline-flex; 
  align-items: center; 
  gap: 0.4rem;
  font-size: 0.8rem; 
  font-weight: 600;
  color: var(--waze); 
  text-decoration: none;
  padding: 6px 12px; 
  border-radius: 20px;
  background: rgba(51,204,255,0.1);
  transition: all 0.3s ease;
}
.btn-waze-small:hover { 
  background: rgba(51,204,255,0.2); 
  color: #00A0E0; 
}
.btn-waze-small i { font-size: 0.9rem; }

.contact-whatsapp-buttons { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  margin: 1.5rem 0; 
}
.btn-whatsapp {
  display: flex; 
  align-items: center; 
  gap: 1rem;
  padding: 1rem 1.5rem; 
  border-radius: 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white; 
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); 
  color: white; 
}
.btn-whatsapp.fiat { 
  background: linear-gradient(135deg, var(--red) 0%, #a30d24 100%); 
}
.btn-whatsapp.fiat:hover { 
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3); 
}
.btn-whatsapp i { font-size: 1.75rem; }
.btn-whatsapp-label { display: block; font-size: 0.75rem; opacity: 0.9; }
.btn-whatsapp-number { display: block; font-size: 1.1rem; font-weight: 700; }

.instagram-link {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  color: var(--navy); 
  font-weight: 600; 
  text-decoration: none;
  transition: color 0.2s ease;
}
.instagram-link:hover { color: #E4405F; }
.instagram-link i { font-size: 1.25rem; }

/* ===== FOOTER ===== */
.footer { 
  background: var(--navy-dark); 
  color: white; 
  padding: 50px 20px 30px; 
}
.footer-link { 
  color: rgba(255,255,255,0.6); 
  text-decoration: none; 
  display: block; 
  margin-bottom: 0.5rem; 
  font-size: 0.9rem; 
  transition: color 0.2s ease; 
}
.footer-link:hover { color: white; }

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float-direct {
  position: fixed; 
  bottom: 25px; right: 25px; 
  z-index: 9999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.75rem; 
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}
.whatsapp-float-direct:hover { 
  transform: scale(1.1); 
  color: white; 
  box-shadow: 0 6px 30px rgba(37,211,102,0.5); 
}
.whatsapp-float-direct .whatsapp-pulse {
  position: absolute; 
  width: 60px; height: 60px;
  border-radius: 50%; 
  background: #25D366;
  animation: pulse 2s infinite; 
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 991px) { 
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 767px) {
  .section { padding: 60px 16px; }
  .hero-content { padding: 100px 16px 50px; }
  .hero-info { flex-direction: column; align-items: center; gap: 0.75rem; }
  .info-pill { width: 100%; max-width: 320px; padding: 0.875rem 1.25rem; }
  .btn-hero-primary, .btn-hero-secondary { 
    width: 100%; justify-content: center; 
    padding: 0.875rem 1.5rem; font-size: 1rem;
  }
  .hero-cta { gap: 0.75rem; }
  
  /* Hero background - mostrar fachada (lado direito) */
  .hero-bg .carousel-item {
    background-position: 70% center !important;
  }
  
  .headline-xl { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; margin-bottom: 1rem; }
  
  /* Navbar mobile */
  .navbar-main .logo { height: 30px; }
  
  /* About section */
  .about-grid { gap: 30px; }
  .twentytwenty-container { border-radius: 16px; }
  .feature-list { gap: 0.5rem; }
  .feature-item { padding: 0.875rem 1rem; font-size: 0.9rem; }
  .feature-item i { width: 32px; height: 32px; font-size: 0.85rem; }
  
  /* Brands section */
  .brands-section { padding: 40px 16px; }
  .brands-highlight { flex-direction: column; gap: 24px; }
  .brand-main { flex-direction: column; text-align: center; padding: 24px; }
  .brands-divider { width: 40px; height: 40px; font-size: 1.25rem; }
  .brand-logo-text { font-size: 2.5rem; }
  .brand-main-text h3 { font-size: 1.25rem; }
  .brand-main-text p { font-size: 0.85rem; }
  .brand-text-logo { font-size: 0.95rem; padding: 8px 14px; }
  .brands-more { font-size: 0.75rem; padding: 6px 12px; }
  
  /* Products */
  .products-showcase { grid-template-columns: repeat(2, 1fr); }
  .product-item { padding: 30px 20px; }
  .product-icon { width: 64px; height: 64px; font-size: 1.5rem; }
  .product-item h3 { font-size: 1rem; }
  .product-item p { font-size: 0.8rem; }
  .products-cta { margin-top: 40px; padding-top: 30px; }
  .btn-primary-custom { padding: 0.875rem 1.5rem; font-size: 0.95rem; }
  
  /* Categories */
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-avatar { width: 42px; height: 42px; }
  .testimonial-name { font-size: 0.9rem; }
  .testimonial-text { font-size: 0.9rem; }
  .testimonial-rating { margin-left: 0; width: 100%; margin-top: 0.5rem; }
  
  /* Contact */
  .contact-cards { grid-template-columns: 1fr; }
  .contact-info-box { padding: 1.5rem; border-radius: 16px; }
  .contact-info-item { gap: 0.75rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; }
  .contact-info-item i { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; }
  .btn-whatsapp { padding: 0.875rem 1.25rem; }
  .btn-whatsapp i { font-size: 1.5rem; }
  .btn-whatsapp-number { font-size: 1rem; }
  .map-container { height: 280px; border-radius: 16px; margin-top: 1.5rem; }
  
  /* Footer */
  .footer { padding: 40px 16px 24px; }
  .footer .row { text-align: center; }
  .footer .col-md-4 { margin-bottom: 1.5rem; }
  .footer-link { justify-content: center; }
  
  /* WhatsApp float */
  .whatsapp-float-direct { width: 54px; height: 54px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .whatsapp-float-direct .whatsapp-pulse { width: 54px; height: 54px; }
  
  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-label { font-size: 0.7rem; padding: 0.4rem 0.875rem; }
  
  /* Experience badge - hide on mobile */
  .experience-badge { display: none; }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
  .headline-xl { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .info-pill { padding: 0.75rem 1rem; }
  .info-pill i { font-size: 1rem; }
  .info-pill-value { font-size: 0.85rem; }
  .info-pill-label { font-size: 0.65rem; }
  .brands-logos { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .brand-text-logo { font-size: 0.85rem; padding: 6px 10px; }
}
