
body {
  overflow-x: hidden;
  background: var(--gray-100);
  color: var(--text-black);
  font-family: 'Barlow', sans-serif;
  background: linear-gradient(180deg, var(--page-bg-top) 0%, var(--page-bg-middle) 40%, var(--page-bg-bottom) 100%);
  background-image:
    radial-gradient(circle at top, var(--page-bg-radial-overlay), transparent 60%),
    repeating-linear-gradient(
      45deg,
      var(--page-bg-line-overlay),
      var(--page-bg-line-overlay) 1px,
      transparent 1px,
      transparent 6px
    );
}

a {
  color: var(--gray-500);
}
a:hover, a:focus {
    color: var(--theme-primary-strong);
}
h1, h2 {
  text-transform: uppercase;
  color: var(--gray-900);
  font-family: 'Barlow', sans-serif;
}

h3,
h4 {
  color: var(--gray-800);
  font-family: 'Barlow', sans-serif;
}

p {
  color: var(--gray-600);
  font-family: 'Barlow', sans-serif;
}

form label {
  color: var(--gray-800);
  font-family: 'Barlow', sans-serif;
}

form .form-control {
  border-radius: 6px;
}

.amarillo {
  color: var(--yellow-400) !important;
}

.amarillo:hover {
  color: var(--black) !important;
}

/* ---------------------------------------------------------------------- */
/* IMAGENES */
/* ---------------------------------------------------------------------- */
.image-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: auto;
}

.image-container:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* ---------------------------------------------------------------------- */
/* HEADER */
/* ---------------------------------------------------------------------- */
header {
  margin-bottom: 0;
}

header .topbar {
  background: var(--surface-gray-4);
  color: var(--white);
}

header .navbar {
  border-bottom: 1px solid var(--alpha-shadow-12);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 15px;
  background: var(--black);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0;
  padding: 10px 0 20px 0;
}

.navbar-nav {
  margin-top: 13px;
  margin-left: 25px;
}

header .navbar .navbar-header .navbar-toggle {
  background: var(--surface-gray-4);
}

header .navbar .navbar-nav li a {
  color: var(--white);
}

header .navbar .navbar-nav li a:hover,
header .navbar .navbar-nav li.active a {
  color: var(--theme-primary-strong);
}

header .navbar .navbar-nav .dropdown ul li.active a,
header .navbar .navbar-nav .dropdown ul li a:hover {
  color: var(--white);
  background: var(--surface-gray-4);
}

header .navbar .navbar-form .advanced:hover,
header .navbar .navbar-form .advanced.active {
  background-color: var(--surface-gray-4);
  border-color: var(--surface-gray-4);
  color: var(--white);
}

header .navbar .navbar-form .form-group .input-group-btn .btn,
header .subbar #carousel-top .offer span strong,
header .subbar #carousel-top .carousel-control:hover {
  color: var(--surface-gray-4);
}

header .subbar #carousel-top .offer:hover,
header .subbar #carousel-top .offer:hover span {
  background: var(--surface-gray-4);
  color: var(--white);
}

header .subbar #carousel-top .offer:hover span strong {
  color: var(--white);
}

/* ---------------------------------------------------------------------- */
/* BOTONES */
/* ---------------------------------------------------------------------- */
.btn:hover {
  background: var(--surface-gray-4);
  border-color: var(--surface-gray-4);
}

.btn.alt:hover {
  color: var(--surface-gray-4);
}

.btn.btn-navigation:hover {
  background: var(--surface-gray-4);
  color: var(--white);
}

