:root{
  --bg:#0e0d0d;
  --surface:#151313;
  --surface-2:#1d1919;
  --light:#f5efe8;
  --light-2:#ebe1d6;
  --white:#ffffff;
  --text:#f6f2ee;
  --text-dark:#4c3b35;
  --muted:#cbbfb3;
  --muted-dark:#6f5f58;
  --gold:#c7a56a;
  --gold-2:#e5c88f;
  --line:rgba(255,255,255,.12);
  --line-dark:rgba(76,59,53,.12);
  --accent:#25D366;
  --accent-dark:#0f3a1f;
  --radius:22px;
  --radius-lg:30px;
  --shadow:0 16px 40px rgba(0,0,0,.28);
  --shadow-soft:0 18px 36px rgba(39,27,19,.08);
  --container:min(1180px, 92%);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body{
  margin:0;
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.55;
  background-color:var(--bg);
  background-image:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)),
    url("img/patterns/fondo-damasco.jpg");
  background-size:auto, 540px 540px;
  background-repeat:no-repeat, repeat;
  background-position:center top, top left;
}

body.menu-open{
  overflow:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:var(--container);
  margin-inline:auto;
}

.center{
  text-align:center;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,10,10,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:20px;
  min-height:82px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-width:max-content;
}

.brand-logo{
  height:54px;
  width:auto;
  object-fit:contain;
}

.tagline{
  font-size:.78rem;
  color:#d9cdc1;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:8px;
}

.main-nav a{
  padding:10px 13px;
  border-radius:999px;
  font-weight:700;
  font-size:.94rem;
  color:#f0ebe6;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-1px);
}

.main-nav .nav-cta{
  background:#fff;
  color:#111;
}

.main-nav .nav-cta:hover{
  background:#f5efe8;
}

.nav-toggle{
  display:none;
  margin-left:auto;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero{
  position:relative;
  min-height:78vh;
  display:grid;
  align-items:end;
  overflow:hidden;
}

.hero-media{
  position:absolute;
  inset:0;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 34%;
  filter:saturate(.98) contrast(1.04);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 25% 25%, rgba(199,165,106,.15) 0%, rgba(199,165,106,0) 36%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.56) 48%, rgba(0,0,0,.91) 100%),
    linear-gradient(90deg, rgba(0,0,0,.64) 0%, rgba(0,0,0,.18) 58%, rgba(0,0,0,.42) 100%);
}

.hero-content{
  position:relative;
  z-index:1;
  padding:92px 0 72px;
  max-width:780px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  color:#e8d8c5;
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.eyebrow-dark{
  color:#9a7a5d;
}

.hero h1,
.section-title{
  margin:0;
  font-family:"Cormorant Garamond", Georgia, serif;
  line-height:1.02;
  font-weight:600;
  letter-spacing:.01em;
}

.hero h1{
  font-size:clamp(3rem, 7vw, 5.25rem);
  max-width:11ch;
}

.hero-copy{
  margin:18px 0 0;
  max-width:61ch;
  color:#e6dbd1;
  font-size:1.08rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:28px 0 0;
  padding:0;
  list-style:none;
}

.hero-points li{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#efe6df;
  border-radius:999px;
  padding:10px 14px;
  font-size:.94rem;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  transition:transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  box-shadow:var(--shadow);
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn svg{
  width:22px;
  height:22px;
  flex:0 0 22px;
}

.btn-primary{
  background:var(--accent);
  color:#07210f;
}

.btn-primary:hover{
  filter:brightness(.98);
}

.btn-secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
  color:#fff;
}

.btn-secondary:hover,
.btn-outline:hover{
  background:rgba(255,255,255,.12);
}

.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.18);
  color:#fff;
}

.btn-light-outline{
  background:#fff;
  color:var(--text-dark);
  border-color:rgba(76,59,53,.12);
  box-shadow:0 12px 28px rgba(39,27,19,.10);
}

.btn-light-outline:hover{
  background:#fbf5ef;
}

/* Sections */
.section{
  padding:84px 0;
}

.section-tight{
  padding:70px 0;
}

.section-dark{
  background:transparent;
  color:var(--text);
}

