
    :root {
      --blue:      #4A7FA5;
      --blue-dark: #2f5f80;
      --blue-light:#5BBAE8;
      --gold:      #F5A623;
      --gold-dark: #d48c10;
      --white:     #ffffff;
      --off-white: #f7f9fb;
      --charcoal:  #1c2b38;
      --mid:       #4a5f6e;
      --light:     #7a8e9a;
      --border:    #d0dde6;
      --card-bg:   #eef4f8;
      --radius:    10px;
      --radius-lg: 18px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

body{
  font-family: 'DM Sans', sans-serif;

  color: var(--charcoal);

  overflow-x: hidden;

  background-color: var(--white);

  background-image:

    linear-gradient(
      rgba(28,43,56,0.028) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(28,43,56,0.028) 1px,
      transparent 1px
    );

  background-size: 18px 18px;
}
    /* ========== NAVBAR ========== */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 0 clamp(24px, 6vw, 90px);
      display: flex; align-items: center; justify-content: space-between;
      height: 70px;
    }
    .logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-icon {
      overflow:hidden;
      width: 40px; height: 40px; border-radius: 50%;
      border: 2px solid var(--blue-light);
      display: flex; align-items: center; justify-content: center;
      background: var(--white);
    }
    .logo-icon img{
  width: 100%;
  height: 100%;

  object-fit: contain;
}
    .logo-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 20px; font-weight: 600; letter-spacing: 2px;
      color: var(--blue);
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a{
  padding: 10px 14px;

  border-radius: 10px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  color: var(--mid);

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}   .nav-links a:hover{
  background: rgba(74,127,165,0.08);

  color: var(--blue);

  transform: translateY(-1px);
}nav{
  width: 100%;
}
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .btn-sm-outline {
      padding: 8px 20px; border: 1.5px solid var(--blue); border-radius: 6px; background: transparent;
      font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
      color: var(--blue); cursor: pointer; transition: all 0.2s;
    }
    .btn-sm-outline:hover { background: var(--blue); color: var(--white); }
    .btn-sm-primary {
      padding: 8px 20px; border: none; border-radius: 6px; background: var(--gold);
      font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
      color: var(--white); cursor: pointer; transition: background 0.2s;
    }
    .btn-sm-primary:hover { background: var(--gold-dark); }

    /* ========== HERO ========== */
#hero {
  min-height: 720px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: 40px;

  padding: 80px clamp(24px, 6vw, 90px);
  gap: 40px;

  position: relative;
  overflow: hidden;

background: #0b1620;
}
.hero-bg{
  position: absolute;
  inset: 0;

  opacity: 0;

  transition:
    opacity 1.8s ease,
    transform 7s ease;

  transform: scale(1);

  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;

  will-change: transform, opacity;
}

.hero-bg::after{
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
    rgba(10,18,28,0.46) 0%,
      rgba(10,18,28,0.42) 30%,
      rgba(10,18,28,0.18) 58%,
      rgba(10,18,28,0.08) 100%
    );
}

.hero-bg:nth-child(1){
  background-image: url('../img/hero-banner-1.webp');
}

.hero-bg:nth-child(2){
  background-image: url('../img/hero-banner-2.webp');
}

.hero-bg:nth-child(3){
  background-image: url('../img/hero-banner-3.webp');
}

.hero-bg.active{
  opacity: 1;
  transform: scale(1.06);
}
    #hero::before {
      content: ''; position: absolute; top: -120px; right: -120px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(91,186,232,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    #hero::after {
      content: ''; position: absolute; bottom: -80px; left: 30%;
      width: 280px; height: 280px; border-radius: 50%;
      background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-text { max-width: 680px; position: relative; z-index: 5; }
    .hero-eyebrow {
      display: inline-block; font-size: 11px; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
    }
    .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 78px);
line-height: 1.02;
  color: white;
  margin-bottom: 26px;
  font-weight: 700;
}
    .hero-title em { font-style: italic; color: var(--blue); }
    .hero-title em {
  color: #6bb8ff;
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 42px;
  max-width: 620px;
}    

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-lg-primary {
      position: relative;

overflow: hidden;

animation: heroGlow 3s ease-in-out infinite;
      padding: 14px 32px; border: none; border-radius: 7px; background: var(--gold);
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--white);
      cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
    }
    .btn-lg-primary::after{
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.45),
      transparent
    );

  transform: skewX(-18deg);

  animation: shine 4.5s infinite;
}

@keyframes shine{

  0%{
    left:-120%;
  }

  40%{
    left:140%;
  }

  100%{
    left:140%;
  }

}