.btn.red {
  font-family: 'Barlow', sans-serif;
  margin-top: 10px;
  padding: 10px 20px;
  color: var(--white);
  background: var(--red-600);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn.red:hover {
  background: var(--white);
  color: var(--red-600);
  border: none;
}

/* ---------------------------------------------------------------------- */
/* ACORDEONES / PANELES / CARRUSELES GENERICOS */
/* ---------------------------------------------------------------------- */
.panel.panel-accordion .panel-heading .panel-title .badge {
  background: none;
  color: var(--surface-gray-4);
}

.panel.panel-accordion .panel-heading:hover {
  background: var(--surface-gray-4);
}

.panel.panel-accordion .panel-heading:hover a,
.panel.panel-accordion .panel-heading:hover .badge i,
.fullsize .panel.panel-accordion .panel-heading:hover a span.colorletter {
  color: var(--white);
  text-decoration: none;
}

.fullsize .panel.panel-accordion .panel-heading .panel-title span.colorletter {
  color: var(--surface-gray-4);
}

.carousel-control:hover,
.carousel-control:focus {
  background: var(--surface-gray-4);
  color: var(--white);
}

.carousel.carousel-thumb ol li.active {
  border: 3px solid var(--surface-gray-4);
}

.progress .progress-bar {
  background-color: var(--surface-gray-4);
  background-image: none;
  color: var(--white);
}

/* ---------------------------------------------------------------------- */
/* TABS */
/* ---------------------------------------------------------------------- */
.nav-tabs > li > a {
  background: var(--surface-gray-4);
  border: 1px solid var(--surface-border-tab);
  color: var(--white);
}

.nav-tabs.alt > li > a:hover {
  background: var(--surface-gray-4);
  color: var(--white);
}

.nav-tabs.alt > li.active > a,
.nav-tabs.alt > li.active > a:hover {
  background: var(--black);
  color: var(--surface-gray-4);
}

.tab-content {
  background: var(--surface-gray-1);
  padding: 5px;
}

.tab-content.alt {
  background: var(--black);
  border: 1px solid var(--surface-border-soft);
}

.tab-content h4,
.tab-content p {
  color: var(--white);
}

blockquote {
  background: var(--surface-gray-1);
  border-left: 3px double var(--surface-gray-4);
  color: var(--text-blockquote);
}

/* ---------------------------------------------------------------------- */
/* FICHA PRECIO / BONO */
/* ---------------------------------------------------------------------- */
.tags.price {
  background: var(--red-600);
  color: var(--white);
  float: left;
}

.tags.price.tachado {
  text-decoration: line-through;
}

.tags.price span {
  border-bottom: 20px solid transparent;
  border-right: 15px solid var(--red-600);
  border-top: 20px solid transparent;
}

.tags.bono {
  font-size: 1.8em;
  font-weight: 600;
  height: 40px;
  line-height: 40px;
  margin: 20px 0 0 20px;
  padding: 0 10px;
  position: relative;
  background-color: var(--red-500);
  color: var(--yellow-400);
  float: left;
}

.tags.bono span {
  display: block;
  height: 0;
  left: -15px;
  position: absolute;
  top: 0;
  width: 0;
  border-bottom: 20px solid transparent;
  border-right: 15px solid var(--red-500);
  border-top: 20px solid transparent;
}

#segundalinea {
  font-weight: normal;
  height: 0px;
  display: block;
}

#segundalinea .precioconbono {
  font-size: 1.1em;
  font-weight: 500;
  color: var(--brand-primary);
}

/* ---------------------------------------------------------------------- */
/* GRID */
/* ---------------------------------------------------------------------- */
.grid .item-grid {
  border-radius: 12px;
  border: none;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  background: var(--gray-950);
}

.grid .item-grid.fade-in {
  opacity: 1;
}

.grid .item-grid p {
  font-size: 1em;
  font-family: 'Barlow', sans-serif;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: var(--black);
  background-color: var(--surface-border-soft);
  margin-top: 0;
}

.grid .item-grid .precio,
.grid .item-grid .kms,
.grid .item-grid .agno {
  background: var(--gray-950);
  color: var(--white);
}

.grid .item-grid .precio {
  border-left: 0;
  font-size: 1.3em;
}

.grid .item-grid .bono {
  text-decoration: line-through var(--red-500);
}

.grid .item-grid .more {
  background: var(--alpha-white-30);
}

.grid .item-grid .ribbonbono {
  background-image: url("https://www.piretta.cl/img/home/regalo10.png?1");
  background-size: 80px 80px;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  z-index: 2;
}

/* ---------------------------------------------------------------------- */
/* OTROS COMPONENTES */
/* ---------------------------------------------------------------------- */
#carousel-testimonials .testimonials-item .img {
  border: 5px solid var(--surface-gray-4);
  color: var(--surface-gray-4);
}

#carousel-testimonials .testimonials-item span {
  border: 6px solid var(--surface-gray-4);
}