.section-light{
  background:var(--light);
  color:var(--text-dark);
}

.section-head{
  max-width:790px;
  margin:0 auto 36px;
}

.section-title{
  font-size:clamp(2.35rem, 5vw, 4.05rem);
}

.section-title.dark{
  color:var(--text-dark);
}

.section-subtitle{
  margin:14px auto 0;
  max-width:64ch;
  color:var(--muted);
  font-size:1.02rem;
}

.section-subtitle.dark{
  color:var(--muted-dark);
}

/* Trust bar */
.trust-bar{
  background:#0b0b0b;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  padding:18px 0;
}

.trust-item{
  text-align:center;
  color:#e8ddd4;
  font-size:.95rem;
  padding:10px 12px;
  border-right:1px solid rgba(255,255,255,.06);
}

.trust-item:last-child{
  border-right:none;
}

/* Categories */
.category-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.category-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(76,59,53,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}

.category-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 46px rgba(39,27,19,.13);
}

.category-card-wide{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
}

.category-media{
  background:#eee2d7;
}

.category-media img{
  width:100%;
  aspect-ratio:16/12;
  object-fit:cover;
}

.category-card-wide .category-media img{
  height:100%;
  aspect-ratio:auto;
}

.category-body{
  padding:22px 22px 24px;
}

.category-kicker{
  display:inline-block;
  margin-bottom:8px;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#9a7a5d;
}

.category-body h3{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2rem;
  line-height:1.05;
  color:var(--text-dark);
}

.category-body p{
  margin:0 0 14px;
  color:#6c5d57;
}

.category-body a{
  font-weight:800;
  color:#8c6a4e;
}

/* Benefits */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.benefit-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.benefit-number{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(199,165,106,.15);
  color:#ead3ad;
  border:1px solid rgba(199,165,106,.28);
  font-weight:800;
}

.benefit-card h3{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:2rem;
  line-height:1.04;
}

.benefit-card p{
  margin:0;
  color:#ddd2c8;
}

/* Agenda */
.agenda-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.agenda-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.steps-card{
  background:#fff;
  border-radius:28px;
  padding:26px;
  border:1px solid rgba(76,59,53,.08);
  box-shadow:var(--shadow-soft);
}

.step-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(76,59,53,.10);
}

.step-item:first-child{
  padding-top:0;
}

.step-item:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.step-item span{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:999px;
  background:#f2e7db;
  color:#7b614f;
  font-weight:900;
}

.step-item h3{
  margin:0 0 5px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.9rem;
  line-height:1;
}

.step-item p{
  margin:0;
  color:#6c5d57;
}

/* Vitrina */
.section-vitrina{
  border-top:1px solid rgba(76,59,53,.08);
}

.gallery-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:0 auto 28px;
}

.gallery-tab{
  border:none;
  border-radius:999px;
  padding:12px 16px;
  background:#fff;
  color:#6c5d57;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(39,27,19,.06);
  border:1px solid rgba(76,59,53,.08);
  transition:transform .2s ease, background .2s ease, color .2s ease;
}

.gallery-tab:hover{
  transform:translateY(-1px);
}

.gallery-tab.is-active{
  background:#151313;
  color:#fff;
}

.gallery-panel{
  display:none;
}

.gallery-panel.is-active{
  display:block;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.gallery-grid-large{
  grid-template-columns:repeat(5, 1fr);
}

.gallery-grid-small{
  grid-template-columns:repeat(4, 1fr);
}

.gallery-item{
  margin:0;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(76,59,53,.08);
  cursor:pointer;
  position:relative;
}

.gallery-item::after{
  content:"Ver";
  position:absolute;
  left:12px;
  bottom:12px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(0,0,0,.62);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .2s ease, transform .2s ease;
}

.gallery-item:hover::after{
  opacity:1;
  transform:translateY(0);
}

.gallery-item img{
  width:100%;
  height:360px;
  object-fit:cover;
  transition:transform .35s ease, filter .35s ease;
}

.gallery-grid-large .gallery-item img{
  height:300px;
}

.gallery-grid-small .gallery-item img{
  height:250px;
}

.gallery-item:hover img{
  transform:scale(1.035);
  filter:contrast(1.03);
}

.accessory-groups{
  display:grid;
  gap:32px;
}

.accessory-group h3{
  margin:0 0 16px;
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--text-dark);
  font-size:2.2rem;
  line-height:1;
}