@keyframes heroGlow{

  0%,100%{
    box-shadow:
      0 0 0 rgba(74,127,165,0);
  }

  50%{
    box-shadow:
      0 0 28px rgba(74,127,165,0.35);
  }

}
    .btn-lg-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(74,127,165,0.3); }
    .btn-lg-outline {
      padding: 14px 32px; border: 1.5px solid var(--charcoal); border-radius: 7px; background: transparent;
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--charcoal);
      cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
    }
    .btn-lg-outline:hover { background: var(--charcoal); color: var(--white); }

    .hero-visual {
        align-items: center;
justify-content: center;
      position: relative; height: 540px;
      display: grid; grid-template-columns: 1fr 1.3fr; grid-template-rows: 1fr 1fr; gap: 14px;
    }

    /* ========== SHARED ========== */
    .section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: block; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--charcoal); margin-bottom: 14px; line-height: 1.15; }
    .section-sub { font-size: 16px; color: var(--mid); margin-bottom: 56px; }
    .pill-divider { width: 48px; height: 3px; border-radius: 99px; background: var(--gold); margin: 14px 0 26px; }
    .link-arrow { font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
    .link-arrow:hover { gap: 8px; }

    /* ========== VENTAJAS ========== */
    .advantages-minimal{
  display:grid;
text-align:center;
  grid-template-columns: repeat(3,1fr);

  gap: 40px;

  margin-top: 70px;
}

.adv-item{
  text-align:center;
}

.adv-item img{
  width: 140px;
  height: 140px;

  object-fit: contain;

  margin-bottom: 24px;
}

.adv-item h3{
  font-size: 22px;

  margin-bottom: 12px;

  color: var(--charcoal);
}

.adv-item p{
  font-size: 15px;

  line-height: 1.7;

  color: var(--mid);

  max-width: 280px;

  margin: 0 auto;
}

@media (max-width:960px){

  .advantages-minimal{
    grid-template-columns:1fr;

    gap:60px;
  }

}
    #ventajas { padding: 100px clamp(24px, 6vw, 90px); background: var(--off-white); }
    .feat-card:hover { box-shadow: 0 12px 36px rgba(74,127,165,0.12); transform: translateY(-2px); }
.feat-icon{
  display: none;
}
    .feat-card-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
    .feat-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
    .feat-card-sm-desc { font-size: 13px; line-height: 1.6; color: var(--mid); margin-bottom: 20px; }

    /* ========== NOSOTROS ========== */
    #nosotros { padding: 100px clamp(24px, 6vw, 90px); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-img {
      border-radius: var(--radius-lg); overflow: hidden; height: 480px;
background-image: url('../img/nosotros-main.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
      box-shadow: 0 24px 60px rgba(74,127,165,0.15);
    }
    .brand-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin: 24px 0 32px; }

