:root{
  --koum-primary:#e3b35b;
  --koum-secondary:#952617;
  --koum-accent:#CB8947;
  --koum-dark:#000000;
  --koum-text:#161616;
  --koum-light:#f7f2ea;
  --koum-white:#ffffff;
  --koum-success:#CB8947;
  --koum-border:#eadbc2;
  --koum-gradient: linear-gradient(135deg, #952617 0%, #CB8947 52%, #e3b35b 100%);
}

body{
  color: var(--koum-text);
  background: #fff;
}

.koum-section{
  background-color: var(--koum-light);
  padding: 90px 0;
  position: relative;
}

.koum-bg-dark{
  background-color: #000;
}
.koum-bg-white{
  background-color: #fff;
}
.koum-bg-oro{
  background-color: #e3b35b !important;
}

.koum-title{
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--koum-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

.koum-title-white{
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.koum-subtitle{
  font-size: 1.08rem;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  max-width: 650px;
}

.koum-text{
  font-size: 1rem;
  line-height: 1.8;
  color: var(--koum-text);
}

.koum-badge{
  display: inline-block;
  background: rgba(255,255,255,.10);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(227,179,91,.18);
}

.koum-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
}

.koum-btn-primary{
  background: var(--koum-primary);
  color: var(--koum-dark);
  box-shadow: 0 10px 25px rgba(227,179,91,.28);
}

.koum-btn-primary:hover{
  transform: translateY(-2px);
  color: var(--koum-dark);
  background: #edc16f;
  box-shadow: 0 14px 28px rgba(227,179,91,.34);
}

.koum-btn-outline{
  border: 1px solid rgba(227,179,91,.55);
  color: #fff;
  background: rgba(227,179,91,.08);
}

.koum-btn-outline:hover{
  background: rgba(227,179,91,.16);
  color: #fff;
  transform: translateY(-2px);
}

.koum-hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.82)),
    url('../img/banner1.png') center/cover no-repeat;
}

.koum-hero::before{
  content:"";
  position:absolute;
  width: 420px;
  height: 420px;
  background: rgba(227,179,91,.08);
  border-radius: 50%;
  top: -120px;
  right: -100px;
  filter: blur(10px);
}

.koum-hero::after{
  content:"";
  position:absolute;
  width: 300px;
  height: 300px;
  background: rgba(149,38,23,.24);
  border-radius: 50%;
  bottom: -80px;
  left: -50px;
  filter: blur(20px);
}

.koum-hero-title{
  font-size: 3.4rem;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}

.koum-hero-highlight{
  color: var(--koum-primary);
}

.koum-hero-points{
  margin-top: 28px;
}

.koum-hero-point{
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
}

.koum-hero-point .dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--koum-primary);
  box-shadow: 0 0 0 6px rgba(227,179,91,.16);
}

.koum-hero-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.koum-hero-card img{
  border-radius: 22px;
  width: 100%;
  object-fit: cover;
}

.koum-floating-stat{
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,.12);
  min-width: 200px;
  border: 1px solid rgba(227,179,91,.18);
}

.koum-stat-1{
  top: 12%;
  right: -20px;
}

.koum-stat-2{
  bottom: 10%;
  left: -20px;
}

.koum-floating-stat strong{
  display:block;
  color: var(--koum-dark);
  font-size: 1rem;
}

.koum-floating-stat span{
  color: var(--koum-text);
  font-size: .92rem;
}

.koum-card{
  background: #000;
  border: 1px solid rgba(227,179,91,.14);
  border-radius: 24px;
  padding: 34px 28px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: .3s ease;
}

.koum-card h3,
.koum-card p{
  color: #fff;
}

.koum-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,.28);
}