#carousel-testimonials .testimonials-item strong {
  color: var(--surface-gray-4);
}

#carousel-testimonials .carousel-control:hover {
  background: var(--surface-gray-4);
  color: var(--white);
}

.flickr-feed li:hover {
  border: 3px solid var(--surface-gray-4);
  margin: 1.5px;
}

.bannercontainer .caption p > span {
  background: var(--surface-gray-4);
}

.bannercontainer .caption p > span > span {
  border: 30px solid var(--surface-gray-4);
}

.bannercontainer .tp-bullets.simplebullets.round .bullet {
  background-image: url("bulletPIRETTA.png");
}

aside h3 span,
aside i,
#carousel-car-model .carousel-control,
.glyphicon,
#snews #carousel-recent-posts .carousel-control:hover,
.team footer a:hover,
.manager footer a:hover,
#car #carousel-interested .carousel-control:hover {
  color: var(--surface-gray-4);
}

#carousel-car-model .model.active {
  border: 2px solid var(--surface-gray-4);
}

.container-comments .single-comment img {
  background: var(--surface-gray-4);
}

.container-comments .single-comment h4 a:hover,
#snews #carousel-recent-posts .recent-posts a:hover,
.post h3 a:hover,
.post footer .tags a:hover,
.post footer .learnmore:hover {
  color: var(--surface-gray-4);
  text-decoration: none;
}

.form-search .group-options button[type=submit]:hover,
.pricing-table ul li .btn:hover,
.pricing-table.active .price,
.pricing-table:hover .price,
#carousel-services .carousel-control:hover,
#asearch .btn.alt:hover {
  background: var(--surface-gray-4);
  color: var(--white);
}

#carousel-services .services-item .ico {
  border: 5px solid var(--surface-gray-4);
  color: var(--surface-gray-4);
}

#carousel-services .services-item:hover .ico {
  border-color: var(--white);
  -webkit-box-shadow: 0 0 0 7px var(--surface-gray-4);
  box-shadow: 0 0 0 7px var(--surface-gray-4);
}

.pricing-tables-helight .price,
.button.small.colorchan {
  background-color: var(--surface-gray-4);
  color: var(--white);
}

/* ---------------------------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------------------------- */
footer {
  margin-top: 0;
}

footer h2 {
  font-size: 1.5em;
  margin-top: 30px;
}

footer p {
  font-size: 1.3em;
  text-align: center;
}

footer .middlefoot {
  border-top: 1px solid var(--brand-primary-strong);
  background: radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(255, 255, 255, 0.25),
      transparent 70%
    ),
    var(--black);
}

footer .middlefoot .bread-top a:hover,
footer .middlefoot ul li a:hover,
footer .middlefoot ul li i,
footer .middlefoot .about a:hover,
footer .middlefoot .recent-news:hover a {
  color: var(--surface-gray-4);
}

footer .middlefoot ul li a {
  color: var(--white);
}

footer .middlefoot .recent-news:hover a {
  text-decoration: none;
}

footer .middlefoot .recent-news:hover div .post-icon {
  background: var(--surface-gray-4);
}

footer .middlefoot ul.hours li {
  font-size: 1.3em;
}

.calugas {
  margin: auto;
  margin-top: 0;
  text-align: center;
  background: var(--black);
  padding: 0 0 20px 0;
}

.calugas img {
  margin-top: 5px;
  width: 100%;
  padding: 1px;
  background: var(--white);
}

/****************************** Pagination *********************************/
.paginacion A {
  color: var(--gray-950);
  background-color: var(--gray-220);
  border-right: 1px solid var(--surface-border-tab);
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.paginacion A:hover {
  background-color: var(--gray-150);
}

.paginacion A.jp-current,
A.jp-current:hover {
  background-color: var(--surface-gray-4);
  border: 1px solid var(--surface-gray-4);
  color: var(--white);
}

.paginacion A.jp-disabled,
A.jp-disabled:hover {
  color: var(--gray-600);
}

/****************************** LIST GROUP2 *********************************/
.list-group2 .list-group2-item {
  width: 100%;
  float: left;
  background: none;
  border: none;
  font-size: 0.8em;
  margin: 0;
  padding: 7px;
}

.list-group2 .list-group2-item i {
  color: var(--brand-primary);
}

.list-group2 li {
  list-style: none;
}

/****************************** PIE *********************************/
.columna-pie {
  float: left;
  width: 25%;
}

.columna-pie a {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--text-main);
}