.brand-chip{
  display:flex;
  align-items:center;

  gap:10px;

  font-size:14px;

  color: var(--mid);

  font-weight:500;
}
.brand-chip img{
  width: 20px;
  height: 20px;

  object-fit: contain;
}

    /* ========== ORIGEN ========== */
    #origen { padding: 100px clamp(24px, 6vw, 90px); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--off-white); }
    .origen-img {
      border-radius: var(--radius-lg); height: 460px;
background-image: url('../img/origen-main.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    /* ========== TESTIMONIOS ========== */
    #testimonios { padding: 100px clamp(24px, 6vw, 90px); text-align: center; }

    
    .testi-card{
  width: 420px;

  min-height: 250px;

  flex-shrink: 0;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(74,127,165,0.12);

  border-radius: 26px;

  padding: 34px;

  transition:
    transform .35s ease,
    box-shadow .35s ease;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  align-items:center;

  text-align:center;
}

.testi-card:hover{
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(74,127,165,0.12);
}

.testimonials-slider{
  overflow:hidden;

  position:relative;

  margin-top:60px;
}

.testimonials-slider::before,
.testimonials-slider::after{
  content:"";

  position:absolute;

  top:0;
  bottom:0;

  width:140px;

  z-index:2;

  pointer-events:none;
}

.testimonials-slider::before{
  left:0;

  background:
    linear-gradient(
      to right,
      var(--white) 0%,
      rgba(255,255,255,0) 100%
    );
}

.testimonials-slider::after{
  right:0;

  background:
    linear-gradient(
      to left,
      var(--white) 0%,
      rgba(255,255,255,0) 100%
    );
}

.testimonials-track{
  display:flex;

  align-items:stretch;

  gap:24px;

  width:fit-content;

animation: scrollTestimonials 42s linear infinite;
}

@keyframes scrollTestimonials{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(calc(-50% - 12px));
  }

}

.testi-quote{
  font-size:16px;

  line-height:1.8;

  color:var(--mid);

  margin:22px 0;

  display:-webkit-box;
  -webkit-line-clamp:4;

  -webkit-box-orient:vertical;

  overflow:hidden;
}

.verified-badge{
  display:inline-flex;

  align-items:center;

  gap:6px;

  font-size:12px;

  font-weight:600;

  color:var(--blue);

  margin-bottom:22px;
}
    .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars{
  font-size:24px;

  letter-spacing:2px;

  color:var(--gold);
}
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-light), var(--blue));
      display: flex; align-items: center; justify-content: center;
      color: white; font-weight: 700; font-size: 15px; flex-shrink: 0;
    }
    .testi-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
    .testi-role { font-size: 12px; color: var(--light); }

    /* ========== CTA ========== */
    #cta {
      padding: 100px clamp(24px, 6vw, 90px); text-align: center;
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #3d8fbf 100%);
      position: relative; overflow: hidden;
    }
    .cta-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
    .cta-sub { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 40px; position: relative; z-index: 1; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-cta-gold {
      padding: 15px 36px; border: none; border-radius: 7px; background: var(--gold);
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--white);
      cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
    }
    .btn-cta-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
    .btn-cta-white {
      padding: 15px 36px; border: 1.5px solid rgba(255,255,255,0.7); border-radius: 7px; background: transparent;
      font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600; color: var(--white);
      cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
    }
    .btn-cta-white:hover { background: rgba(255,255,255,0.15); }
    .cta-tags { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 48px; position: relative; z-index: 1; }
    .cta-tag { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; }
    .cta-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

    /* ========== CATÁLOGO ========== */
    #catalogo { padding: 100px clamp(24px, 6vw, 90px); background: var(--off-white); }
    .cat-card:hover { box-shadow: 0 10px 30px rgba(74,127,165,0.12); transform: translateY(-2px); }
.cat-icon{
  display: none;
}
.catalog-slider{
  overflow:hidden;

  margin-top: 70px;

  position: relative;
}

.catalog-slider::before,
.catalog-slider::after{
  content:"";

  position:absolute;

  top:0;
  bottom:0;

  width:180px;

  z-index:2;

  pointer-events:none;
}

.catalog-slider::before{
  left:0;

  background:
    linear-gradient(
      to right,
      var(--off-white) 0%,
      rgba(247,249,251,0) 100%
    );
}

.catalog-slider::after{
  right:0;

  background:
    linear-gradient(
      to left,
      var(--off-white) 0%,
      rgba(247,249,251,0) 100%
    );
}

.catalog-track{
  display:flex;

  align-items:center;

  gap: 60px;

  width:max-content;

  animation: scrollCatalog 34s linear infinite;
}

.catalog-track img{
  width: 320px;
  height: 320px;

  object-fit: contain;

  flex-shrink:0;

  transition:
    transform .35s ease,
    opacity .35s ease;

  opacity:.92;
}

.catalog-track img:hover{
  transform: translateY(-8px) scale(1.04);

  opacity:1;
}

.testimonials-slider::before,
.testimonials-slider::after{
  content:"";

  position:absolute;

  top:0;
  bottom:0;

  width:140px;

  z-index:2;

  pointer-events:none;
}

.testimonials-slider::before{
  left:0;

  background:
    linear-gradient(
      to right,
      var(--white) 0%,
      rgba(255,255,255,0) 100%
    );
}

.testimonials-slider::after{
  right:0;

  background:
    linear-gradient(
      to left,
      var(--white) 0%,
      rgba(255,255,255,0) 100%
    );
}

@keyframes scrollCatalog{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(calc(-50% - 30px));
  }

}

@media (max-width:960px){

  .catalog-track img{
    width:220px;
    height:220px;
  }

}

@media (max-width:960px){

  .testi-card{
    width: 320px;
    min-height: 230px;
  }

  .testimonials-track{
    animation-duration: 60s;
  }

}

