@charset "UTF-8";
/* - - Logo - - */
.logo_icon_color {
  content: url("../img/basicimg/logo/iconblack.png");
}

.logo_icon_black {
  content: url("../img/basicimg/logo/iconblack.png");
}

.logo_icon_white {
  content: url("../img/basicimg/logo/iconwhite.png");
}

.logo_full_color {
  content: url("../img/basicimg/logo/logofullblack.png");
}

.logo_full_black {
  content: url("../img/basicimg/logo/logofullblack.png");
}

.logo_full_white {
  content: url("../img/basicimg/logo/logofullwhite.png");
}

/* - - - Color Palette - - - */
/* Colors are choosen from https://www.colorhub.app/browse */
/* Main */
/* Secondary - The color in the middle of the pallete */
/* Background - Colors to the left of 2nd are light, colors to the right are dark */
/* - - - Text - - - */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::selection {
  background: #0c083f;
  color: white;
}

/* Disable blue highlight on button click */
button {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* You can do the same for links */
a {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  scroll-behavior: smooth;
  scroll-padding: 40px;
}

body {
  font-family: "Unna", Sans-serif;
  font-weight: 100;
  font-size: 18px;
}

.button-1 {
  background: #000000;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 5px;
  transition: ease-out 0.15s;
  text-align: center;
  cursor: pointer;
}

.button-1:hover {
  background: #000000;
}

.button-2 {
  background-color: transparent;
  color: #000000;
  font-weight: 600;
  border: 2px solid #000000;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 25px;
  border-radius: 5px;
  transition: ease-out 0.15s;
  text-align: center;
  cursor: pointer;
}

.button-2:hover {
  background-color: #ededed;
}

.button-3 {
  background-color: transparent;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  padding: 13px 25px;
  transition: ease-out 0.15s;
  text-align: center;
  cursor: pointer;
}

.button-3:hover {
  background-color: #dadada;
  color: #000000;
}

.button-4 {
  background: white;
  color: black;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 5px;
  transition: ease-out 0.15s;
  text-align: center;
  cursor: pointer;
}

.button-4:hover {
  background: rgb(201, 201, 201);
}

@media screen and (max-width: 540px) {
  .boton_90 {
    width: 90%;
    margin: auto;
  }
}
/* Basic styles for the blocks */
.offview {
  opacity: 0;
  filter: blur(3px);
  transition: ease 0.6s;
}

/* Animations when elements come into view */
.animate-left {
  transform: translateX(-62%);
}

.animate-right {
  transform: translateX(62%);
}

.animate-up {
  transform: translateY(62%);
}

/* Class added by JavaScript when element is in view */
.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

@media screen and (max-width: 1150px) {
  .offview {
    opacity: 1;
    filter: blur(0px);
    transition: ease 0.6s;
  }
  .animate-left {
    transform: translateX(0);
  }
  .animate-right {
    transform: translateX(0);
  }
  .animate-up {
    transform: translateY(0);
  }
}
.text-important-1 {
  color: #0c083f;
}

.title_color_1 h2 {
  color: #000000;
}

.title_color_1 p {
  color: #5f5f5f;
}

.title_color_2 h2 {
  color: #ffffff;
}

.title_color_2 p {
  color: #e1e1e1;
}

/* Title 1 */
.title-1 {
  width: 90%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.title-1-logo img {
  width: 25px;
}

.title-1 h2 {
  font-size: 36px;
  margin: 8px 0 10px 0;
}

.title-1 p {
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 1300px) {
  .title-1 {
    max-width: 875px;
  }
}
@media screen and (max-width: 500px) {
  .title-1 h2 {
    font-size: 27px;
  }
}
/* Title 2 */
.title-2 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.title-2 div img {
  margin: 0 10px 0 0;
  width: 20px;
}

.title-2 div {
  margin: 0 0 12px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.title-2 div h2 {
  font-size: 36px;
}

@media screen and (max-width: 1300px) {
  .title-2 {
    max-width: 1000px;
  }
}
@media screen and (max-width: 500px) {
  .title-2 div {
    margin: 0 0 12px 0;
    flex-direction: column;
    align-items: baseline;
  }
  .title-2 div img {
    margin: 0 0 8px 0;
  }
  .title-2 div h2 {
    font-size: 27px;
  }
}
/* Title 3 */
.title-3 {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.title-3 div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px 0;
}

.title-3 h2 {
  font-size: 32px;
}

.title-3 a {
  background: #000000;
  color: white;
  padding: 6px 24px;
  border-radius: 6px;
  border: 2px solid #000000;
  text-decoration: none;
  transition: ease-out 200ms;
}

.title-3 a:hover {
  background: transparent;
  color: #000000;
}

@media screen and (max-width: 1300px) {
  .title-3 {
    max-width: 1000px;
  }
}
@media screen and (max-width: 540px) {
  .title-3 h2 {
    font-size: 27px;
  }
  .title-3 div {
    flex-direction: column;
    align-items: baseline;
  }
  .title-3 div a {
    display: none;
  }
}
.menu_spacing {
  height: 60px;
}

.menu_logo img {
  content: url(../img/basicimg/logo/logofullblack.png);
}

.nav-scrolled .menu_logo img {
  content: url(../img/basicimg/logo/logofullwhite.png);
}

header {
  color: black;
  background-color: #FAF9F5;
  width: 100%;
  position: fixed;
  z-index: 1000;
  height: 60px;
  transition: ease-out 0.25s;
}

.contenedor-menu {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.menudesktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menudesktop div a {
  text-decoration: none;
}

.menu_logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.logo {
  height: 40px;
  margin: 10px 0 10px 0;
}

.menulink {
  border-bottom: 3px solid transparent;
  text-decoration: none;
  transition: 0.2s ease-out;
}

.menulink:nth-child(1), .menulink:nth-child(2) {
  margin: 0 20px 0 0;
}

.menucta {
  background: #000000;
  color: white;
  text-decoration: none;
  margin: 0 0 0 28px;
  padding: 8px 28px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.2s ease-out;
}

.menucta:hover {
  background: #000000;
}

.nav-scrolled {
  background: #0c083f;
  color: white;
}

#menulink {
  color: black;
}

.nav-scrolled #menulink {
  color: black;
}

#menulink:hover {
  border-bottom: 3px solid #000000;
}

.mobile_fixed_cta {
  opacity: 0;
  pointer-events: none;
  background-color: rgb(255, 255, 255);
  border-radius: 8px 8px 0 0;
  position: fixed;
  z-index: 300;
  width: 100%;
  bottom: 0;
  box-shadow: 0px 0px 20px rgba(42, 42, 42, 0.4);
}

.mobile_fixed_cta a {
  display: flex;
  justify-content: center;
  margin: 10px auto;
  width: 90%;
}

@media screen and (max-width: 1300px) {
  header {
    height: 50px;
  }
  .menu_spacing {
    height: 50px;
  }
  .contenedor-menu {
    max-width: 1000px;
  }
  .logo {
    height: 34px;
    margin: 8px 0;
  }
  .menulink {
    font-size: 14px;
  }
  .menucta {
    margin: 0 0 0 20px;
    padding: 7px 30px;
  }
}
@media screen and (max-width: 900px) {
  header {
    height: 50px;
  }
  .menu_spacing {
    height: 78px;
  }
  .menucta {
    display: none;
  }
  .logo {
    height: 28px;
    margin: 10px 0 6px 0;
  }
  .menu_top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .menu_nav_spread {
    display: none;
    margin: 0;
  }
}
/* HAMBURGER MENU */
.hamburger {
  display: none;
}

.mobile_nav {
  display: none;
}

@media screen and (max-width: 900px) {
  .hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 8px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
  }
  .hamburger .bar, .hamburger::after, .hamburger::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(0, 0, 0);
    margin: 6px 0px;
    transition: 0.4s;
    transform: translateY(-11px);
  }
  .hamburger.is-active:before {
    transform: rotate(-45deg) translate(3px, 2px);
  }
  .hamburger.is-active:after {
    transform: rotate(45deg) translate(-12px, -17px);
  }
  .hamburger.is-active .bar {
    opacity: 0;
  }
  .mobile_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 100vh;
    display: block;
    z-index: 99;
    background-color: #0c083f;
    padding: 52px 0 0 0;
    transition: 0.4s;
  }
  .mobile_nav a {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0 auto;
    padding: 12px 5% 10px 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.605);
    text-decoration: none;
    color: black;
  }
  .mobile_nav.is-active {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .mobile_fixed_cta {
    opacity: 1;
    pointer-events: all;
  }
}
.newusp_videomobile {
  display: none;
}