/* ---------------------------------------------------------------------- */
/* RESPONSIVE */
/* ---------------------------------------------------------------------- */
@media handheld, only screen and (max-width: 992px) {
  .grid .item-grid .more {
    background: transparent;
  }
}

@media handheld, only screen and (max-width: 768px) {
  header .navbar {
    margin-bottom: 0;
    position: relative;
  }

  .navbar-nav {
    text-align: right;
    margin-right: 15px;
  }
}

@media handheld, only screen and (max-width: 600px) {
  .grid .item-grid .more {
    background: transparent;
  }

  .columna-pie {
    width: 50%;
    height: 130px !important;
    overflow: hidden;
  }

  #segundalinea .precioconbono {
    font-size: 1.4em;
  }
}

@media handheld, only screen and (max-width: 400px) {
  .grid .item-grid .more {
    background: transparent;
  }

  .columna-pie {
    width: 50%;
    height: 130px !important;
    overflow: hidden;
  }
}

/* -------------------------------------------------------------- */
/* PARA 3 COLUMNAS                                                */
/* -------------------------------------------------------------- */
.grid .item-grid {
  width: 367px;
  height: 344px;
}

.grid .item-grid img {
  width: 367px;
  height: 275px;
}

.grid .item-grid .at {
  top: 240px;
}

.grid .item-grid .ribbon2 {
  top: 256px;
}

@media handheld, only screen and (max-width: 2500px) {
  .grid .item-grid {
    width: 378px;
    height: 358px;
  }

  .grid .item-grid img {
    width: 378px;
    height: 283px;
  }

  .grid .item-grid .at {
    top: 243px;
  }

  .grid .item-grid .ribbon2 {
    top: 256px;
  }
}

@media handheld, only screen and (max-width: 1200px) {
  .grid .item-grid {
    width: 310px;
    height: 293px;
  }

  .grid .item-grid img {
    width: 310px;
    height: 232px;
  }

  .grid .item-grid .at {
    top: 192px;
  }

  .grid .item-grid .ribbon2 {
    top: 216px;
  }
}

@media handheld, only screen and (max-width: 992px) {
  .grid .item-grid {
    width: 320px;
    height: 300px;
  }

  .grid .item-grid img {
    width: 320px;
    height: 240px;
  }

  .grid .item-grid .at {
    top: 200px;
  }

  .grid .item-grid .ribbon2 {
    top: 216px;
  }

  .grid .item-grid p {
    font-size: 0.85em;
  }

  #segundalinea {
    font-size: 0.75em;
  }

  #celdaauto .precio,
  #celdaauto .kms,
  #celdaauto .agno {
    font-size: 1em;
  }

  #celdaauto:hover .precio,
  #celdaauto:hover .kms,
  #celdaauto:hover .agno {
    font-size: 1.1em;
  }
}

@media handheld, only screen and (max-width: 768px) {
  .grid .item-grid {
    width: 320px;
    height: 300px;
  }

  .grid .item-grid img {
    width: 320px;
    height: 240px;
  }

  .grid .item-grid .at {
    top: 200px;
  }

  .grid .item-grid .ribbon2 {
    top: 216px;
  }
}

@media handheld, only screen and (max-width: 600px) {
  .grid .item-grid {
    width: 320px;
    height: 300px;
  }

  .grid .item-grid img {
    width: 320px;
    height: 240px;
  }

  .grid .item-grid .at {
    top: 200px;
  }

  .grid .item-grid .ribbon2 {
    top: 216px;
  }
}

@media handheld, only screen and (max-width: 400px) {
  .grid .item-grid {
    width: 300px;
    height: 285px;
  }

  .grid .item-grid img {
    width: 300px;
    height: 225px;
  }

  .grid .item-grid .at {
    top: 185px;
  }

  .grid .item-grid .ribbon2 {
    top: 201px;
  }
}
/* -------------------------------------------------------------- */
/* FIN PARA 3 COLUMNAS                                            */
/* -------------------------------------------------------------- */