.cat-featured-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
    .cat-featured-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
    .cat-featured-desc { font-size: 13px; color: var(--mid); margin-bottom: 18px; line-height: 1.6; }
    .cat-featured-btns { display: flex; gap: 10px; align-items: center; }

    /* ========== CONTACTO ========== */
    #contacto { padding: 100px clamp(24px, 6vw, 90px); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
    .contact-item { display: flex; gap: 16px; align-items: flex-start; }
    .contact-icon {
      width: 44px; height: 44px; border-radius: 10px; background: var(--card-bg);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
    .contact-item-title { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; }
    .contact-item-sub { font-size: 13px; color: var(--mid); }
    .contact-item-val { font-size: 14px; font-weight: 500; color: var(--blue); margin-top: 2px; }
    .contact-img {
      border-radius: var(--radius-lg); height: 420px;
background-image: url('../img/contacto-main.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
      box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

    /* ========== FOOTER ========== */
    footer { background: var(--charcoal); color: rgba(255,255,255,0.85); }
    .newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
    .newsletter-input:focus { outline: none; border-color: var(--blue-light); }
  
    .btn-newsletter:hover { background: var(--gold-dark); }
    .footer-bottom{
  padding: 26px clamp(24px, 6vw, 90px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;

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

  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.minimalist-footer div{
  line-height: 1.7;
}
  
    .social-icon:hover { background: var(--blue); color: white; }
    .social-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ========== ANIMATIONS ========== */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    .anim { animation: fadeUp 0.7s ease both; }
    .d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.18s; }
    .d3 { animation-delay: 0.3s; }  .d4 { animation-delay: 0.44s; }
.hero-visual {
  position: relative;
  width: 100%;
  height: 100vh;

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

  z-index: 5;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
    /* ========== RESPONSIVE ========== */
    @media (max-width: 960px) {
      nav { padding: 0 24px; }
.nav-links{
  display: flex;
}      #hero, #nosotros, #origen, #contacto { grid-template-columns: 1fr; padding: 60px 24px; }
      .hero-visual { height: 320px; }
      #ventajas, #testimonios, #catalogo, #cta { padding: 60px 24px; }
      .features-grid { grid-template-columns: 1fr; }
      .feat-main { grid-column: 1; grid-row: auto; }
      .catalogo-grid { grid-template-columns: 1fr; }
      .cat-featured { grid-column: 1; grid-row: auto; }
      .footer-newsletter { padding: 28px 24px; }
      .footer-bottom { padding: 20px 24px; }
      .newsletter-form { flex-wrap: wrap; }
      .newsletter-input { width: 100%; }
      #hero {
  grid-template-columns: 1fr;
  padding: 40px 24px 60px;
  gap: 40px;

  background-size: cover;
background-position: left center;
}

.hero-text {
  max-width: 100%;
}

.hero-title{
  font-size: clamp(42px, 11vw, 58px);
  line-height: 1.04;
}

.hero-subtitle{
  font-size: 15px;
  line-height: 1.75;
}

.hero-visual {
  height: auto;
  display: block;
}

}
    .whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: #25D366;
  color: white;

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

  box-shadow:
    0 12px 30px rgba(37,211,102,0.35);

  z-index: 99999;

  transition:
    transform .25s ease,
    box-shadow .25s ease;

  text-decoration: none;
}

.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 18px 40px rgba(37,211,102,0.45);
}

.whatsapp-float svg{
  width: 30px;
  height: 30px;
}

.quote-modal{
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.55);

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

  opacity: 0;
  pointer-events: none;

  transition: .3s ease;

  z-index: 999999;
}

.quote-modal.active{
  opacity: 1;
  pointer-events: auto;
}

.quote-modal-box{
  width: 100%;
  max-width: 580px;

  position: relative;

  padding: 42px;

  border-radius: 28px;

  overflow: hidden;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 100%
    );

  border: 1px solid rgba(74,127,165,0.08);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.14);
}
.quote-modal-box::before{
  content:"";

  position:absolute;

  top:0;
  left:0;
  right:0;

  height:50%;

  background:
    linear-gradient(
      to bottom,
      rgba(91,186,232,0.12),
      rgba(91,186,232,0)
    );

  pointer-events:none;
}
.quote-close{
  position: absolute;

  top: 16px;
  right: 16px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: #f1f1f1;

  cursor: pointer;

  font-size: 22px;
}

.quote-modal form{
  display: flex;
  flex-direction: column;
  gap: 14px;

  margin-top: 24px;
}

.quote-modal input,
.quote-modal textarea{
  width: 100%;
background: rgba(255,255,255,0.88);

transition:
  border .25s ease,
  box-shadow .25s ease;
  padding: 14px;

  border: 1px solid #dcdcdc;
  border-radius: 12px;

  font-family: inherit;
}

.quote-modal input:focus,
.quote-modal textarea:focus{
  outline:none;

  border-color: rgba(74,127,165,0.35);

  box-shadow:
    0 0 0 4px rgba(74,127,165,0.08);
}