.gallery-cta{
  margin-top:28px;
  text-align:center;
}

/* Blog */
.grid-blog{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.card-blog{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(76,59,53,.08);
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease;
}

.card-blog:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 42px rgba(39,27,19,.12);
}

.blog-link{
  display:grid;
  grid-template-rows:auto 1fr;
  min-height:100%;
}

.blog-thumb{
  width:100%;
  height:220px;
  object-fit:cover;
}

.blog-body{
  padding:16px 18px 18px;
}

.blog-body h3{
  margin:8px 0 8px;
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--text-dark);
  font-size:1.9rem;
  line-height:1.05;
}

.blog-body p{
  margin:0 0 10px;
  color:#6c5d57;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#f2e7db;
  color:#7b614f;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.more{
  font-weight:800;
  color:#8c6a4e;
}

/* Instagram */
.btn-instagram{
  --ig1:#f9ce34;
  --ig2:#ee2a7b;
  --ig3:#6228d7;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:20px;
  padding:14px 24px;
  border-radius:999px;
  color:#fff;
  font-weight:800;
  background:linear-gradient(45deg, var(--ig1), var(--ig2), var(--ig3));
  box-shadow:0 12px 30px rgba(238,42,123,.28);
  transition:transform .2s ease, filter .2s ease;
}

.btn-instagram:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
}

.btn-instagram .ig-icon{
  width:22px;
  height:22px;
  flex:0 0 22px;
}

.awards{
  display:flex;
  justify-content:center;
  margin-top:24px;
  padding:18px;
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(199,165,106,.10)),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}

.awards img{
  width:min(980px, 100%);
  height:auto;
  border-radius:18px;
  box-shadow:0 14px 34px rgba(0,0,0,.22);
}


/* Opinions */
.opiniones-carousel{
  position:relative;
  margin-top:18px;
}

.car-viewport{
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(76,59,53,.08);
  box-shadow:var(--shadow-soft);
}

.car-track{
  display:flex;
  transition:transform .45s ease;
}

.car-item{
  flex:0 0 100%;
  padding:18px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.car-item img{
  width:clamp(280px, 86vw, 880px);
  height:auto;
  border-radius:16px;
  box-shadow:0 14px 28px rgba(0,0,0,.08);
}

.car-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#111;
  color:#fff;
  cursor:pointer;
  box-shadow:var(--shadow);
  transition:transform .2s ease, background .2s ease;
  z-index:2;
}

.car-btn:hover{
  transform:translateY(-50%) scale(1.04);
  background:#1b1b1b;
}

.car-btn.prev{
  left:10px;
}

.car-btn.next{
  right:10px;
}

.car-dots{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin-top:14px;
}

.car-dots button{
  width:10px;
  height:10px;
  border:none;
  border-radius:999px;
  background:#b9aba0;
  opacity:.8;
  cursor:pointer;
}

.car-dots button.active{
  background:#7f604b;
  opacity:1;
}

