/*
Theme Name: Sky Rock
Template: hello-elementor
Author: Yankenpo
Version: 1.0.2
*/


:root {
    --skyrock-blue: #0057a8;
    --skyrock-blue-dark: #044792;
    --skyrock-black: #111111;
    --skyrock-text: #222222;
    --skyrock-muted: #6d6d6d;
    --skyrock-border: #e5e5e5;
    --skyrock-light: #f7f7f7;
    --skyrock-white: #ffffff;
}

body {
  color: #001328;
  background-color: #f7f7f7;
  box-sizing: border-box;
}

/************************************************/
/******************** HEADER ********************/
/************************************************/

#main-header {
  transition: all .4s ease;
  display: flex;
}

#main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #001328af;
  color: white;
}

#main-header.sticky .nav-links a {
  color: white;
}

/***** HEADER *****/
.navbar {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  margin: auto;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.6);
  
}

#main-header .nav-inner {
  display: flex;
  justify-content: space-between;
  width: 98%;
  margin: auto;
  align-items: center;
  color: black;
}

#main-header .nav-inner button {
  border: 2px solid black;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  background: var(--skyrock-blue-dark);
  font-weight: 600;
  color: #fff;
}

#main-header .nav-inner button:hover {
  color: #fa8a42;
}

#main-header .menu-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 57%;
}

#main-header .menu-mobile {
    display: none;
}

#main-header .nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  color: black;
}

#main-header .nav-links a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--skyrock-blue-dark);
  transition: all .4s ease;
}

#main-header .nav-links a:hover {
  color: #fa8a42;
}

#main-header.sticky .nav-inner button {
  border-color: white;
}

#main-header.sticky .nav-inner button .arrow-top {
  fill: #ffffff;
}

.arrow-top {
  width: 20px;
  height: 16px;
  transition: all .2s ease;
  fill: #044792;
}

#main-header .nav-inner button .arrow-top {
  fill: #ffffff;
}

:is(#main-header,
  #main-header.sticky) .nav-inner button:hover .arrow-top {
  fill: rgb(250, 138, 66);
}

#main-header .menu-mobile-toggle {
    display: none;
    z-index: 5;
}

@media(max-width: 1024px) {
    #main-header .menu-desktop {
        display: none;
    }
    
    #main-header .menu-mobile {
        transition: opacity .4s ease, transform .4s ease;
        opacity: 0;
        transform: translateX(-110%);
        z-index: 6;
    }
    
    #main-header .menu-mobile.active {
        display: flex;
        align-items: flex-end;
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, .4);
        width: 100%;
        height: 100%;
        opacity: 1;
        transform: translateX(0);
    }
    
    #main-header .menu-mobile-toggle {
        display: block;
    }
    
    #main-header .menu-mobile.active .content-menu-mobile {
        width: clamp(180px, 70%, 300px);
        padding: 20px;
        background: #FAFAFA;
        height: 100%;
        z-index: 10;
    }
    
    #main-header .menu-mobile.active .content-menu-mobile > nav > .nav-links {
        display: flex;
        flex-direction: column;
        gap: 10px
    }
    
    #main-header .nav-inner .menu-mobile.active button {
        margin: 20px auto;
    }
    
    #main-header.sticky .menu-mobile.active .nav-links :is(a, svg) {
        color: var(--skyrock-blue-dark);
    }
    
    #main-header.sticky .nav-inner button .arrow-top {
        
    }
}

/*************************************************/
/************** Efecto Store telling *************/
/*************************************************/

.store-telling {

  height: 500vh;
  position: relative;
  color: #161616;

}

.store-telling .sticky-card {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  margin: auto;
  border-radius: 0px;
  background: #d1d1d1;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition:
    border-radius .4s;
}

.store-telling .slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.store-telling .slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(80px);
  transition: .5s;
  padding: 30px 50px
}

.store-telling .slide::after {
  content: '';
  background: rgba(0, 0, 0, .5);
  position: absolute;
  inset: 0;
  height: 100%;
}

.store-telling .slide.active {
  opacity: 1;
  transform: none;
}

.store-telling .slide h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.store-telling .slide>*:not(.mask) {
  z-index: 3;
  width: 60%;
}