.newusp_background {
  background: #FAF9F5;
}

.newusp_contenedor {
  padding: 10px 0 60px 0;
  margin: auto;
  width: 90%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.newusp_texto h1 {
  text-align: center;
  width: 100%;
  font-size: 40px;
  margin: 20px 0 20px 0;
}

.newusp_subtituloboton {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  margin: 40px 0 20px 0;
  align-items: center;
}

.newusp_subtituloboton h3 {
  width: 50%;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
}

.newusp_video {
  width: 90%;
  margin: 20px 0 0 0;
}

.newusp_video iframe {
  width: 100%;
  border-radius: 8px;
}

@media screen and (max-width: 1300px) {
  .newusp_texto h1 {
    font-size: 30px;
    font-weight: 900;
  }
  .newusp_subtituloboton {
    margin: 20px 0;
  }
}
@media screen and (max-width: 440px) {
  .newusp_contenedor {
    padding: 40px 0 70px 0;
  }
  .newusp_texto {
    display: flex;
    flex-direction: column;
  }
  .newusp_texto h1 {
    font-size: 34px;
    margin: 0 0 0 0;
  }
  .newusp_video {
    display: none;
  }
  .newusp_videomobile {
    display: inline;
    margin: 0 0 20px 0;
    width: 100%;
  }
  .newusp_videomobile iframe {
    width: 100%;
    height: 210px;
    border-radius: 3px;
  }
  .newusp_subtituloboton {
    display: flex;
    flex-wrap: wrap;
    justify-content: none;
    margin: 20px 0 0 0;
  }
  .newusp_subtituloboton h3 {
    width: 100%;
    margin: 0 0 15px 0;
    text-align: center;
  }
  .newusp_subtituloboton a {
    width: 100%;
  }
  .newusp_video iframe {
    width: 100%;
    height: 179px;
  }
}
.usp_3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%), url(../img/V&S_041.jpg);
  background-position: 45% 10%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 500px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container_usp_3 {
  width: 90%;
  max-width: 600px;
  margin: 60px auto 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.container_usp_3 h2 {
  font-size: 20px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.8);
}

.container_usp_3 h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
}

.fechayhora_usp {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: white;
  margin: 0 0 25px 0;
}

@media screen and (max-width: 540px) {
  .container_usp_3 {
    margin: 30px auto 0 auto;
  }
  .container_usp_3 h1 {
    font-size: 27px;
  }
  .container_usp_3 div a:nth-child(2) {
    margin: 10px 0 0 0;
  }
}
/*   ----------------   INTRO USP   ----------------   */
.fondointro {
  background: #F3F1EC;
  padding: 60px 0;
}

.container_usp_2 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.usp_2_texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  padding: 0;
  color: black;
}

.usp_2_texto h1 {
  font-size: 40px;
  margin: 0px;
}

.usp_2_texto h3 {
  margin: 30px 0 60px 0;
  line-height: 26px;
  font-size: 18px;
  font-weight: 300;
}

.contenedor-img {
  width: 48%;
  display: flex;
  align-items: center;
}

.contenedor-img img {
  width: 100%;
}

.imguspmobile {
  display: none;
}

.botonusp {
  background: #000000;
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  padding: 15px 25px;
  display: inline-block;
  border-radius: 5px;
  transition: ease-out 0.15s;
  text-align: center;
  cursor: pointer;
}

.botonusp:hover {
  background: #000000;
  color: #fff;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .container_usp_2 {
    max-width: 1000px;
  }
  .usp_2_texto h1 {
    font-size: 28px;
    margin: 0px;
  }
  .usp_2_texto h3 {
    margin: 10px 0 40px 0;
    line-height: 22px;
    font-size: 14px;
  }
}
@media screen and (max-width: 940px) {
  .container_usp_2 {
    flex-direction: column;
  }
  .usp_2_texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    margin: auto;
    min-width: 100%;
    color: #0c0c0c;
  }
  .usp_2_texto h1 {
    font-size: 27px;
    width: 100%;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
  }
  .usp_2_texto h3 {
    padding-top: 0px;
    line-height: 28px;
    font-size: 20px;
    width: 90%;
    margin: 30px 0;
  }
  .imguspdesktop {
    display: none;
  }
  .imguspmobile {
    display: inline;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 540px) {
  .fondointro {
    padding: 60px 0;
    margin: 0;
  }
  .container_usp_2 {
    padding: 0 0 0 0;
  }
  .usp_2_texto h1 {
    font-size: 27px;
  }
  .usp_2_texto h3 {
    line-height: 24px;
    font-size: 17px;
    margin: 30px 0 0 0;
  }
  .botonusp {
    width: 100%;
  }
}
/*   ----------------   VIDEO   ----------------   */
#video1 {
  background: #FAF9F5;
  padding: 60px 0 60px 0;
}

.videocontenedorvideo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 53%;
  margin: 0px 0px 0px 0px;
}

.videocontenedorvideo iframe {
  width: 95%;
  border-radius: 5px;
}