.quote-modal button[type="submit"]{
  border: none;

  padding: 15px;

  border-radius: 12px;

  background: var(--blue);

  color: white;

  font-weight: 600;

  cursor: pointer;
}

.mobile-toggle{
  display: none;

  width: 46px;
  height: 46px;

  border: none;
  background: transparent;

  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span{
  width: 22px;
  height: 2px;

  background: var(--charcoal);

  border-radius: 999px;
}

@media (max-width:960px){

  .mobile-toggle{
  display:flex;
}

.nav-links{
  position: fixed;

  top: 70px;
  left: 0;
  right: 0;

  background: white;

  padding: 24px;

  flex-direction: column;
  gap: 18px;

  align-items: flex-end;
  text-align: right;

  border-bottom: 1px solid var(--border);

  display: flex;

  opacity: 0;
  pointer-events: none;

  transform: translateY(-20px);

  transition: .3s ease;

  z-index: 999;
}

.nav-links.active{
  opacity: 1;

  pointer-events: auto;

  transform: translateY(0);
}

  .nav-links{
    position: fixed;

    top: 70px;
    left: 0;
    right: 0;

    background: white;

    padding: 24px;

    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
text-align: right;

    border-bottom: 1px solid var(--border);

opacity: 0;
pointer-events: none;

transform: translateY(-20px);
    transition: .3s ease;

    z-index: 999;
  }

.nav-links.active{
  opacity: 1;
  pointer-events: auto;

  transform: translateY(0);
}

}

@media (max-width:640px){

  .quote-modal{
    padding: 18px;
  }

  .quote-modal-box{
    padding: 28px 20px;

    max-height: 90vh;

    overflow-y: auto;

    border-radius: 18px;
  }

}

.mobile-toggle.active span:nth-child(1){
  transform: rotate(45deg) translateY(10px);
}

.mobile-toggle.active span:nth-child(2){
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3){
  transform: rotate(-45deg) translateY(-10px);
}

.mobile-toggle span{
  transition: .3s ease;
}
.experience-number{
  margin: 18px 0 34px;
}

.experience-number span{
  display:block;

 font-size: clamp(92px,11vw,190px);

  line-height: .9;

  font-weight: 700;

color: rgba(74,127,165,0.22);
  letter-spacing: -4px;
}

.experience-number small{
  display:block;

  margin-top: 6px;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--blue);
}

.quote-title{
  display:flex;

  align-items:center;

  gap:14px;
}

.quote-title img{
  width:38px;
  height:38px;

  object-fit:contain;
}

.quote-title h3{
  font-size: 28px;

  color: var(--charcoal);
}

.reveal{
  opacity:0;

  transform: translateY(40px);

  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active{
  opacity:1;

  transform: translateY(0);
}

.reveal-delay-1{
  transition-delay:.08s;
}

.reveal-delay-2{
  transition-delay:.16s;
}

.reveal-delay-3{
  transition-delay:.24s;
}

@media (max-width:960px){

  .testimonials-slider::before,
  .testimonials-slider::after{
    display:none;
  }

}

.form-message{
  margin-top:14px;

  font-size:14px;

  font-weight:500;

  text-align:center;

  opacity:0;

  transform:translateY(6px);

  transition:.3s ease;
}

.form-message.show{
  opacity:1;

  transform:translateY(0);
}

.form-message.success{
  color:#1fa855;
}

.form-message.error{
  color:#d93025;
}

@media (max-width:960px){

  /* HERO */

  .hero-text{
    text-align:center;
    margin:0 auto;
  }

  .hero-btns{
    justify-content:center;
  }

  /* TITULOS GENERALES */

  .section-heading,
  .section-subheading,
  .section-divider{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

  /* SOLUCIONAMOS */

  .problem-copy{
    text-align:center;
  }

  .problem-list{
    width:fit-content;
    margin:0 auto;
  }

  .counter-wrap{
    text-align:center;
  }

  /* VENTAJAS */

  .advantages-minimal{
    text-align:center;
  }
 
  .advantage-item{
    text-align:center;
    text-align:center;
align-items:center;
  }

  /* CATALOGO */

  #catalogo{
    text-align:center;
  }

  #catalogo .btn-lg-primary{
    margin:0 auto;
  }

  /* HABLEMOS */

  .contact-copy{
    text-align:center;
  }

  /* FOOTER */

  footer{
    text-align:center;
  }

}

.btn-conversemos{
  display:inline-flex;
  align-items:center;
  gap:10px;

  font-size:18px;
  font-weight:600;
}

.phone-icon{
  width:18px;
  height:18px;

  fill:none;
  stroke:#fff;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;

  flex-shrink:0;
}