/* ============================================================
   BRICOMA – Premium CSS
   Design: Deep blue + vivid red + clean white
============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  /* Brand Colors — matched to BRICOMA logo */
  --c-blue:        #1b2f5e;
  --c-blue-mid:    #223775;
  --c-blue-light:  #2a4d9e;
  --c-red:         #d41e24;
  --c-red-dark:    #a81219;
  --c-white:       #ffffff;

  /* Neutrals */
  --c-offwhite:    #f8f9fc;
  --c-gray-50:     #f1f3f7;
  --c-gray-100:    #e8ecf2;
  --c-gray-200:    #d0d9e8;
  --c-gray-400:    #8fa0b8;
  --c-gray-600:    #4f6480;
  --c-text:        #0d1f35;
  --c-text-soft:   #3d5470;
  --c-text-muted:  #6b82a0;

  /* Whatsapp */
  --c-whatsapp:    #25d366;
  --c-whatsapp-dk: #128c7e;

  /* Shadows */
  --shadow-sm:     0 1px 4px rgba(27,47,94,.07);
  --shadow-md:     0 4px 20px rgba(27,47,94,.12);
  --shadow-lg:     0 8px 40px rgba(27,47,94,.16);
  --shadow-xl:     0 20px 60px rgba(27,47,94,.22);
  --shadow-red:    0 4px 20px rgba(212,30,36,.28);
  --shadow-blue:   0 4px 20px rgba(27,47,94,.32);

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;
  --sp-2xl: 8rem;

  /* Typography */
  --ff-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --ff-serif: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --t-fast:   150ms cubic-bezier(.4,0,.2,1);
  --t-base:   300ms cubic-bezier(.4,0,.2,1);
  --t-slow:   500ms cubic-bezier(.4,0,.2,1);
  --t-spring: 400ms cubic-bezier(.34,1.56,.64,1);

  /* Nav height */
  --nav-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: var(--sp-xl) 0;
}

/* ── Section Labels / Headings ──────────────────────────── */
.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: .75rem;
}

.section__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--c-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__title--left { text-align: left; }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  max-width: 600px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.section__header .section__subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t-spring), box-shadow var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: var(--c-white);
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(230,57,70,.40);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.75);
}

.btn--whatsapp {
  background: linear-gradient(135deg, var(--c-whatsapp) 0%, var(--c-whatsapp-dk) 100%);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(37,211,102,.30);
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn--whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
}

.btn--lg { padding: .9rem 2.25rem; font-size: 1rem; }

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.badge--glass {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--c-white);
}

/* ── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.services__grid .reveal:nth-child(1) { transition-delay: .05s; }
.services__grid .reveal:nth-child(2) { transition-delay: .12s; }
.services__grid .reveal:nth-child(3) { transition-delay: .19s; }
.services__grid .reveal:nth-child(4) { transition-delay: .26s; }
.services__grid .reveal:nth-child(5) { transition-delay: .33s; }
.services__grid .reveal:nth-child(6) { transition-delay: .40s; }
.why__grid .reveal:nth-child(1) { transition-delay: .05s; }
.why__grid .reveal:nth-child(2) { transition-delay: .12s; }
.why__grid .reveal:nth-child(3) { transition-delay: .19s; }
.why__grid .reveal:nth-child(4) { transition-delay: .26s; }

/* ============================================================
   HEADER / NAVBAR
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-slow), backdrop-filter var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 30px rgba(30,58,95,.10);
  border-color: rgba(30,58,95,.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav__logo-fallback {
  display: none;
  align-items: center;
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -.01em;
}

.header--scrolled .nav__logo-fallback { color: var(--c-blue); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0 auto;
}

.nav__link {
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-radius: var(--r-sm);
  transition: color var(--t-base), background var(--t-base);
}

.nav__link:hover { color: var(--c-white); background: rgba(255,255,255,.12); }

.header--scrolled .nav__link { color: var(--c-text-soft); }
.header--scrolled .nav__link:hover { color: var(--c-blue); background: var(--c-gray-50); }

/* CTA */
.nav__cta {
  padding: .55rem 1.4rem;
  font-size: .88rem;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  padding: 0;
  transition: background var(--t-base);
}

.nav__burger:hover { background: rgba(255,255,255,.12); }

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
  transform-origin: center;
}

.header--scrolled .burger__line { background: var(--c-blue); }

/* Burger → X */
.nav__burger.is-open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open .burger__line:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1b38 0%, #1b2f5e 45%, #223775 75%, #162648 100%);
  padding-top: var(--nav-h);
}

/* Background decorative elements */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}

.hero__shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,30,36,.20) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,77,158,.38) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: float2 10s ease-in-out infinite;
}

.hero__shape--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,57,70,.12) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 20px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -30px) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(15px, 20px) scale(0.95); }
  66%       { transform: translate(-15px, -10px) scale(1.05); }
}

/* Hero inner layout */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  position: relative;
  z-index: 1;
}