.video1 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.videocontenedortextovideo {
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.videocontenedortexto {
  width: 44%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.videocontenedortexto p {
  color: rgb(70, 70, 70);
  font-size: 15px;
}

.videocajatexto {
  padding: 0px 0px 40px 0px;
}

.tbvideo {
  width: 90%;
  margin: auto;
  max-width: 1000px;
  text-align: center;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .video1 {
    max-width: 1000px;
  }
  .videocontenedorvideo iframe {
    width: 100%;
    max-width: 500px;
    max-height: 282px;
  }
  .videocontenedorvideo p {
    text-align: center;
    width: 100%;
    font-size: 15px;
  }
  .videocontenedortexto h4 {
    margin: 0px 0px 0px 0px;
  }
  .videocontenedortexto p {
    font-size: 15px;
  }
}
@media screen and (max-width: 940px) {
  .video1 {
    padding: 0;
  }
  .videocontenedorvideo {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0px 0px 0px 0px;
  }
  .videocontenedortexto {
    width: 90%;
    padding-bottom: 0px;
    padding-top: 30px;
  }
  .videocontenedortextovideo {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .videocontenedorvideo iframe {
    width: 100%;
  }
}
@media screen and (max-width: 440px) {
  .video1 {
    padding: 0;
  }
  .videocontenedortexto {
    width: 100%;
    padding-bottom: 0px;
  }
  .videocontenedorvideo iframe {
    width: 330px;
    height: 187px;
  }
  .videocajatexto {
    padding: 0px 0px 0 0px;
  }
}
/*   ----------------   123 Service   ----------------   */
.servicio1 {
  background-color: #F3F1EC;
  padding: 60px 0;
  overflow: hidden;
}

.contenedor-123service {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contenedorcajas {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 55px 0 45px 0;
  position: static;
  max-width: 1100px;
}

.numero_circle_123service {
  display: flex;
  justify-content: center;
  margin: -20px 0 0 0;
}

.numero_circle_123service p {
  color: rgb(70, 70, 70);
  border: 2px solid #0c083f;
  background: #FAF9F5;
  padding: 10px;
  width: 44px;
  border-radius: 50px;
}

.cajatexto {
  color: rgb(70, 70, 70);
  width: 30%;
  background: #FAF9F5;
  padding: 0px 25px 20px 25px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1882352941);
}

.cajatexto:nth-child(2) {
  transition-delay: 200ms;
}

.cajatexto:nth-child(3) {
  transition-delay: 400ms;
}

.cajatexto h4 {
  font-size: 22px;
  padding: 20px 0 15px 0;
}

.cajap1 {
  font-weight: 600;
  padding: 0 0 15px 0;
}

.cajap2 {
  padding: 0 0 12px 0;
}

.contenedorboton {
  display: flex;
  justify-content: center;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .contenedor-123service {
    max-width: 1000px;
  }
  .titulo-123service {
    margin: 0 0 20px 0;
  }
  .titulo-123service h2 {
    font-size: 34px;
  }
  .cajatexto h4 {
    font-size: 18px;
  }
  .cajap1 {
    font-size: 14px;
  }
  .cajap2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 740px) {
  .contenedorcajas {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: none;
    margin: 40px 0 0 0;
    row-gap: 60px;
  }
  .cajatexto {
    width: 100%;
    padding: 0px 25px 20px 25px;
    border-radius: 5px;
    text-align: center;
  }
  .cajatexto:nth-child(2) {
    transition-delay: 0ms;
  }
  .cajatexto:nth-child(3) {
    transition-delay: 0ms;
  }
  .cajatexto:nth-child(1) {
    margin-top: 30px;
  }
  .titulo-123service {
    margin: 0 0 10px 0;
  }
  .titulo-123service h2 {
    font-size: 30px;
  }
}
.steps {
  background: #FAF9F5;
  padding: 60px 0;
  overflow: hidden;
}

.steps_contenedor {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Título */
.steps_titulo {
  text-align: center;
}

.steps_titulo h5 {
  font-size: 36px;
}

/* Globos */
.steps_globos_contenedor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0 60px 0;
}

.steps_globo {
  width: 23%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.steps_globo div {
  width: 100%;
}

.steps_globo div span {
  color: #212121;
  background-color: #0c083f;
  font-size: 30px;
  padding: 24px;
  border-radius: 100px;
}

.steps_globo h4 {
  color: rgb(70, 70, 70);
  font-size: 18px;
  margin: 10px 0 0 0;
}

.steps_globo p {
  color: rgb(70, 70, 70);
  margin: 10px 0 0 0;
}

.steps_globo:nth-child(2) {
  transition-delay: 200ms;
}

.steps_globo:nth-child(3) {
  transition-delay: 400ms;
}

.steps_globo:nth-child(4) {
  transition-delay: 600ms;
}

@media screen and (max-width: 1300px) {
  .steps_contenedor {
    max-width: 1000px;
  }
  .steps_titulo h5 {
    font-size: 34px;
  }
  .steps_globos_contenedor {
    margin: 40px 0 30px 0;
  }
  .steps_globo h4 {
    font-size: 16px;
  }
  .steps_globo p {
    font-size: 14px;
    margin: 4px 0 0 0;
  }
}
@media screen and (max-width: 1000px) {
  .steps_titulo h5 {
    text-align: center;
  }
  .steps_globo {
    width: 46%;
    margin-top: 50px;
  }
  .steps_globos_contenedor {
    margin: 0px 0 60px 0;
  }
}
@media screen and (max-width: 600px) {
  .steps_globo {
    width: 100%;
  }
  .steps_globos_contenedor {
    margin: 0 0 0 0;
  }
  .steps_globo:nth-child(2) {
    transition-delay: 0ms;
  }
  .steps_globo:nth-child(3) {
    transition-delay: 0ms;
  }
  .steps_globo:nth-child(4) {
    transition-delay: 0ms;
  }
}
.specs-click {
  background: #F3F1EC;
  padding: 60px 0;
}

.specs-click-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 40px 0;
}

.specs-click-container {
  height: 400px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
}

.specs-click-card {
  width: 80px;
  background-size: cover;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
  background-position: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.specs-click-card > .row {
  color: white;
  display: flex;
  flex-wrap: nowrap;
}

.specs-click-card > .row > .icon {
  background: #223;
  color: white;
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.specs-click-card > .row > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px;
  width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0.3s;
  transition: all 0.3s ease;
}

.description p {
  color: #b0b0ba;
  padding-top: 5px;
}

.description h4 {
  text-transform: uppercase;
}

input {
  display: none;
}

input:checked + label {
  width: 600px;
  cursor: auto;
}

input:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Images */
.specs-click-container input[type=radio]:checked + label[for=c1] {
  background-image: url("../img/basicimg/superman_clicked.png");
}

.specs-click-card[for=c1] {
  background-image: url("../img/basicimg/superman_resized.png");
}

.specs-click-container input[type=radio]:checked + label[for=c2] {
  background-image: url("../img/basicimg/batman_clicked.png");
}

.specs-click-card[for=c2] {
  background-image: url("../img/basicimg/batman_resized.png");
}

.specs-click-container input[type=radio]:checked + label[for=c3] {
  background-image: url("../img/basicimg/ironman_clicked.png");
}

.specs-click-card[for=c3] {
  background-image: url("../img/basicimg/ironman_resized.png");
}

.specs-click-container input[type=radio]:checked + label[for=c4] {
  background-image: url("../img/basicimg/hulk_clicked.png");
}

.specs-click-card[for=c4] {
  background-image: url("../img/basicimg/hulk_resized.png");
}

#specs-link {
  position: absolute;
  z-index: 2;
  border-radius: 2rem;
  transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  width: 80px;
  height: 400px;
  pointer-events: none;
}

.specs-click-container input[type=radio]:checked + label #specs-link {
  pointer-events: all;
  width: 600px;
  height: 400px;
}

@media screen and (max-width: 950px) {
  .specs-click-wrapper {
    scale: 0.8;
  }
}
@media screen and (max-width: 780px) {
  .specs-click-wrapper {
    scale: 0.7;
  }
}
@media screen and (max-width: 740px) {
  .specs-click {
    padding: 60px 0 20px 0;
  }
  .specs-click-wrapper {
    scale: 1;
  }
  .specs-click-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: start;
  }
  .specs-click-card {
    width: 350px;
    height: 400px;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    margin: 5px 0;
  }
  .specs-click-card > .row {
    display: flex;
    flex-wrap: nowrap;
  }
  .specs-click-card > .row > .icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 34px 15px 0 7px;
  }
  .specs-click-card > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.3s;
    transition: all 0.3s ease;
  }
  .description p {
    padding-top: 5px;
    display: none;
  }
  .description h4 {
    margin-bottom: -28px;
  }
  .specs-click-container input {
    display: none;
  }
  .specs-click-container input:checked + label {
    height: 1600px;
    width: 350px;
  }
  #specs-link {
    width: 350px;
    height: 51px;
  }
  .specs-click-container input[type=radio]:checked + label #specs-link {
    width: 350px;
    height: 205px;
  }
}
.explicacion {
  background-color: #F3F1EC;
  padding: 60px 0;
  overflow: hidden;
}