.store-telling:is(.slide.aerospace-slide,
  .slide.automotive-slide) .mask {
  background: linear-gradient(90deg, rgba(60, 0, 3, 0.85) 0%, rgba(60, 0, 3, 0.85) 45%, transparent 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 1
}

.store-telling:is(.slide.manufacture-slide,
  .slide.logistics-and-distribution-center-slide) .mask {
  background: linear-gradient(90deg, rgba(22, 22, 22, 0.9) 0%, rgba(22, 22, 22, 0.9) 45%, transparent 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 1
}

.store-telling .slide p {
  font-size: 15px;
}

.store-telling .slide button {
  color: white;
  padding: 14px 20px;
  width: clamp(180px, 4vw, 260px);
  border: 0px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  font-size: 20px;
  background-color: transparent;

}

.store-telling .slide .mini-galery {
  margin: 30px 0px 20px;
  width: 100%;
  display: flex;
  gap: 15px;
}

.store-telling .slide .mini-galery .image-complete {
  width: 110px;
}

.store-telling .slide .mini-galery .image-complete img {
  width: 100%;
}

.store-telling .slide.slide-1 {
  background: url(https://skyrock.pe/wp-content/uploads/2026/08/banner-home.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.store-telling .slide.slide-2 {
  background: url(https://skyrock.pe/wp-content/uploads/2026/07/pexels-caio-mantovani-97605853-28122111-scaled.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.store-telling .slide.slide-3 {
  background: url(/wp-content/uploads/2026/07/etst-scaled.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.store-telling .slide.slide-4 {
  background: url(/wp-content/uploads/2026/07/pexels-jonathanborba-9976121-scaled.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.store-telling .slide.slide-5 {
  background: url(/wp-content/uploads/2026/07/pexels-caio-mantovani-97605853-28122111-scaled.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.store-telling .slide:is(.slide.slide-2,
  .slide.slide-3,
  .slide.slide-4,
  .slide.slide-5) {
  height: 90%;
}



.hero-products {
  margin-top: -20px;
}

.hero-products .slide {
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-products .slide.slide-1 {
  height: 78vh;
}

.hero-products .slide .container-meta-slide {
  width: clamp(260px, 90%, 420px);
  margin: 0px 0px 0px 30px;
  z-index: 1;
}

.hero-products .slide .container-meta-slide>h1 {
  font-size: clamp(20px, 5vw, 38px);
}

.hero-products .slide .container-meta-slide p {
  font-size: 14px;
}

.hero-products .slide .container-meta-slide button {
  width: 120px;
  background: transparent;
  padding: 10px 0px;
  border: none;
  border-bottom: 2px solid #161616;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .4s ease;
  color: var(--skyrock-blue-dark);
}

.hero-products .slide .container-meta-slide button:hover {
  color: #fa8a42;
}

.hero-products .slide.slide-1 {
  background: url(/wp-content/uploads/2026/07/home-banner-1-scaled.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-products .slide.slide-2 {
  background: url(/wp-content/uploads/2026/07/Stacked_drywall_boards_on_concrete_202607131329-scaled.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-products .slide.slide-3 {
  background: url(/wp-content/uploads/2026/07/installing-metal-frames-drywall-gypsum-walls-construction-renovation-proces.jpg-scaled.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-products .slide.slide-4 {
  background: url(/wp-content/uploads/2026/07/Drywall_finishing_materials_on_c…_202607131333-scaled.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-products .slide.slide-5 {
  background: url(/wp-content/uploads/2026/07/Drywall_screws_on_concrete_surface_202607131341-scaled.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-products .slide:is(.slide.slide-2,
  .slide.slide-3,
  .slide.slide-4,
  .slide.slide-5) {
  min-height: 28vh;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  justify-content: center;
  padding: 20px 0px;
}

.hero-products .slide:is(.slide.slide-2,
  .slide.slide-3,
  .slide.slide-4,
  .slide.slide-5)::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0) !important;
  z-index: 0;
}

.hero-products .slide .container-meta-slide>h2 {
  margin: 0px;
  margin-bottom: 6px;
  font-size: 32px;
}

.hero-products .slide:is(.slide.slide-2,
  .slide.slide-3,
  .slide.slide-4,
  .slide.slide-5) p {
  font-size: 14px;
  margin: 18px 0px 4px;
}

@media(max-width: 768px) {
  .store-telling .slide {
    padding: 20px 20px;
  }

  .store-telling :is(.slide.aerospace-slide,
    .slide.automotive-slide) .mask {
    background: rgba(60, 0, 3, 0.4);
  }

  .store-telling :is(.slide.manufacture-slide,
    .slide.logistics-and-distribution-center-slide) .mask {
    background: rgba(22, 22, 22, 0.5);
  }

  .store-telling .slide>*:not(.mask) {
    width: 100%;
  }

  .store-telling .slide p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .store-telling .slide .mini-galery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
  }
}

.stats-enterprise {
  width: calc(100% - 0px);
  min-height: 150px;
  padding: 20px;
  background-color: #001328;
  display: grid;
  justify-content: center;
  align-items: center;
}

.stats-enterprise * {
  color: white;
}

.stats-enterprise>.content-stats-enterprise {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 95vw;
  gap: 15px;
}

.stats-enterprise .stat {
  font-size: 60px;
  display: block;
}

.stats-enterprise .container-stat {
  color: #848484;
  font-size: 15px;
  text-align: center;
}

.stats-enterprise .container-stat:not(:last-child) {
  text-align: center;
  font-size: 16px;
  border-right: 1px solid rgba(255, 255, 255, .5);
}


.projects {
  width: 100%;
  background: #fff;
}

.projects-grid {

  display: grid;
  grid-template-columns: 360px 1fr;

  min-height: 330px;
}

.project-info {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* padding: 60px; */

  border-right: 1px solid #ececec;
}

.project-info>.info {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.project-info h2 {

  font-size: 30px;
  line-height: 1.15;
  font-weight: 400;
  color: #111;
}

.project-info button {
  border: none;
  border-bottom: 2px solid black;
  background: transparent !important;
  font-weight: 600;
  transition: all .4s ease;
  color: var(--skyrock-blue-dark);
}

.project-info button:hover {
  color: #fa8a42;
}

.projects-galery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 25%));
  place-content: center;
}

.btn-projects {

  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;

  color: #111;

  border-bottom: 1px solid #111;

  width: max-content;

  padding-bottom: 8px;
}

.project-image {

  overflow: hidden;

  border-right: 1px solid #ececec;
}

.project-image:last-child {
  border-right: none;
}

.project-image img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: .4s;
}

.project-image:hover img {

  transform: scale(1.05);
}

@media(max-width:991px) {

  /*   .projects-grid {

    grid-template-columns: 1fr 1fr;
  }

  .project-info {

    grid-column: 1 / -1;
  } */

  .project-image {

    height: 260px;
  }

}

@media(max-width:576px) {

  .projects-grid {

    grid-template-columns: 1fr;
  }

  .project-image {

    height: 220px;
  }

  .project-info {

    padding: 40px 30px;
  }

  .project-info h2 {

    font-size: 32px;
  }

}

/* ===========================
   MARCAS
=========================== */

.brands {

  display: grid;
  grid-template-columns: 280px 1fr;

  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;

  background: #fff;
}

.brands-title {

  padding: 45px 55px;

  display: flex;
  align-items: center;

  border-right: 1px solid #ececec;
}

.brands-title h3 {

  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--skyrock-blue-dark);
}

.brands-logos {

  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;

  gap: 20px;

  padding: 40px;
}

.brands-logos img {

  /*max-width: 300px;*/
  width: clamp(120px, 25%, 300px);;
  opacity: .75;

  transition: .3s;
}

.brands-logos img:hover {

  opacity: 1;
}


/* ===========================
   CTA
=========================== */

.contact-cta {

  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  align-items: center;

  padding: 70px 55px;

  background: #fff;
}

.cta-title h2 {

  font-size: 50px;

  font-weight: 400;

  line-height: 1.08;

  color: #111;
}

.cta-text {

  font-size: 16px;

  line-height: 1.7;

  color: #555;

  max-width: 320px;
}

.cta-button {

  display: flex;

  justify-content: flex-end;
}

.cta-button button {
  border: none;
  border-bottom: 2px solid black;
  padding: 10px;
  transition: all .4s ease;
  color: var(--skyrock-blue-dark);
  background-color: transparent;
  font-weight: 600;
}

.cta-button button:hover {
  background-color: transparent !important;
  color: #fa8a42;
}

@media (max-width:991px) {

  .brands {

    grid-template-columns: 1fr;
  }

  .brands-title {

    border-right: none;
    border-bottom: 1px solid #ececec;
  }

  .brands-logos {

    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-cta {

    grid-template-columns: 1fr;

    gap: 40px;

    text-align: center;
  }

  .cta-title h2 {

    font-size: 42px;
  }

  .cta-text {

    max-width: 100%;
  }

  .cta-button {

    justify-content: center;
  }

}

@media (max-width:576px) {

  .brands-logos {

    gap: 25px;
  }

  .brands-logos img {

    max-width: 90px;
  }

  .cta-title h2 {

    font-size: 34px;
  }

}


/************************************************/
/******************** FOOTER ********************/
/************************************************/

.footer {
  background: #001328;
  color: #fff;
}

.footer-container {

  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;

  gap: 40px;

  padding: 80px 40px;
}

.footer-logo {

  width: 180px;
  margin-bottom: 30px;
}

.footer-col p {

  color: #bdbdbd;
  line-height: 1.9;
  margin-bottom: 40px;
}

.footer-col h4 {

  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 30px;
}

.footer-col .footer-nav {
    display: flex;
    gap: 20px;
}

.footer-col .footer-nav > ul > li > ul {
    margin-top: 20px;
}

.footer-col ul {

  list-style: none;
  padding: 0;
}

.footer-col li {

  margin-bottom: 18px;
}

.footer-col a {

  color: #bdbdbd;
  text-decoration: none;
  transition: .3s;
}

.footer-col a:hover {

  color: #fff;
}

.mt {

  margin-top: 50px;
}

.socials {

  display: flex;
  gap: 18px;
}

.socials a {

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, .15);

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 18px;
}

.socials a:hover {

  background: #fff;
  color: #111;
}

.contact-list li {

  color: #bdbdbd;
  line-height: 1.8;
}

.footer-bottom {

  border-top: 1px solid rgba(255, 255, 255, .08);

  padding: 30px 40px;

  max-width: 1400px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #9f9f9f;
}

.footer-bottom div {

  display: flex;
  gap: 40px;
}

.footer-bottom a {

  color: #9f9f9f;
  text-decoration: none;
}

.footer-bottom a:hover {

  color: #fff;
}


@media(max-width:991px) {

  .footer-container {

    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {

    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom div {

    flex-direction: column;
    gap: 15px;
  }

}

@media(max-width:640px) {

  .footer-container {

    grid-template-columns: 1fr;
  }

}

/*
==============================================
FORM-FOOTER
==============================================
*/

.about-cta{

    padding: 0px 0;
    margin: -181px auto -50px;
    z-index: 5;
    position: relative;
    width: 92vw;

}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #161616;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.cta-content{
    max-width:650px;
    width: 55%;
}

.cta-content h2{

    font-size:1.6rem;

    line-height:1.1;

    margin:18px 0 24px;

}

.cta-content p{

    color:rgba(255,255,255,.85);

}

.cta-actions{

    display: grid;

    /*flex-direction:column;*/

    gap: 12px;

    min-width:260px;
    
    width: 40%;
    
    grid-template-areas: 
        "formName formName"
        "formEmail formCellphone"
        "formSummary formSummary"
    ;

}

.cta-actions .form-group {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
}

.cta-actions .form-group.form-group-name {
    grid-area: formName;
}

.cta-actions .form-group.form-group-email {
    grid-area: formEmail;
}

.cta-actions .form-group.form-group-cellphone {
    grid-area: formCellphone;
}

.cta-actions .form-group.form-group-summary {
    grid-area: formSummary;
}

.cta-actions .form-group > label {
    margin-bottom: 10px;
}

.cta-actions .form-group > :is(input, textarea) {
    border-radius: 8px;
    background: #161616;
    color: white;
}

.cta-actions .form-group > textarea {
    height: 60px;
}






/* =====================================================
GENERAL
===================================================== */

.single-product-page {

  width: 100%;

  background: #fff;

}

/* =====================================================
HERO
===================================================== */

.product-hero {

  padding: 60px 8%;

  border-bottom: 1px solid #ececec;

}

.back-products {

  display: inline-block;

  margin-top: 20px;

  color: #111;

  text-decoration: none;

}

/* =====================================================
PRODUCTO
===================================================== */

.product-container {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  padding: 70px 8%;

}

.product-gallery {

  display: flex;

  flex-direction: column;

}

.main-image {

  background: #f8f8f8;

  border: 1px solid #ececec;

}

.main-image img {

  width: 100%;

  display: block;

}

.gallery-thumbnails {

  display: flex;

  gap: 15px;

  margin-top: 20px;

}

.gallery-thumbnails img {

  width: 90px;

  height: 90px;

  object-fit: cover;

  border: 1px solid #ddd;

  cursor: pointer;

}

/* =====================================================
INFO
===================================================== */

.product-category {

  display: block;

  margin-bottom: 15px;

  color: #888;

  font-size: .85rem;

  text-transform: uppercase;

  letter-spacing: 1px;

}

.product-information h1 {

  margin: 0;

  font-size: 3rem;

  font-weight: 500;

}

.product-price {

  margin: 30px 0;

  font-size: 2rem;

  font-weight: bold;

}

.product-sku {

  margin-bottom: 20px;

  color: #777;

}

.short-description {

  line-height: 1.8;

  color: #555;

}

.btn-quote {

  display: inline-flex;

  margin-top: 40px;

  padding: 18px 35px;

  background: #111;

  color: white;

  text-decoration: none;

  transition: .3s;

}

.btn-quote:hover {

  background: #444;

}

/* =====================================================
DESCRIPCIÓN
===================================================== */

.product-description {

  padding: 80px 8%;

  border-top: 1px solid #ececec;

}

.section-title {

  margin-bottom: 40px;

}

.section-title h2 {

  font-size: 2rem;

  font-weight: 500;

}

.description {

  max-width: 900px;

  line-height: 2;

  color: #555;

}

/* =====================================================
ESPECIFICACIONES
===================================================== */

.product-specifications {

  padding: 80px 8%;

}

.specifications-table {

  border-top: 1px solid #ddd;

}

.spec-row {

  display: grid;

  grid-template-columns: 250px 1fr;

  padding: 18px 0;

  border-bottom: 1px solid #ececec;

}

.label {

  font-weight: 600;

}

.value {

  color: #555;

}

/* =====================================================
RELACIONADOS
===================================================== */

.related-products {

  padding: 90px 8%;

}

.related-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

}

.related-card {

  border: 1px solid #ececec;

  transition: .35s;

  background: #fff;

}

.related-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.related-card a {

  text-decoration: none;

  color: inherit;

}

.related-card .image {

  aspect-ratio: 1;

  background: #fafafa;

}

.related-card img {

  width: 100%;

  height: 100%;

  object-fit: contain;

}

.related-card .content {

  padding: 20px;

}

.related-card h3 {

  margin: 15px 0;

  font-size: 1.15rem;

}

/* =====================================================
CTA
===================================================== */

.single-product-cta {

  margin-top: 80px;

  padding: 90px 8%;

  background: #151515;

  color: white;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 50px;

}

.single-product-cta span {

  letter-spacing: 2px;

  color: #999;

}

.single-product-cta h2 {

  margin: 20px 0;

  font-size: 2.6rem;

}

.single-product-cta p {

  max-width: 650px;

  line-height: 1.8;

  color: #d5d5d5;

}

.single-product-cta a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 35px;

  border: 1px solid white;

  color: white;

  text-decoration: none;

  transition: .3s;

}

.single-product-cta a:hover {

  background: white;

  color: #111;

}

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

@media(max-width:1100px) {

  .product-container {

    grid-template-columns: 1fr;

  }

  .related-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media(max-width:768px) {

  .related-grid {

    grid-template-columns: 1fr;

  }

  .spec-row {

    grid-template-columns: 1fr;

    gap: 10px;

  }

  .single-product-cta {

    flex-direction: column;

    align-items: flex-start;

  }

  .product-information h1 {

    font-size: 2.2rem;

  }

}

/***********************************/
/********** PARA BANNERS ***********/
/***********************************/

.hero-products {
    position: relative;
}

.hero-products > * {
    position: sticky;
    top: 0;

    height: var(--banner-height, 25vh);

    overflow: hidden;
}


/********************************************/
/********** PARA SINGLE PAGE BLOG ***********/
/********************************************/

.image-blog-btn {
	min-height: 420px !important;
	height: 40vh !important;
	max-height: 500px !important;
}