/* Hero content */
.hero__content {
  animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) forwards;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  animation: heroFadeUp .9s .1s cubic-bezier(.4,0,.2,1) both;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: heroFadeUp .9s .15s cubic-bezier(.4,0,.2,1) both;
}

.hero__title-accent {
  color: var(--c-red);
  display: block;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
  animation: heroFadeUp .9s .25s cubic-bezier(.4,0,.2,1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroFadeUp .9s .35s cubic-bezier(.4,0,.2,1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroFadeUp .9s .2s cubic-bezier(.4,0,.2,1) both;
}

.hero__card {
  /* base: used by floating chips */
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}

.hero__card--main {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 6px rgba(255,255,255,.12), 0 16px 48px rgba(0,0,0,.32);
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero__logo-img {
  max-width: 170px;
  max-height: 170px;
  object-fit: contain;
}

.hero__logo-text {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-white);
  text-align: center;
}

/* Floating cards */
.hero__card--float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: var(--r-md);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
}

.hero__card--float-1 {
  top: 0; right: -20px;
  animation: floatCard1 6s ease-in-out infinite;
}

.hero__card--float-2 {
  bottom: 20px; left: -30px;
  animation: floatCard2 7s ease-in-out infinite;
}

.hero__card--float-3 {
  bottom: 100px; right: -30px;
  animation: floatCard3 5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
  animation: heroFadeUp 1s .7s cubic-bezier(.4,0,.2,1) both;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50%       { transform: translateY(8px); opacity: .9; }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--c-offwhite);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red) 0%, var(--c-blue-light) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-gray-200);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(30,58,95,.06) 0%, rgba(230,57,70,.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--t-base), transform var(--t-spring);
}

.service-card:hover .service-card__icon-wrap {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-light) 100%);
  transform: scale(1.08);
}

.service-card__icon {
  width: 26px;
  height: 26px;
  stroke: var(--c-blue);
  transition: stroke var(--t-base);
}

.service-card:hover .service-card__icon { stroke: var(--c-white); }

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.service-card__desc {
  font-size: .93rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--c-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text {
  color: var(--c-text-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: .98rem;
}

.about__features {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--c-text);
}

.about__feature-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(230,57,70,.08) 0%, rgba(30,58,95,.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-red);
}

/* About visual */
.about__visual { position: relative; }

.about__image-wrap {
  position: relative;
  padding: 1.5rem;
}

.about__image-decoration {
  position: absolute;
  border-radius: var(--r-lg);
  z-index: 0;
}

.about__image-decoration:first-child {
  inset: 0;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-light) 100%);
  transform: rotate(3deg);
  opacity: .08;
}

.about__image-decoration--2 {
  top: 1rem; right: 1rem; bottom: 1rem; left: 1rem;
  background: var(--c-gray-50);
  border: 2px solid var(--c-gray-100);
  transform: rotate(-1.5deg);
}

.about__image-inner {
  position: relative;
  z-index: 1;
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.about__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 3rem;
  text-align: center;
  color: var(--c-gray-400);
}

.about__placeholder svg { opacity: .4; }

.about__placeholder span {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-blue);
  opacity: .5;
}

.about__placeholder small {
  font-size: .82rem;
  color: var(--c-text-muted);
}

/* ============================================================
   STOREFRONT
============================================================ */
.storefront {
  background: var(--c-gray-50);
  overflow: hidden;
}

.storefront__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image side */
.storefront__image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}

.storefront__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--t-slow);
}

.storefront__image-wrap:hover .storefront__img { transform: scale(1.02); }

.storefront__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e3a5f 0%, #25497a 60%, #2d5f9e 100%);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.5);
}

.storefront__placeholder svg { opacity: .3; }
.storefront__placeholder span { font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,.6); }
.storefront__placeholder small { font-size: .85rem; }

.storefront__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: var(--c-white);
  padding: .6rem 1.2rem;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: var(--shadow-red);
  z-index: 2;
}

/* Content side */
.storefront__content { display: flex; flex-direction: column; gap: 1.25rem; }

.storefront__text {
  color: var(--c-text-soft);
  line-height: 1.75;
  font-size: .98rem;
}

.storefront__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: .5rem 0;
}

.storefront__info-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-md);
  color: var(--c-blue);
}

.storefront__info-item svg { flex-shrink: 0; margin-top: 2px; }