.explicacion_contenedor {
  width: 1100px;
  max-width: 90%;
  margin: auto;
  height: 560px;
}

.expimg1 {
  background: url("../img/basicimg/16-9_bear_1.png");
}

.expimg2 {
  background: url("../img/basicimg/16-9_bear_2.png");
}

.expimg3 {
  background: url("../img/basicimg/16-9_bear_3.png");
}

.expimg4 {
  background: url("../img/basicimg/16-9_bear_1.png");
}

.expimg5 {
  background: url("../img/basicimg/16-9_bear_2.png");
}

.expimg6 {
  background: url("../img/basicimg/16-9_bear_3.png");
}

.explicacion_contenedor_globos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0;
  height: 240px;
  transition: 0.3s ease-out;
}

#explicacion_globo_background {
  position: relative;
  background: #212121;
  width: 100%;
  height: 22%;
  top: 78%;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.2s ease-out;
}

#explicacion_globo_background h6 {
  font-size: 20px;
  padding: 15px 30px 0 30px;
  color: white;
}

#explicacion_globo_background p {
  overflow: hidden;
  color: rgba(255, 255, 255, 0);
  transition: 0.2s ease-out;
}

.explicacion_globo:hover #explicacion_globo_background {
  height: 100%;
  top: 0%;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.explicacion_globo:hover #explicacion_globo_background p {
  color: rgb(70, 70, 70);
  overflow: hidden;
}

.explicacion_globo:hover #explicacion_globo_background h6 {
  color: rgb(70, 70, 70);
  padding: 25px 30px 0 30px;
}

.explicacion_globo {
  width: 31%;
  border-radius: 10px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4039215686);
  margin: 0 0 40px 0;
  height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explicacion_globo p {
  padding: 10px 30px 20px 30px;
}

#tap-to-see {
  position: relative;
  z-index: 3;
  color: #fff;
  top: -30px;
  left: 10px;
}

#tap-to-see img {
  width: 40px;
  height: 40px;
}

.explicacion_globo:hover #tap-to-see {
  opacity: 0;
}

@media screen and (max-width: 1300px) {
  .explicacion {
    padding: 60px 0;
  }
  .explicacion_contenedor {
    width: 1000px;
    height: 440px;
  }
  .explicacion_contenedor_globos {
    margin: 30px 0;
  }
  #explicacion_globo_background {
    height: 20%;
    top: 80%;
    text-align: center;
  }
  #explicacion_globo_background h6 {
    font-size: 16px;
    padding: 11px 0 0 0;
  }
  .explicacion_globo:hover #explicacion_globo_background h6 {
    padding: 25px 30px 0 30px;
  }
  .explicacion_globo {
    width: 32%;
    height: 190px;
    margin: 0 0 20px 0;
  }
  .explicacion_globo p {
    padding: 4px 30px 20px 30px;
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  #tap-to-see {
    display: none;
  }
}
@media screen and (max-width: 1215px) {
  #explicacion_globo_background h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1120px) {
  #explicacion_globo_background h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1120px) {
  #explicacion_globo_background h6 {
    font-size: 16px;
  }
  .explicacion_globo {
    width: 47%;
  }
  .explicacion_contenedor {
    height: 660px;
  }
}
@media screen and (max-width: 900px) {
  .explicacion_globo {
    width: 47%;
  }
}
@media screen and (max-width: 810px) {
  #explicacion_globo_background h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 745px) {
  #explicacion_globo_background h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 680px) {
  .explicacion {
    padding: 60px 0 30px 0;
  }
  .explicacion_globo {
    margin: 0 0 20px 0;
    width: 100%;
  }
  #explicacion_globo_background h6 {
    font-size: 16px;
  }
  .explicacion_contenedor {
    height: 1280px;
  }
  .explicacion_titulo h3 {
    font-size: 32px;
    margin: 0 0 -20px 0;
  }
}
/*   ----------------   1er Pilar   ----------------   */
.bullets-rightimage-v1 {
  background: #000000;
  padding: 60px 0;
}

.bullets-rightimage-v2 {
  background: #FAF9F5;
  padding: 60px 0;
}

.container-bullets-rightimage {
  width: 90%;
  max-width: 1100px;
  margin: 20px auto 0 auto;
  display: flex;
  flex-direction: column;
}

.s2contenedortextoimagen-v1 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px 0;
}

.s2contenedortextoimagen-v2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 0 40px 0;
}