/* FAQ */
.faq-section{
  border-top:1px solid rgba(76,59,53,.08);
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.faq-card{
  background:#fff;
  border-radius:22px;
  padding:22px;
  border:1px solid rgba(76,59,53,.08);
  box-shadow:var(--shadow-soft);
}

.faq-card h3{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.9rem;
  line-height:1.05;
  color:var(--text-dark);
}

.faq-card p{
  margin:0;
  color:#6c5d57;
}

/* Contact */
.section-contact{
  padding-bottom:92px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
}

.contact-card,
.mini-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-list{
  margin-top:20px;
}

.contact-list p{
  margin:0 0 12px;
  color:#e1d6cd;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.contact-aside{
  display:grid;
  gap:16px;
}

.mini-card h3{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.8rem;
}

.mini-card p{
  margin:0;
  color:#ddd2c8;
}

.mini-card a{
  color:#f0d8bc;
  text-decoration:underline;
  text-underline-offset:3px;
}

/* Footer */
.site-footer{
  background:#050505;
  border-top:1px solid rgba(255,255,255,.08);
  padding:28px 0 16px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.footer-grid h4{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.8rem;
}

.footer-grid p{
  margin:0;
  color:#d4c9c0;
}

.copy{
  margin:18px 0 0;
  color:#bcaea4;
  text-align:center;
  font-size:.92rem;
}

/* WhatsApp float */
.wsp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1200;
  width:60px;
  height:60px;
  border-radius:999px;
  background:var(--accent);
  color:#06210f;
  display:grid;
  place-items:center;
  box-shadow:0 14px 32px rgba(0,0,0,.35);
  animation:pulse 1.9s infinite;
}

.wsp-float .wa-icon{
  width:28px;
  height:28px;
}

@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.06);
  }
  100%{
    transform:scale(1);
  }
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(0,0,0,.86);
}

.lightbox.is-open{
  display:flex;
}

.lightbox-content{
  position:relative;
  width:min(980px, 100%);
  max-height:92vh;
  display:grid;
  place-items:center;
}

.lightbox-img{
  max-width:100%;
  max-height:86vh;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  background:#fff;
}

.lightbox-close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#111;
  cursor:pointer;
  font-size:1.4rem;
  font-weight:900;
  box-shadow:var(--shadow);
}

/* Responsive */
@media (max-width:1100px){
  .hero{
    min-height:72vh;
  }

  .agenda-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid-large{
    grid-template-columns:repeat(3, 1fr);
  }

  .gallery-grid-small{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width:960px){
  .grid-blog,
  .benefits-grid,
  .category-grid,
  .trust-grid,
  .footer-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .category-card-wide{
    grid-column:auto;
    display:block;
  }

  .category-card-wide .category-media img{
    height:auto;
    aspect-ratio:16/12;
  }

  .trust-item{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.06);
  }

  .trust-item:last-child{
    border-bottom:none;
  }

  .gallery-grid,
  .gallery-grid-large,
  .gallery-grid-small{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:860px){
  html{
    scroll-padding-top:92px;
  }

  .nav-toggle{
    display:flex;
  }

  .main-nav{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:rgba(8,8,8,.98);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:14px var(--container);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .main-nav.is-open{
    display:flex;
  }

  .main-nav a{
    border-radius:14px;
    padding:14px 16px;
  }

  .main-nav .nav-cta{
    text-align:center;
  }

  .hero-content{
    padding:82px 0 58px;
  }

  .hero h1{
    max-width:12ch;
  }
}

@media (max-width:640px){
  .site-header .nav-wrap{
    min-height:76px;
  }

  .brand-logo{
    height:46px;
  }

  .tagline{
    font-size:.72rem;
  }

  .hero{
    min-height:86vh;
  }

  .hero h1{
    font-size:clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-copy{
    font-size:1rem;
  }

  .hero-actions,
  .agenda-actions,
  .contact-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn,
  .btn-instagram{
    width:100%;
  }

  .section{
    padding:68px 0;
  }

  .gallery-tabs{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:8px;
  }

  .gallery-tab{
    white-space:nowrap;
  }

  .gallery-grid,
  .gallery-grid-large,
  .gallery-grid-small{
    grid-template-columns:1fr;
  }

  .gallery-item img,
  .gallery-grid-large .gallery-item img,
  .gallery-grid-small .gallery-item img{
    height:420px;
  }

  .blog-thumb{
    height:220px;
  }

  .car-btn{
    width:42px;
    height:42px;
  }

  .car-item{
    padding:12px;
  }

  .wsp-float{
    width:56px;
    height:56px;
    right:14px;
    bottom:14px;
  }

  .lightbox{
    padding:14px;
  }

  .lightbox-close{
    top:8px;
    right:8px;
  }
}

@media (max-width:420px){
  .gallery-item img,
  .gallery-grid-large .gallery-item img,
  .gallery-grid-small .gallery-item img{
    height:360px;
  }

  .hero-points li{
    width:100%;
    text-align:center;
  }
}