.storefront__info-item div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.storefront__info-item strong {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.storefront__info-item span {
  font-size: .95rem;
  font-weight: 500;
  color: var(--c-text);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why {
  background: var(--c-white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-lg);
  background: var(--c-white);
  transition: transform var(--t-spring), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: linear-gradient(160deg, #1b2f5e 0%, #223775 100%);
}

.why-card__icon {
  width: 68px;
  height: 68px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(230,57,70,.08) 0%, rgba(30,58,95,.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--c-red);
  transition: background var(--t-base), color var(--t-base), transform var(--t-spring);
}

.why-card:hover .why-card__icon {
  background: rgba(255,255,255,.12);
  color: var(--c-white);
  transform: scale(1.1) rotate(-3deg);
}

.why-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: .6rem;
  transition: color var(--t-base);
}

.why-card:hover .why-card__title { color: var(--c-white); }

.why-card__desc {
  font-size: .88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  transition: color var(--t-base);
}

.why-card:hover .why-card__desc { color: rgba(255,255,255,.7); }

/* ============================================================
   REVIEWS
============================================================ */
.reviews {
  background: linear-gradient(135deg, #0c1b38 0%, #1b2f5e 60%, #223775 100%);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.reviews__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.reviews__stars {
  display: flex;
  gap: .35rem;
  margin-bottom: .25rem;
}

.reviews__stars svg {
  width: 28px;
  height: 28px;
  color: #f4b400;
  filter: drop-shadow(0 2px 6px rgba(244,180,0,.4));
}

.reviews .section__label { color: rgba(255,255,255,.6); }
.reviews .section__title { color: var(--c-white); }
.reviews .section__subtitle { color: rgba(255,255,255,.65); margin: 0; }

.reviews__btn {
  margin-top: .75rem;
}

.reviews__google-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-top: .25rem;
}

.reviews__google-badge strong { color: rgba(255,255,255,.6); }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--c-offwhite);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

/* Contact info cards */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-gray-100);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t-base);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(30,58,95,.07) 0%, rgba(230,57,70,.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-blue);
}

.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.contact-card__content strong {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.contact-card__content span,
.contact-card__content a {
  font-size: .97rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.5;
}

.contact-card__content a {
  transition: color var(--t-base);
}

.contact-card__content a:hover { color: var(--c-red); }

/* Map */
.contact__map {}

.map-container {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--c-white);
  position: relative;
}

.map-container iframe {
  display: block;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,.7);
}

.footer__top { padding: var(--sp-lg) 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(.85);
}

.footer__logo-text {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer__reviews-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  transition: color var(--t-base);
  padding: .4rem 0;
}

.footer__reviews-link:hover { color: #f4b400; }
.footer__reviews-link span { margin-left: .25rem; }

.footer__heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t-base), padding-left var(--t-base);
}

.footer__links a:hover { color: var(--c-white); padding-left: 4px; }

.footer__address {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer__address p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.footer__address a {
  color: rgba(255,255,255,.55);
  transition: color var(--t-base);
}

.footer__address a:hover { color: var(--c-white); }

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-whatsapp) !important;
  font-weight: 600;
  font-size: .88rem;
}

.footer__whatsapp:hover { color: #4ae08a !important; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: linear-gradient(135deg, var(--c-whatsapp) 0%, var(--c-whatsapp-dk) 100%);
  color: var(--c-white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.4rem .9rem 1.1rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.40), 0 2px 8px rgba(0,0,0,.15);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--t-spring), box-shadow var(--t-base), padding var(--t-base);
  animation: wappEntrance .6s .8s cubic-bezier(.34,1.56,.64,1) both;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.15);
}

.floating-whatsapp__label { letter-spacing: .01em; }

@keyframes wappEntrance {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Pulse ring */
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--c-whatsapp);
  opacity: 0;
  animation: wappPulse 3s ease-out 2s infinite;
}

@keyframes wappPulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero__badges { justify-content: center; }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }

  .hero__visual {
    order: -1;
    margin: 0 auto;
  }

  .hero__card--main { width: 170px; height: 170px; padding: 1.25rem; }
  .hero__logo-img { max-width: 130px; max-height: 130px; }

  .about__grid,
  .storefront__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__visual { order: -1; }

  .about__img { min-height: 260px; max-height: 340px; }

  .storefront__img { max-height: 320px; object-fit: cover; object-position: center; }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .map-container { height: 340px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --sp-xl: 3rem; }

  /* Mobile Nav */
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13,31,53,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: .25rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base), opacity var(--t-base);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    width: 100%;
    padding: .85rem 1rem;
    border-radius: var(--r-sm);
    font-size: 1rem;
  }

  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 1rem);
    padding-bottom: 2rem;
  }

  .hero__scroll-indicator { display: none; }

  .hero__inner { gap: 1.75rem; padding-top: 0; padding-bottom: 0; }

  .hero__card--float-1,
  .hero__card--float-2,
  .hero__card--float-3 { display: none; }

  .hero__card--main { width: 150px; height: 150px; padding: 1rem; }
  .hero__logo-img { max-width: 115px; max-height: 115px; }

  .hero__title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .hero__subtitle { font-size: .95rem; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* About image on mobile */
  .about__img { min-height: 220px; max-height: 280px; }
  .about__image-inner { min-height: 220px; }

  /* Storefront image on mobile */
  .storefront__img { max-height: 260px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom-inner { flex-direction: column; text-align: center; gap: .4rem; }

  /* Floating WA */
  .floating-whatsapp__label { display: none; }
  .floating-whatsapp { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .storefront__badge { right: 8px; bottom: -12px; }
  .map-container { height: 280px; }
  .hero__badges { gap: .35rem; }
  .badge { font-size: .72rem; padding: .3rem .7rem; }
}

/* ── Accessibility ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