.s2contenedortexto {
  color: rgb(70, 70, 70);
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bullet_point {
  width: 10%;
}

.bullet_point span {
  padding: 8px 0 0 0;
  font-size: 32px;
  color: #0c083f;
}

.s2cajatexto {
  width: 90%;
  padding: 0;
}

.s2cajatexto p {
  margin: 7px 0 0 0;
}

.color_p_2 {
  color: #e2e2e2;
}

.s2contenedorimagen {
  display: flex;
  align-items: center;
  width: 46%;
}

.s2contenedorimagen img {
  width: 100%;
  border-radius: 5px;
}

.s2arrangebullets {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.s2paddingbullets {
  margin-bottom: 40px;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .container-bullets-rightimage {
    max-width: 1000px;
  }
  .title-bullets-rightimage h2 {
    font-size: 36px;
  }
  .title-bullets-rightimage p {
    font-size: 16px;
  }
  .s2cajatexto p {
    font-size: 16px;
  }
  .s2paddingbullets {
    margin-bottom: 25px;
  }
  .s2contenedortexto {
    width: 52%;
  }
  .s2contenedorimagen {
    width: 44%;
  }
}
@media screen and (max-width: 740px) {
  .bullets-rightimage {
    padding: 50px 0;
  }
  .s2contenedortextoimagen-v1, .s2contenedortextoimagen-v2 {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    margin: 0 0 0 0;
  }
  .s2contenedortexto {
    width: 100%;
    padding-bottom: 0px;
  }
  .s2contenedorimagen {
    width: 100%;
    margin: 0px 0px 30px 0px;
  }
}
@media screen and (max-width: 440px) {
  .bullet_point span {
    font-size: 26px;
  }
}
.contenedor_pricing {
  padding: 60px 0;
  background-color: #FAF9F5;
}

.contenedor_pricingboxes {
  display: flex;
  flex-wrap: nowrap;
  margin: 50px auto 0 auto;
  width: 90%;
  max-width: 1100px;
  justify-content: space-between;
}

.pricing_box {
  color: rgb(70, 70, 70);
  width: 31%;
  padding: 25px;
  border: 2px solid #d1d1d1;
  border-radius: 6px;
  transition: ease-in 0.1s;
}

.pricing_recommended {
  border: 2px solid #000000;
  scale: 1.035;
}

.recommended_tag {
  position: absolute;
  width: 100%;
  left: 0%;
  top: -14px;
  display: flex;
  justify-content: center;
}

.recommended_tag h4 {
  color: #000000;
  padding: 4px;
  background-color: white;
  margin: 0 0 0 -4px;
}

.pricing_box h5 {
  font-size: 24px;
  margin: 0 0 10px 0;
}

.pricing_recommended h5 {
  color: #000000;
}

.pricing_box h6 {
  text-align: left;
  font-size: 14px;
  margin: 25px 0 15px 0;
}

.pricing_box ul {
  margin: 0 0 0 18px;
}

.pricing_box li {
  font-size: 14px;
  margin: 0 0 5px 0;
}

.specialfeature1 {
  font-weight: bold;
}

.specialfeature2 {
  font-weight: bold;
  color: #000000;
}

.pricing_price {
  font-size: 26px;
  margin: 20px 0;
}

/* Botón */
.boton-pricing {
  display: flex;
  text-align: center;
}

.boton-pricing a {
  color: #000000;
  background: transparent;
  padding: 12px 0;
  border-radius: 5px;
  text-decoration: none;
  width: 100%;
  border: 2px solid #000000;
  transition: 200ms;
}

.boton-pricing a:hover {
  color: #000000;
  background: transparent;
}

.boton-pricing-rec {
  display: flex;
  text-align: center;
}

.boton-pricing-rec a {
  color: white;
  background: #000000;
  padding: 12px 0;
  border-radius: 5px;
  text-decoration: none;
  width: 100%;
  border: 2px solid #000000;
  transition: 200ms;
}

.boton-pricing-rec a:hover {
  background: #000000;
  border: 2px solid #000000;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .contenedor_pricingboxes {
    max-width: 1000px;
  }
  .pricing_box h5 {
    font-size: 20px;
  }
  .pricing_box p {
    font-size: 14px;
  }
  .pricing_price {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  .contenedor_pricingboxes {
    flex-direction: column;
    align-items: center;
  }
  .pricing_recommended {
    border: 2px solid #000000;
    scale: 1;
  }
  .pricing_box {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 540px) {
  .contenedor_pricing {
    padding: 60px 0 50px 0;
  }
}
/*   ----------------   Testimonios   ----------------   */
.testimonios {
  background-color: #F3F1EC;
}

.contenedortestimonios {
  padding: 60px 0px;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.contenedor-videos {
  width: 90%;
  max-width: 1100px;
  margin: 50px auto 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 50px;
}

.contvideotexto {
  width: 30%;
  text-align: center;
  color: rgb(70, 70, 70);
}

.contvideotexto h4 {
  margin: 0px 0px 20px 0px;
  font-size: 20px;
}

.contvideotexto iframe {
  width: 100%;
  height: 170px;
  border-radius: 5px;
}

.contenedor-trabajos {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0px;
}

.trabajo {
  width: 23%;
  margin-bottom: 40px;
}

.thumb {
  width: 100%;
  margin-bottom: 10px;
}

.contenedor-trabajos .trabajo img {
  width: 100%;
  vertical-align: top;
  border-radius: 5px;
}

.contenedor-trabajos .trabajo .descripcion {
  text-align: center;
}

.contenedor-trabajos .trabajo .descripcion .nombre {
  font-weight: 700;
  color: rgb(70, 70, 70);
  margin-bottom: 10px;
}

.contenedor-trabajos .trabajo .descripcion .categoria {
  font-size: 14px;
  color: rgb(70, 70, 70);
}

.tittestimonio {
  width: 100%;
  margin: 0;
  text-align: center;
  padding-bottom: 40px;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .contenedor-videos {
    max-width: 1000px;
  }
  .contvideotexto h4 {
    margin: 0;
  }
  .contenedor-trabajos {
    max-width: 1000px;
  }
}
@media screen and (max-width: 740px) {
  .contenedortestimonios {
    padding: 60px 0px;
  }
  .trabajo {
    width: 48%;
    margin-bottom: 40px;
  }
  .contenedor-videos {
    flex-direction: column;
    text-align: center;
  }
  .contvideotexto {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    align-content: center;
  }
  .contvideotexto iframe {
    width: 300px;
    height: 170px;
  }
  .tittestimonio {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 740px) and (max-width: 440px) {
  .contenedortestimonios {
    padding: 60px 0px 10px 0;
  }
  .btntestimonios {
    width: 90%;
  }
  .contenedor-videos {
    margin: 20px auto 0 auto;
  }
}
.slider {
  padding: 120px 0 145px 0;
  background: #FAF9F5;
}

.slider-box {
  width: 90%;
  max-width: 1100px;
  margin: 10px auto 0 auto;
  padding: 0 0 30px 0;
}

.slide-content {
  margin: 20px 40px;
  padding: 0 20px;
  overflow: hidden;
}

/* - - -   CARD   - - - */
.card {
  border-radius: 12px;
  background-color: #ebebeb;
  margin: 20px 0;
}

.card-container {
  height: 325px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.card-container h4 {
  font-size: 24px;
  color: rgb(255, 255, 255);
  margin: 0 0 5px 0;
  font-weight: 400;
}
.card-container p {
  color: white;
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 8px 0;
}
.card-container a {
  text-decoration: none;
  color: white;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  text-align: center;
  border-radius: 6px;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.card-container a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4);
}

.card1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%), url(../img/hist2.jpeg);
}

.card2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%), url(../img/products/Tailandia.jpg);
}

.card3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%), url(../img/products/SetOllasSartenes.jpg);
}