.koum-icon{
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.bg-koum-primary{
  background: linear-gradient(135deg,#952617,#CB8947);
}

.bg-koum-orange{
  background: linear-gradient(135deg,#CB8947,#e3b35b);
}

.bg-koum-green{
  background: linear-gradient(135deg,#e3b35b,#CB8947);
}

.koum-section-light{
  background: var(--koum-light);
}

.koum-section-dark{
  background: var(--koum-gradient);
  color: #fff;
}

.koum-mini-title{
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--koum-secondary);
  margin-bottom: 10px;
}

.koum-bg-dark .koum-mini-title,
.koum-section-dark .koum-mini-title{
  color: var(--koum-primary);
}

.koum-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.koum-list li{
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--koum-text);
  line-height: 1.7;
}

.koum-list li::before{
  content:"✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(227,179,91,.18);
  color: var(--koum-secondary);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

.koum-feature-box{
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(180deg, #f2dfb7 0%, #e9c987 100%);
  border: 1px solid var(--koum-border);
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  height: 100%;
}

.koum-steps{
  position: relative;
}

.koum-step{
  background: linear-gradient(180deg, #f0d9a8 0%, #e3b35b 100%);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(17,24,39,.08);
  height: 100%;
  position: relative;
  border: 1px solid rgba(149,38,23,.12);
}

.koum-step-number{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.koum-cta-box{
  background: linear-gradient(135deg, rgba(149,38,23,.98), rgba(203,137,71,.95));
  border-radius: 32px;
  padding: 60px 40px;
  color: #fff;
  box-shadow: 0 25px 50px rgba(149,38,23,.22);
}

.koum-cta-box h2{
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.koum-cta-box p{
  color: rgba(255,255,255,.9);
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.koum-image-box{
  position: relative;
}

.koum-image-box img{
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,.14);
}

.koum-divider{
  width: 80px;
  height: 5px;
  border-radius: 999px;
  background: var(--koum-gradient);
  margin: 18px auto 0;
}

/* =========================
    NOSOTROS
========================= */
.koum-nosotros{
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../img/banner2.png') top/cover no-repeat;
}

.koum-nosotros::before{
  content:"";
  position:absolute;
  width: 620px;
  height: 620px;
  background: rgba(227,179,91,.2);
  border-radius: 50%;
  top: 0px;
  right: 0px;
  filter: blur(100px);
}

.koum-nosotros::after{
  content:"";
  position:absolute;
  width: 300px;
  height: 300px;
  background: rgba(149,38,23,.1);
  border-radius: 50%;
  bottom: -80px;
  left: -50px;
  filter: blur(20px);
}
/* =========================
    PRODUCTOS
========================= */
.koum-productos{
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
    url('../img/banner1.png') top/cover no-repeat;
}

.koum-productos::before{
  content:"";
  position:absolute;
  width: 420px;
  height: 420px;
  background: rgba(227,179,91,.2);
  border-radius: 50%;
  top: -120px;
  right: -100px;
  filter: blur(10px);
}

.koum-productos::after{
  content:"";
  position:absolute;
  width: 300px;
  height: 300px;
  background: rgba(149,38,23,.1);
  border-radius: 50%;
  bottom: -80px;
  left: -50px;
  filter: blur(20px);
}
/* =========================
    PRODUCTO ITEM
========================= */
.koum-producto-item{
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.koum-producto-item::before{
  content:"";
  position:absolute;
  width: 620px;
  height: 620px;
  background: rgba(227,179,91,.4);
  border-radius: 50%;
  top: -120px;
  right: -100px;
  filter: blur(50px);
}

.koum-producto-item::after{
  content:"";
  position:absolute;
  width: 600px;
  height: 600px;
  background: rgba(149,38,23,.3);
  border-radius: 50%;
  bottom: -80px;
  left: -50px;
  filter: blur(60px);
}

/* =========================
    PRODUCTOS SLIDER
========================= */
.koum-products-slider-wrapper{
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.koum-products-slider{
  overflow: hidden;
  width: 100%;
}

.koum-product-track{
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.koum-product-item{
  flex: 0 0 25%;
  padding: 0 10px;
  box-sizing: border-box;
}

.koum-product-card{
  background: #fff;
  border-radius: 24px;
  padding-top:20px;
  padding-bottom: 20px;
  box-shadow: 0 12px 30px rgba(17,24,39,.06);
  border: 1px solid #efe2cf;
  height: 100%;
  text-align: center;
  transition: .3s ease;
}

.koum-product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(17,24,39,.10);
}

.koum-product-image{
  padding:5px;
  margin-bottom: 10px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.koum-product-image img{
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.koum-product-card h4{
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--koum-dark);
  margin-bottom: 10px;
}

.koum-product-card p{
  font-size: .96rem;
  line-height: 1.7;
  color: var(--koum-text);
  margin-bottom: 18px;
  min-height: 82px;
}

.koum-slider-btn{
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--koum-secondary);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
  flex-shrink: 0;
}

.koum-slider-btn:hover{
  background: var(--koum-primary);
  color: var(--koum-dark);
  transform: translateY(-2px);
}

.koum-slider-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

/* =========================
   FOOTER
========================= */
.koum-footer{
  background: #000;
  color: rgba(255,255,255,.82);
  padding: 70px 0 25px;
}

.koum-footer-app{
  background:#000;
  color: #fff;
  padding: 0px 0 25px;
}

.koum-footer-brand h3{
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.koum-footer-brand p{
  line-height: 1.8;
  margin-bottom: 0;
}

.koum-footer-title{
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.koum-footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.koum-footer-links li{
  margin-bottom: 12px;
}

.koum-footer-links a,
.koum-footer-links span{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: .25s ease;
}

.koum-footer-links a:hover{
  color: var(--koum-primary);
}

.koum-footer-social{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.koum-footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .25s ease;
}

.koum-footer-social a:hover{
  background: var(--koum-primary);
  color: var(--koum-dark);
  transform: translateY(-2px);
}

.koum-footer-bottom{
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: .95rem;
}

.koum-footer-bottom a{
  color:#fff;
}

.koum-footer-bottom a:hover{
  color: var(--koum-primary);
}

@media (max-width: 991px){
  .koum-hero-title{
    font-size: 2.5rem;
  }

  .koum-title,
  .koum-title-white{
    font-size: 2rem;
  }

  .koum-floating-stat{
    position: static;
    margin-top: 15px;
    min-width: auto;
  }

  .koum-section{
    padding: 70px 0;
  }

  .koum-product-item{
    flex: 0 0 50%;
  }

  .koum-slider-btn{
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 575px){
  .koum-hero{
    padding-top: 150px;
    padding-bottom: 20px;
  }

  .koum-hero-title{
    font-size: 2.1rem;
  }

  .koum-title,
  .koum-title-white{
    font-size: 1.7rem;
  }

  .koum-cta-box{
    padding: 40px 22px;
  }

  .koum-cta-box h2{
    font-size: 2rem;
  }

  .koum-product-item{
    flex: 0 0 100%;
  }

  .koum-products-slider-wrapper{
    gap: 10px;
  }

  .koum-product-card p{
    min-height: auto;
  }
  .koum-producto-item::before{
    content:"";
    position:absolute;
    width: 420px;
    height: 420px;
    background: rgba(227,179,91,.2);
    border-radius: 50%;
    top: 0px;
    right: 10px;
    filter: blur(50px);
  }

  .koum-producto-item::after{
    content:"";
    position:absolute;
    width: 400px;
    height: 400px;
    background: rgba(149,38,23,.3);
    border-radius: 50%;
    bottom:0px;
    left: 10px;
    filter: blur(60px);
  }
}

.activo{
  color:#e3b35b;
}

.inactivo{
  color:#fff;
}

/* TOOTITP para red */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #CB8947;
  opacity: 1!important;
}

.tooltip .tiptext {
  visibility: hidden;
  width: 150px;
  background-color:#952617;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 10px 12px;
  position: absolute;
  z-index: 1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tooltip .tiptext::after {
  content: "";
  position: absolute;
  border-width: 5px;
  border-style: solid;
}

.tooltip:hover .tiptext {
  visibility: visible;
}

.tooltip.arriba .tiptext{
  margin-left: -60px;
  bottom: 150%;
  left: 50%;
}

.tooltip.arriba .tiptext::after{
  margin-left: -5px;
  top: 100%;
  left: 50%;
  border-color: #952617 transparent transparent transparent;
}

/* Colores */
.text-color1{
  color: #952617 !important;
}

.text-color2{
  color: #CB8947 !important;
}

.text-color3{
  color: #e3b35b !important;
}

.text-color4{
  color: #000 !important;
}