.card4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%), url(../img/products/cama-king.jpg);
}

.card5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%), url(../img/products/Tetera.png);
}

.card6 {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%), url(../img/products/MesaCentro.jpg);
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 20px;
  color: #000000;
}

@media screen and (max-width: 1300px) {
  .slider {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .slider {
    scale: 1;
    padding: 120px 0 100px 0;
  }
  /* - - - Título - - - */
  .titulo-testimonios {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }
  .titulo-testimonios h2 {
    padding: 10px 0 5px 0;
    font-size: 28px;
  }
  .titulo-testimonios p {
    padding: 5px 0 10px 0;
    font-size: 16px;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after {
    display: none;
  }
  .slide-content {
    margin: 20px 0;
  }
}
/*   ----------------   About Me   ----------------   */
.aboutme {
  background-color: #FAF9F5;
}

.aboutmebox {
  width: 90%;
  margin: auto;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 80px 0px;
}

.aboutmebox1-image {
  border-radius: 8px;
  margin: 20px 0 0 0;
}

.aboutmebox2-image {
  border-radius: 8px;
  margin: 0 0 20px 0;
}

.aboutmebox1 {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutmeicon {
  width: 10%;
}

.aboutmebox1 h2 {
  color: black;
  margin: 0;
  padding-top: 5px;
  padding-bottom: 25px;
  font-size: 42px;
  line-height: 50px;
}

.aboutmebox2 {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutmebox1 p, .aboutmebox2 p {
  color: rgb(70, 70, 70);
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .aboutmebox {
    max-width: 1000px;
    padding: 40px 0;
  }
  .aboutmeicon {
    width: 7%;
  }
  .aboutmebox1 h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .aboutmebox1 p {
    font-size: 15px;
  }
  .aboutmebox2 p {
    font-size: 15px;
  }
}
@media screen and (max-width: 740px) {
  .aboutmebox {
    flex-direction: column;
    padding: 60px 0px;
  }
  .aboutmebox1 h2 {
    font-size: 32px;
    padding-bottom: 10px;
  }
  .aboutmebox1 {
    width: 100%;
    padding-right: 0px;
  }
  .aboutmebox2 {
    width: 100%;
    padding-left: 0px;
    flex-direction: column-reverse;
  }
  .aboutmebox2 p {
    padding: 20px 0;
  }
  .aboutmebox2-image {
    margin: 0;
  }
}
/*   ----------------   Last CTA   ----------------   */
.lastcta_bg {
  background: #bdb6a8;
}

.lastcta {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 120px 0px;
}

.box {
  background: #F3F1EC;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
}

.boxtexto {
  max-width: 70%;
  color: black;
  padding: 60px 0px 60px 70px;
}

.boxtexto h3 {
  font-size: 32px;
  margin: 0 0 10px 0px;
}

.boxtexto p {
  line-height: 22px;
  margin-bottom: 0;
}

.boxboton {
  width: 40%;
  min-width: 300px;
  text-align: right;
  padding: 0 70px 0 50px;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .lastcta {
    max-width: 1000px;
  }
}
@media screen and (max-width: 740px) {
  .lastcta {
    padding: 120px 0px;
  }
  .box {
    flex-direction: column;
  }
  .boxtexto {
    width: 90%;
    padding: 60px 0px 45px 0px;
    text-align: center;
  }
  .boxtexto h3 {
    font-size: 28px;
    padding-bottom: 10px;
  }
  .boxtexto p {
    padding-bottom: 10px;
  }
  .boxboton {
    width: 90%;
    min-width: none;
    text-align: center;
  }
}
@media screen and (max-width: 740px) and (max-width: 440px) {
  .aboutmebox1 h4 {
    font-size: 36px;
    line-height: 48px;
  }
  .boxtexto {
    max-width: 90%;
  }
  .boxtexto p {
    padding-bottom: 0;
  }
  .boxboton {
    width: 70%;
    padding: 0px 0px 75px 0px;
  }
}
/*   ----------------   Footer   ----------------   */
footer {
  background: #202020;
  color: white;
  overflow: hidden;
  border-top: 2px solid #000000;
}

.footerbox {
  padding: 20px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1100px;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.polilogobox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.politicas {
  min-width: 700px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.politicas a {
  text-decoration: none;
  color: #fff;
  transition: ease-out 0.3s;
  margin: 0 50px 0 0;
}

.politicas a:hover {
  text-decoration: none;
  color: #000000;
}

.logofinal {
  display: flex;
  justify-content: flex-end;
}

.lasttext {
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  padding-top: 15px;
}

.saltofooter {
  display: none;
}

/*   @@@   Media Queries   @@@   */
@media screen and (max-width: 1300px) {
  .footerbox {
    max-width: 1000px;
  }
}
@media screen and (max-width: 740px) {
  .polilogobox {
    flex-direction: column-reverse;
  }
  .politicas {
    display: flex;
    text-align: center;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    min-width: 0px;
  }
  .caja3final {
    width: 30%;
  }
  .politicas a {
    padding: 0px;
    margin: 0 0 0 0;
  }
  .logofinal {
    min-width: 0px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 540px) {
  .politicas {
    text-align: center;
  }
  .politicas a {
    font-size: 14px;
  }
  .saltofooter {
    display: inline;
  }
  .lasttext {
    margin: 10px 0 70px 0;
  }
}
.filter-tabs {
  background: #FAF9F5;
  padding: 60px 0;
}

.mytabs {
  display: flex;
  flex-wrap: wrap;
  width: 92%;
  max-width: 700px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3215686275);
}

.mytabs input[type=radio] {
  display: none;
}

.mytabs label {
  height: 60px;
  padding: 0 10px;
  background: #e2e2e2;
  font-weight: bold;
  cursor: pointer;
  width: 33.333%;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.tabfree[for=tabfree] {
  border-radius: 10px 0 0 0;
}

.tabgold[for=tabgold] {
  border-radius: 0 10px 0 0;
}

.mytabs > .tab {
  color: rgb(70, 70, 70);
  width: 100%;
  padding: 20px;
  background: #fff;
  order: 1;
  display: none;
  border-radius: 0 0 10px 10px;
}

.mytabs input[type=radio]:checked + label + .tab {
  display: block;
}

.mytabs input[type=radio]:checked + label {
  background: #fff;
  border-bottom: 2px solid #0c083f;
  width: 33.333%;
}

@media screen and (max-width: 540px) {
  .filter-tabs {
    padding: 60px 0 40px 0;
  }
}
/* General */
.simple-text-image-1 {
  background: rgb(233, 232, 227);
  padding: 120px 0;
}

.simple-text-image-2 {
  background: #F3F1EC;
  padding: 120px 0;
}

.container-simple-text-image {
  margin: auto;
  width: 90%;
  max-width: 1100px;
}

/* --- Text & Image Container --- */
.container-text-image-v1 {
  flex-direction: row-reverse; /* <-- Quita esto (o -v2) para cambiar el texto y la imagen de sitio */
  margin: 50px 0 60px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.container-text-image-v2 {
  margin: 50px 0 60px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

/* --- Text Container --- */
.textpart-container-simple-text-image {
  color: rgb(70, 70, 70);
  width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.textpart-container-simple-text-image p {
  font-size: 15px;
  margin: 0 0 10px 0;
}

/* --- Image Container --- */
.imagepart-container-simple-text-image {
  width: 46%;
  display: flex;
  align-items: center;
}

.imagepart-container-simple-text-image img {
  width: 100%;
  border-radius: 8px;
}

.iconohacienda {
  max-width: 250px;
  margin: 0 0 20px 0;
}

.googlemaps iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1300px) {
  .container-simple-text-image {
    max-width: 1000px;
  }
  .container-text-image-v1 {
    margin: 20px 0 30px 0;
  }
  .textpart-container-simple-text-image {
    width: 47%;
  }
  .imagepart-container-simple-text-image {
    width: 47%;
  }
}
@media screen and (max-width: 740px) {
  .container-text-image-v1, .container-text-image-v2 {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
  }
  .textpart-container-simple-text-image {
    margin: 35px 0 50px 0;
    width: 100%;
  }
  .imagepart-container-simple-text-image {
    width: 100%;
  }
}
/* General */
.sticky-text-effect {
  background: #F3F1EC;
  padding: 120px 0 120px 0;
}

.container-sticky-text-effect {
  margin: auto;
  width: 90%;
  max-width: 1100px;
}

/* --- Text & Image Container --- */
.container-sticky-text-image {
  margin: 50px 0 60px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

/* --- Text Container --- */
.textpart-container-sticky-text-effect {
  width: 46%;
}

.textpart-container-sticky-text-effect p {
  color: rgb(70, 70, 70);
  margin: 35px 0;
  position: sticky;
  top: 25%;
}

.title-sticky-text-effect {
  font-size: 36px;
  font-weight: 700;
}

/* --- Image Container --- */
.imagepart-container-sticky-text-effect {
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}

.imagepart-container-sticky-text-effect img {
  width: 100%;
  border-radius: 8px;
}

@media screen and (max-width: 1300px) {
  .sticky-text-effect {
    padding: 30px 0 50px 0;
  }
  .container-sticky-text-effect {
    max-width: 1000px;
  }
  .textpart-container-sticky-text-effect p {
    top: 20%;
  }
}
@media screen and (max-width: 740px) {
  .sticky-text-effect {
    padding: 100px 0;
  }
  .container-sticky-text-image {
    margin: 35px 0 40px 0;
    flex-direction: column;
  }
  .title-sticky-text-effect {
    font-size: 30px;
  }
  .textpart-container-sticky-text-effect {
    width: 100%;
  }
  .textpart-container-sticky-text-effect p {
    margin: 10px 0 30px 0;
    font-size: 18px;
  }
  .imagepart-container-sticky-text-effect {
    width: 100%;
    row-gap: 10px;
  }
}
.images3 {
  padding: 120px 0;
  background: #FAF9F5;
}

.contenedor-images3 {
  max-width: 1100px;
  width: 90%;
  margin: 20px auto 0 auto;
}

/* Imagenes */
.contenedor-images-images3 {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 0 0;
}

.images-images3 {
  width: 48%;
}

.contenedor-images-images3 div img {
  width: 100%;
  border-radius: 16px;
}

/* Texto de las imágenes */
.images-images3 h3 {
  color: rgb(70, 70, 70);
  font-size: 28px;
  margin: 9px 6px 0 6px;
}

.images-images3 p {
  color: rgb(70, 70, 70);
  font-size: 17px;
  margin: 6px 6px 0 6px;
}

/* Boton mobile */
.images3_mobile_button {
  display: none;
}

@media screen and (max-width: 1300px) {
  .contenedor-images3 {
    max-width: 1000px;
  }
}
@media screen and (max-width: 900px) {
  .contenedor-images-images3 {
    margin: 45px 0 0 0;
    flex-direction: column;
    row-gap: 30px;
  }
  .images-images3 {
    width: 100%;
    text-align: center;
  }
  .images-images3 p {
    margin: 6px auto 0 auto;
    max-width: 500px;
  }
}
@media screen and (max-width: 540px) {
  .contenedor-images-images3 {
    row-gap: 30px;
  }
  .images-images3 {
    text-align: left;
  }
  .images-images3 h3 {
    margin: 9px 0 0 0;
  }
  .images-images3 p {
    margin: 6px auto 0 auto;
  }
  .images3_mobile_button {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.textboxes3 {
  background: #F3F1EC;
  padding: 40px 0;
}

.section-container-textboxes3 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.container-textboxes3 {
  margin: 50px 0 60px 0;
  display: flex;
  justify-content: space-between;
}

.box-textboxes3 {
  color: rgb(70, 70, 70);
  width: 30%;
  display: flex;
  flex-direction: column;
}

.box-textboxes3:nth-child(2) div {
  transition-delay: 300ms;
}

.box-textboxes3:nth-child(2) p {
  transition-delay: 300ms;
}

.box-textboxes3:nth-child(3) div {
  transition-delay: 600ms;
}

.box-textboxes3:nth-child(3) p {
  transition-delay: 600ms;
}

.box-textboxes3 div {
  display: flex;
  align-items: center;
  margin: 0 0 8px 0;
}

.check_text_boxes {
  color: #0c083f;
  margin: 0 6px 0 0;
}

.box-textboxes3 h3 {
  padding: 2px 0 0 0;
}

.box-textboxes3 p {
  font-size: 15px;
}

@media screen and (max-width: 1300px) {
  .section-container-textboxes3 {
    max-width: 1000px;
  }
}
@media screen and (max-width: 600px) {
  .textboxes3 {
    padding: 60px 0;
  }
  .container-textboxes3 {
    flex-direction: column;
    row-gap: 30px;
    margin: 30px 0 0 0;
  }
  .box-textboxes3 {
    width: 100%;
  }
  .box-textboxes3:nth-child(2) div {
    transition-delay: 0ms;
  }
  .box-textboxes3:nth-child(2) p {
    transition-delay: 0ms;
  }
  .box-textboxes3:nth-child(3) div {
    transition-delay: 0ms;
  }
  .box-textboxes3:nth-child(3) p {
    transition-delay: 0ms;
  }
}
.section_product_middle {
  background-color: #F3F1EC;
  padding: 60px 0;
  overflow: hidden;
}

.section_container_product_middle {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.container_product_middle {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 40px 0;
}

.lefttext_container_product_middle, .righttext_container_product_middle {
  color: rgb(70, 70, 70);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 38%;
}

.lefttext_container_product_middle div:nth-child(1),
.lefttext_container_product_middle div:nth-child(3),
.righttext_container_product_middle div:nth-child(2) {
  margin: 0 0 0 50px;
}

.lefttext_container_product_middle div:nth-child(2),
.righttext_container_product_middle div:nth-child(1),
.righttext_container_product_middle div:nth-child(3) {
  margin: 0 50px 0 0;
}

.img_container_product_middle {
  width: 20%;
  display: flex;
  align-items: center;
}

.img_container_product_middle img {
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .lefttext_container_product_middle p, .righttext_container_product_middle p {
    font-size: 15px;
  }
}
@media screen and (max-width: 950px) {
  .section_container_product_middle {
    width: 96%;
  }
  .lefttext_container_product_middle, .righttext_container_product_middle {
    width: 40%;
    justify-content: space-between;
    row-gap: 50px;
  }
  .lefttext_container_product_middle div:nth-child(1) {
    margin: 0 0 0 25px;
  }
  .lefttext_container_product_middle div:nth-child(2) {
    margin: 0 25px 0 0;
  }
  .lefttext_container_product_middle div:nth-child(3) {
    margin: 0 0 0 25px;
  }
  .righttext_container_product_middle div:nth-child(1) {
    margin: 0 25px 0 0;
  }
  .righttext_container_product_middle div:nth-child(2) {
    margin: 0 0 0 25px;
  }
  .righttext_container_product_middle div:nth-child(3) {
    margin: 0 25px 0 0;
  }
}
@media screen and (max-width: 700px) {
  .container_product_middle {
    display: flex;
    flex-direction: column;
    margin: 40px 0 0 0;
  }
  .section_container_product_middle {
    width: 90%;
  }
  .lefttext_container_product_middle, .righttext_container_product_middle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    row-gap: 20px;
  }
  .lefttext_container_product_middle div:nth-child(1) {
    margin: 0 0 0 0;
  }
  .lefttext_container_product_middle div:nth-child(2) {
    margin: 0 0 0 0;
  }
  .lefttext_container_product_middle div:nth-child(3) {
    margin: 0 0 0 0;
  }
  .righttext_container_product_middle div:nth-child(1) {
    margin: 0 0 0 0;
  }
  .righttext_container_product_middle div:nth-child(2) {
    margin: 0 0 0 0;
  }
  .righttext_container_product_middle div:nth-child(3) {
    margin: 0 0 0 0;
  }
  .img_container_product_middle {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }
  .img_container_product_middle img {
    width: 20%;
  }
}
.contact_form {
  background-color: #000000;
}

.contactform_container {
  display: flex;
  justify-content: center;
}

.fechamatri {
  background: #FAF9F5;
  padding: 60px 0;
}

.container-fechamatri {
  margin: auto;
  width: 90%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.container-fechamatri img {
  max-width: 100px;
}

/* ===== Tokens visuales (mismos que product) ===== */
:root {
  --bg: #FAF9F5; /* fondo nude */
  --ink: #1a1a1a; /* texto principal */
  --muted: #6b6b6b; /* texto secundario */
  --card: #ffffff; /* tarjetas blancas */
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px; /* border-radius */
  --gap: 24px; /* separación estándar */
  --accent: #BDB6A8; /* color acento */
}

/* ===== Layout base de la página ===== */
.gifts-page {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
}

/* Contenedor ancho coherente con product */
.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* ===== Header coherente ===== */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(to bottom, rgba(250, 249, 245, 0.9), rgba(250, 249, 245, 0.6));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.back-btn {
  display: inline-block;
  margin: 14px 0;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  user-select: none;
}

.back-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.brand span {
  font-weight: 600;
}

/* ===== Intro ===== */
.page-intro {
  padding: 24px 0 8px;
}

.page-title {
  margin: 0;
  font-size: clamp(26px, 2.6vw + 8px, 40px);
  line-height: 1.15;
}

.page-subtitle {
  margin: 6px 0 16px;
  color: var(--muted);
}

/* ===== Grid de tarjetas ===== */
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* estándar que acordamos */
  gap: var(--gap);
  padding: 8px 0 56px;
}

/* ===== Tarjeta de regalo =====
   Usa background desde inline style:
   <article class="gift-card" style="--bg:url('img/products/xxx.jpg')">
*/
.gift-card {
  position: relative;
  height: 325px; /* fijo para mantener estética */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd center/cover no-repeat;
  background-image: var(--bg, none); /* <-- REEMPLAZA en el HTML por tarjeta */
  display: flex; /* para empujar overlay al fondo */
}

/* Overlay con degradado para legibilidad */
.gift-overlay {
  margin-top: auto;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0.24) 70%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  padding: 18px;
  display: grid;
  gap: 8px;
}

/* Contenido mínimo: título, precio, botón */
.gift-title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.2px;
}

.gift-price {
  font-size: 14px;
  opacity: 0.95;
}

/* Botones iguales a product */
.btn {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
  text-align: center;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.04);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px 0 22px;
  color: var(--muted);
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .gifts-grid {
    gap: 16px;
  }
}
:root {
  --bg: #FAF9F5; /* fondo nude */
  --ink: #1a1a1a; /* texto principal */
  --muted: #6b6b6b; /* texto secundario */
  --card: #ffffff; /* tarjetas blancas */
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
  --gap: 24px;
  --accent: #BDB6A8; /* color acento */
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(to bottom, rgba(250, 249, 245, 0.9), rgba(250, 249, 245, 0.6));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.back-btn {
  display: inline-block;
  margin: 14px 0;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}

.back-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--gap);
  padding: 32px 0 56px;
  align-items: stretch; /* imagen y pasos mismo alto */
}

.product-media {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.payment-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-title {
  margin: 0;
  font-size: clamp(24px, 2.4vw + 8px, 36px);
  line-height: 1.15;
}

.product-desc {
  margin: 4px 0 8px;
  color: var(--muted);
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.steps-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.steps-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.bank-box {
  margin: 10px 0 8px;
  padding: 12px;
  background: #f7f6f3;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.bank-box span {
  color: var(--muted);
  font-weight: 500;
  margin-right: 6px;
}

code {
  background: #f3f2ee;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.confirm-text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.link {
  color: var(--ink);
  text-underline-offset: 3px;
}

.btn {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.04);
}

@media (max-width: 980px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-media img {
    height: clamp(260px, 40vh, 460px);
  }
}/*# sourceMappingURL=basicservice.css.map */