﻿
:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --gray: #8a8a8a;
  --light: #f5f5f5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


@media (max-width: 900px){

html{
zoom: calc(100vw / 1100);
}

}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  background: #000;
  z-index: 1000;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* LOGO */
.logo img {
  height: 34px; /* ajustable según logo */
  display: block;
}

/* MENU */
nav a {
  margin-left: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding-top: 64px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* BUTTONS */
.btn {
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.btn.primary{
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 14px 34px;
  font-weight: 600;
  border: 1px solid #000;
  transition: background 0.25s ease, color 0.25s ease;
}



.btn.secondary {
  border: 1px solid var(--black);
  color: var(--black);
}

.btn.secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section.dark {
  background: var(--black);
  color: var(--white);
}

.section.light {
  background: var(--light);
}

.section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 600px;
  color: var(--gray);
  margin-bottom: 40px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  padding: 40px;
  border: 1px solid #eaeaea;
  text-align: center;
  font-weight: 600;
  border-radius: 16px;
  background: var(--white);
}

/* FOOTER */
.footer {
  padding: 8000px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}
.hero-modular {
  position: relative;
  padding-top: 100PX;
  padding-bottom: 100px;
  background-image: url("assets/fondo-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay suave para legibilidad */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

/* TEXTO */
.hero-text h1 {
  font-family: "Khand", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 0.95;
  margin: 16px 0;
  letter-spacing: -0.5px;
}


.hero-text p {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0px;
  max-width: 480px;
}


.hero-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #000;
  color: #BEBEBE;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* IMAGEN */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.hero-visual {
  display: flex;
  justify-content: center;
  overflow: hidden; /* clave para que no rompa */
}

.hero-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.06);
}

.hero-info {
  margin-top: 15px;
  margin-bottom: 30px;
}

.hero-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-info ul {
  list-style: none;
  padding: 0;
}

.hero-info li {
  font-size: 15px;
  margin-bottom: 3px;
  padding-left: 22px;
  position: relative;
  color: #333;
}

/* tilde / check */
.hero-info li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 13px;
}

.btn.primary:hover {
  background: #fff;
  color: #000;
}


.intro-section {
  padding: 20px 0;
  background: #fff;
}

.intro-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-content h2 {
  font-family: "Helvetica", sans-serif;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}

.intro-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}



.paths-section {
  padding: 10px 0;
  background: #fff;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD BASE */
.path-card {
  border-radius: 24px;
  padding: 48px 40px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* IMAGEN */
.path-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 32px;
}

/* TITULO */
.path-card h3 {
  font-family: "Helvetica", sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* TEXTO */
.path-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}

/* VARIANTES DE FONDO */
.path-configurador {
  background: linear-gradient(
    120deg,
    #eef1f7,
    #e6ebf5,
    #678bda
  );
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
}


.path-diseno {
  background: linear-gradient(
    120deg,
    #fff2c6,
    #e8a6ce,
    #ffebc8
  );
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.btn.secondary-soft {
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 14px 34px;
  font-weight: 600;
  transition: background 0.25s ease;
  cursor:pointer;
}

/* Hover sutil */
.btn.secondary-soft:hover {
  background: linear-gradient(135deg, #3c3c3c, #2a2a2a);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 18px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}







.qualities-section {
  padding: 50px 0;
  background: #fff;
}

.qualities-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.qualities-header h2 {
  font-family: "Helvetica", sans-serif;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}

.qualities-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}




.qualities-images {
  padding: 160px 0;
}

.qualities-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;   /* centra en eje Y */

}
.quality-img {
  border-radius: 32px;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.quality-img img {
  width: 100%;
  display: block;
}
.quality-img:hover {
  transform: scale(1.1);
}


.products-section {
   padding: 50px 0;
   background: #000;
}

/* Header */
.products-header {
  margin-bottom: 10px;
}

.products-header h2 {
  font-family: "Helvetica", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.products-header p {
  font-size: 18px;
  color: #fff;
}

/* Wrapper */
.products-wrapper {
  position: relative;
}

/* Slider */
.products-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 1fr);
  gap: 24px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 50px 48px;


  scrollbar-width: none;
}
.products-slider::-webkit-scrollbar {
  display: none;
}

/* Product */
.product-card {
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  transition: transform 0.4s ease;
}

.product-card img {
  width: 100%;
  display: block;
}

.product-card:hover {
  transform: scale(1.10);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  transition: background 0.2s ease;
}

.slider-btn:hover {
  background: #222;
}

.slider-btn.left {
  left: -100px;
}

.slider-btn.right {
  right: -100px;
}


.products-cta {
  margin-top: 10px;
  text-align: center;
}


.products-cta .btn {
  background: #fff;
  color: #000;
  font-size: 15px;
  border: 1px solid #000;
}

.products-cta .btn:hover {
  background: #393d42;
  color: #fff;

}



.reviews-section {
  padding: 30px 0;
  background: #fff;
  text-align: center;
}

.reviews-section h2 {
  font-family: "Helvetica", sans-serif;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}

.reviews-intro {
  max-width: 720px;
  margin: 0 auto 15px;
  color: #000;
  font-size: 18px;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

/* Card */
.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.stars {
  color: #7fbf9e;
  font-size: 39px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.verified {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: #3aa76d;
  font-weight: 600;
}

/* CTA */
.reviews-cta {
  background: #dff5df;
  border-radius: 20px;
  padding: 32px;
}

.reviews-cta p {
  margin-bottom: 16px;
  font-size: 15px;
}

.reviews-cta .brand {
  color: #00b67a;
  font-weight: 600;
}

/* Botón verde */
.btn-review {
  background: #000;
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  display: inline-block;
}

.btn-review:hover {
  background: #393d42;
}


.social-section {
  padding: 120px 0;
  text-align: center;
  min-height: 600px;      
  background-image: url("assets/fondo-IG2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


.social-section h2 {
  font-family: "Helvetica", sans-serif;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}

.social-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}

/* Iconos */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.social-icons a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.6;
}

/* Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.social-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card img {
  width: 100%;
  display: block;
}

.social-card:hover {
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}


.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 120px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ccc;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #777;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.mydesign-hero {
  padding: 140px 0;
  position: relative;
  padding-top: 300PX;
  padding-bottom: 300px;
  background-image: url("assets/servicios/midiseno/fondomidiseno.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mydesign-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* TEXTO */

.mydesign-text h1 {
  font-family: "Khand", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 0.95;
  margin: 16px 0;
  letter-spacing: -0.5px;
  color: #fff;
}

.mydesign-text p {
  font-size: 18px;
  color: #fff;
  max-width: 480px;
  margin-bottom: 32px;
}
.mydesign-intro {
  padding: 20px 0;
  text-align: center;
}




.mydesign-selector {
  padding: 50px 0;
  background: #fff;
}

/* BOTONES ARRIBA */
.mydesign-options.top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

/* CARD / BOTÓN */
.design-option {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e5e5;
  padding: 28px 26px 32px;
  text-align: left;
  cursor: pointer;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease;
}

/* TITULO */
.design-option h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

/* TEXTO */
.design-option p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* HOVER */
.design-option:hover {
  transform: translateY(-6px);
  border-color: #000;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.12),
    0 2px 6px rgba(0,0,0,0.08);
}

/* ACTIVO */
.design-option.active {
  border-color: #000;
  background: #fff;
  box-shadow:
    0 24px 50px rgba(0,0,0,0.16),
    0 0 0 1px rgba(0,0,0,0.04);
}



/* IMAGEN */
.mydesign-center {
  text-align: center;
}

.mydesign-center img {
  max-width: 700px;
  margin-bottom: 50px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.super-diseno {
  padding: 20px 0;
  background:#0b0b0b;
  text-align: center;
}

/* TITULO ARCOIRIS */
.super-title {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1px;
  padding: 20px 0;
  color: #ffee00;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* SUB */
.super-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

/* TEXTO */
.super-text {
  font-size: 17px;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}







.faq-section {
  background: #0b0b0b;
  padding: 20px 0;
  color: #fff;
}



/* LISTA */
.faq-list {
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* PREGUNTA */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 26px 0;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICONO */
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* RESPUESTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}

/* ACTIVO */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* SECCION FORM */
.design-form-section {
  background: #0b0b0b;
  text-align: center;
  padding: 20px 0 20px;
  color: #0b0b0b;
}

.design-form-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

/* FORM */
.design-form {
  max-width: 600px;
  margin: 0 auto;

}

/* GRUPO */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  align-items: stretch;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 14px 16px;
  color: #000;
  font-size: 14px;
  resize: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* BOTON WHATSAPP */
.design-form .btn.secondary-soft {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  border-radius: 999px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER */
.design-form .btn.secondary-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.production-calendar {
  padding: 20px 0;
  margin-bottom: 50px;
  background: #fff;
  color: #000;
}

.calendar-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.calendar-subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.calendar-box {
  max-width: 520px;
  margin: 0 auto;
}

.calendar-month {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* TABLA */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 24px;
}

.calendar-table th {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
}

.calendar-table td {
  padding: 10px 0;
  font-size: 14px;
}

/* HOY */
.calendar-table .today {
  background: #0a66c2;
  color: #fff;
}

/* PRODUCCION */
.calendar-table .production-range td,
.calendar-table td.production-range {
  background: #dcecf9;
}

/* FECHA ENVIO */
.calendar-table .ship-date {
  background: #00a859;
  color: #fff;
  font-weight: 700;
}

/* LEYENDA */
.calendar-legend {
  display: flex;
  gap: 24px;
  font-size: 13px;
  margin-bottom: 20px;
}

.calendar-legend .legend {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.legend.today { background: #0a66c2; }
.legend.production { background: #dcecf9; }
.legend.ship { background: #00a859; }

/* NOTA */
.calendar-note {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.calendar-table td.production {
  background: #dcecf9;
}

.calendar-table td.today {
  background: #0a66c2;
  color: #fff;
  font-weight: 700;
}

.calendar-table td.ship {
  background: #00a859;
  color: #fff;
  font-weight: 700;
}


.entregaentiempo-hero {
  padding: 140px 0;
  position: relative;
  padding-top: 300PX;
  padding-bottom: 300px;
  background-image: url("assets/servicios/entregaentiempo/entregaentiempo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}




/* CONTENEDOR FULL WIDTH */
.ventaja-nav {
  background: #0b0b0b;
  padding: 20px 0;
  margin-top: 0px;
}

/* CONTENIDO CENTRADO */
.ventaja-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/* BOTONES */
.ventaja-btn {
  padding: 14px 32px;
  border-radius: 999px;
  background: #0b0b0b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER */
.ventaja-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* DESACTIVADO */
.ventaja-btn.disabled {
  opacity: 0.25;
  pointer-events: none;
}

.diezodiezmil-hero {
  padding: 140px 0;
  position: relative;
  padding-top: 300PX;
  padding-bottom: 300px;
  background-image: url("assets/servicios/diezodiezmil/diezodiezmil.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}





.cases-section {
  padding: 50px 0;
  background: #fff;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

/* CARD */
.case-card {
  position: relative;
}

.case-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.case-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
}

/* ICONO SIMPLE */
.case-icon {
  font-size: 32px;
  margin-bottom: 40px;
}

/* PERSONA */
.case-person img {
  max-width: 500px;
  display: block;
  margin-bottom: 24px;
}

/* TEXTO */
.case-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.case-author {
  font-size: 13px;
  color: #777;
}

/* CASO GRANDE */
.case-card.pattern {
  position: relative;
}

/* PATRON */
.case-pattern {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  font-size: 22px;
  opacity: 0.12;
  z-index: 0;
}

.case-card.pattern * {
  position: relative;
  z-index: 1;
}



.produccionpropia-hero {
  padding: 140px 0;
  position: relative;
  padding-top: 300PX;
  padding-bottom: 300px;
  background-image: url("assets/servicios/produccionpropia/produccionpropia.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


.production-own {
  padding: 50px 0;
  background: #fff;
}

/* HEADER */
.production-header {
  max-width: 700px;
  margin-bottom: 120px;
}

.production-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
}

.production-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  margin: 16px 0;
}

.production-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* ITEM */
.production-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 20px;
}

/* INVERSO */
.production-item.reverse {
  direction: rtl;
}
.production-item.reverse * {
  direction: ltr;
}

/* IMAGEN */
.production-image img {
  width: 100%;
  border-radius: 32px;
  transition: transform 0.5s ease;
}

.production-image img:hover {
  transform: scale(1.05);
}

/* TEXTO */
.production-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.production-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}















/* GRID */
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* CARD */
.ventaja-card {
  padding: 36px 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #eaeaea;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* TITULO */
.ventaja-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

/* TEXTO */
.ventaja-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* HOVER */
.ventaja-card:hover {
  transform: translateY(-6px);
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.reposicionesgarantizadas-hero {
  padding: 140px 0;
  position: relative;
  padding-top: 300PX;
  padding-bottom: 300px;
  background-image: url("assets/servicios/reposicionesgarantizadas/reposicionesgarantizadas2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.image-block {
  padding: 50px 0;
}

.image-block img {
  width: 100%;
  border-radius: 32px;
  display: block;
}
.soportecercano-hero {
  padding: 140px 0;
  position: relative;
  padding-top: 300PX;
  padding-bottom: 300px;
  background-image: url("assets/servicios/soportecercano/soportecercano.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* CONTENEDOR */
.dropdown-menu.dark {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #000;
  padding: 18px 0;
  min-width: 280px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 999;
}

/* LINKS */
.dropdown-menu.dark a {
  display: block;
  padding: 12px 28px;
  color: #eaeaea;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s ease;
}

/* HOVER */
.dropdown-menu.dark a:hover {
  background: #1c1c1c;
  color: #fff;
  padding-left: 34px;
}

/* ACTIVACIÓN */
.dropdown:hover .dropdown-menu.dark {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


/* =========================
   VENTAJAS STORY - DROP
========================= */

.ventajas-story {
  width: 100%;
}


/* HERO */
.ventajas-hero {
  text-align: center;
  padding-top: 150PX;
  padding-bottom: 150px;
  background-image: url("assets/ventajas.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

}

.ventajas-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ventajas-hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}

.ventajas-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* PASOS */
.ventajas-steps {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 140px;
}

.ventaja-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* INVERTIDO */
.ventaja-step.reverse {
  direction: rtl;
}

.ventaja-step.reverse * {
  direction: ltr;
}

/* CENTRADO */
.ventaja-step.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* TEXTO */
.ventaja-text h2 {
  font-size: 36px;
  font-weight: 700;
}

.ventaja-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 520px;
}


/* LISTA */
.ventaja-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.ventaja-text li {
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.ventaja-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 13px;
}

/* LINK */
.link {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

/* BADGE */
.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  background: #000;
  color: #bebebe;
  padding: 6px 14px;
  border-radius: 20px;
}

/* IMAGEN */
.ventaja-media img {
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  display: block;
}

/* CTA FINAL */
.ventajas-cta {
  background: #0b0b0b;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.ventajas-cta h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.ventajas-cta p {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 32px;
}

/* MOBILE */
@media (max-width: 900px) {
  .ventaja-step {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ventajas-steps {
    gap: 80px;
    padding-bottom: 100px;
  }
}
/* =========================
   TIMELINE VENTAJAS
========================= */

.timeline-layout {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  position: relative;
}

/* LINEA */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* linea vertical */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e5e5;
}

/* ITEM */
.timeline-item {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 120px; /* mismo ritmo que los steps */
  z-index: 1;
}

/* ACTIVO (opcional) */
.timeline-item.active {
  background: #000;
  color: #fff;
}

/* CONTENIDO */
.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* MOBILE: se oculta */
@media (max-width: 900px) {
  .timeline-layout {
    grid-template-columns: 1fr;
  }

  .timeline {
    display: none;
  }
}
.ventajas-icons {
  display: flex;
  padding-top: 50PX;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.ventaja-icon {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all .25s ease;
}

.ventaja-icon.active {
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.ventaja-panel {
  display: none;
}

.ventaja-panel.active {
  display: block;
}

/* =========================
   HOW WORKS (PASO 1/2/3)
========================= */

.how-works {
  padding: 110px 0;
  background: #fff;
}

.how-works-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px auto;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

/* Cada paso: lateral + card */
.how-step {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 25px;
  align-items: stretch;
}

/* Lado izquierdo: badge + linea */
.how-step-side {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.how-badge {
  width: 140px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.how-step-number {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.how-step-icon {
  font-size: 20px;
}

.how-line {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 70px);
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
}

/* Card derecha */
.how-step-card {
  border-radius: 22px;
  padding: 28px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.how-step-card h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  line-height: 1.2;
}

.how-step-card p {
  margin: 0 0 18px 0;
  opacity: 0.85;
  line-height: 1.6;
}

/* Lista de checks */
.how-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.how-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.how-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

/* Pie del paso */
.how-step-foot {
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.how-tip {
  font-size: 13px;
  opacity: 0.75;
}

/* CTA intermedio */
.how-cta {
  max-width: 980px;
  margin: 50px auto 0 auto;
}

.how-cta-box {
  border-radius: 22px;
  padding: 26px 26px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #0b0b0b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.how-cta-text h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
}

.how-cta-text p {
  margin: 0;
  opacity: 0.8;
}

.how-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA FINAL */
.designer-cta {
  padding: 110px 0;
  background: radial-gradient(circle at center, #111 0%, #000 70%);
  color: #fff;
}

.designer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.designer-cta-text h2 {
  margin: 0 0 10px 0;
  font-size: 44px;
  line-height: 1.1;
}

.designer-cta-text p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

.designer-cta-actions {
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .how-step {
    grid-template-columns: 1fr;
  }

  .how-step-side {
    justify-content: flex-start;
    justify-content: flex-start;
  }

  .how-line {
    display: none;
  }

  .how-badge {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .designer-cta-text h2 {
    font-size: 34px;
  }
}











/* ======================
   BLOQUE ELECCIÓN
====================== */

.drop-choice {
  padding: 50px 0;
  background: #0b0b0b;
  color: white;
}

.drop-choice-header {
  text-align: center;
  margin-bottom: 40px;
}

.drop-choice-header h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.drop-choice-header p {
  opacity: 0.8;
}

.drop-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.drop-option {
  padding: 50px 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.drop-option:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
}

.drop-option-badge {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.7;
  letter-spacing: 1px;
}

.drop-option-badge.pro {
  color: #ffcc00;
}

.drop-option h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.drop-option-desc {
  opacity: 0.85;
  margin-bottom: 25px;
}

.drop-option ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.drop-option li {
  margin-bottom: 10px;
  opacity: 0.85;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .drop-choice-grid {
    grid-template-columns: 1fr;
  }

  .drop-choice-header h2 {
    font-size: 36px;
  }
}
/* ======================
   BOTÓN OPCIÓN PRO
====================== */

.pro-option .btn {
  background: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
  transition: all 0.3s ease;
}

.pro-option .btn:hover {
  background: #ffcc00;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}
/* BOTÓN CONFIGURADOR */
.web-option .btn {
  background: white;
  color: black;
}

.web-option .btn:hover {
  background: #eaeaea;
}












.socios-hero {
  padding:  120px 0 10px 0;
  background: linear-gradient(180deg, #f0f0f0 0%, #ffffff 100%);
  text-align: center;
}

.socios-hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px auto;
  display: block;
}


.socios-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.socios-hero p {
  max-width: 820px;
  margin: 0 auto 35px auto;
  font-size: 18px;
  line-height: 1.6;
}


/* ======================
   SOCIOS MODELO VISUAL
====================== */

.socios-modelo {
  padding: 10px 0; /* ajustá el número */

  background: #fff;
}

.socios-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 70px;
}

/* Contenedor imágenes */
.socios-imagenes {
  display: grid;
  grid-template-columns: 380px 380px;  /* mismo ancho que las imágenes */
  gap: 60px;
  justify-content: center;
  margin-bottom: 50px;
}

/* Imagenes */
.socios-img {
  width: 100%;
  max-width: 380px;   /* probá 400px / 450px / 550px */
  height: auto;
  border-radius: 26px;
  transition: 0.4s ease;
  margin: 0 auto;     /* para que queden centradas */
  display: block;
}

.socios-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .socios-imagenes {
    grid-template-columns: 1fr;
  }

  .socios-title {
    font-size: 32px;
  }
}


.socios-modelo h2 {
  text-align: center;
  margin-bottom:  15px;
}




.socios-modelo-grid,
.proceso-grid,
.resumen-grid {
  display: grid;
  gap: 40px;
}

.socios-modelo-grid {
  grid-template-columns: 1fr 1fr;
}
.modelo-card img {
  width: 100%;
  max-width: 220px;   /* controla el tamaño */
  height: auto;
  object-fit: contain;
  margin: 20px auto 30px auto;
  display: block;
}




.proceso-grid {
  grid-template-columns: repeat(4, 1fr);
}

.resumen-grid {
  grid-template-columns: repeat(3, 1fr);
}

.modelo-card,
.proceso-card {
  padding: 30px;
  border-radius: 20px;
  background: #fafafa;
  text-align: center;
}

.modelo-highlight span {
  font-size: 42px;
  font-weight: 800;
}

.proceso-card.destacado {
  background: #f3e1a0;
}


@media (max-width: 900px) {
  .socios-modelo-grid,
  .proceso-grid,
  .resumen-grid {
    grid-template-columns: 1fr;
  }
}


.socios-bloque-imagen {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.socios-img-central {
  width: 100%;
  max-width: 900px;   /* ajustalo si lo querés más chico (800px / 1000px) */
  height: auto;
  display: block;
}


.cta-socios {
  background: #0b0b0b;
  color: #fff;
  padding: 50px 0; /* más grande */
  text-align: center;
}

.cta-inner {
  max-width: 850px; /* un poco más ancho */
  margin: 0 auto;
}

.cta-socios h2 {
  font-size: 40px; /* más grande */
  margin-bottom: 18px;
  font-weight: 700;
}

.cta-socios p {
  font-size: 20px; /* más presencia */
  opacity: 0.85;
  margin-bottom: 50px;
}

/* BOTÓN DORADO */
.btn-cta {
  display: inline-block;
  padding: 18px 46px;
  background: linear-gradient(135deg, #d4af37, #f1c75b);
  color: #0b0b0b;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
}

.btn-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(212,175,55,0.45);
}





.section.light {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
}


.top-stats {
  margin: 40px 0 80px 0;
}

.drop-stats {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 180px;
}

.stat h3 {
  font-size: 42px;
  margin-bottom: 6px;
  font-weight: 700;
}

.stat p {
  font-size: 14px;
  color: #666;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 20px;
}

.about-highlight {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-media img,
.about-media video {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.instagram-embed {
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}


.about-media video {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  max-height: 700px;
}

.about-hero {
  position: relative;
  padding-top: 200px;
  padding-bottom: 160px;
  background-image: url("assets/fondo-nosotros.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-eyebrow {
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.6;
}

.about-title {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 0.95;
  max-width: 1000px;
}

@media (max-width: 900px) {
  .about-title {
    font-size: 42px;
  }
}



/* ======================
   PROOF / STATS SECTION
====================== */


/* CTA */
.proof-cta{
  margin-top: 40px;
  text-align:center;
}
.proof-section{
  padding: 0px 0 30px;
  background:#fff;
}

.proof-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

/* Cards */
.proof-card{
  background:#bdbdbd;
  border-radius: 22px;
  padding: 26px 26px;
  color:#fff;
  overflow:hidden;
}

.proof-card-wide{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 18px;
  min-height: 110px;
}



.proof-row{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.proof-left{ display:flex; flex-direction:column; }

/* Numbers */
.proof-big{
  display:flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  font-size: 56px;
}

.proof-big-sm{ font-size: 48px; }
.proof-big-xl{ font-size: 100px; }

.proof-prefix{ opacity: 0.95; }

.proof-label{
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
  color:#fff;
}

/* Sub */
.proof-sub{
  margin-top: 12px;
  font-size: 20px;
  opacity: 0.95;
  color:#fff;
}

/* Right card */
.proof-right-card{
  background:#000;
  border-radius: 22px;
  padding: 26px 26px 18px;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content: space-between;
}
/* FORZAR TEXTO BLANCO EN LA CARD NEGRA */
.proof-right-card,
.proof-right-card *{
  color: #fff;
}


.proof-sub-white{ color:#fff; opacity: 1; margin-top: 6px; }

.proof-logos{
  width:100%;
  height:auto;
  display:block;
  margin-top: 14px;
  border-radius: 14px;
}



/* Stars animation */
.stars-anim{
  position: relative;
  display:inline-block;
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.stars-base{
  color: rgba(255,255,255,0.35);
}

.stars-fill{
  position:absolute;
  left:0; top:0;
  width:0%;
  overflow:hidden;
  color:#ead561;
  transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Responsive */
@media (max-width: 900px){
  .proof-grid{ grid-template-columns: 1fr; }
  .proof-big-xl{ font-size: 64px; }
  .proof-label{ font-size: 24px; }
}



/* ==========================
   PRESUPUESTADOR DROP
========================== */

/* ==========================
   PRESUPUESTADOR DROP
========================== */

.presupuestador-section {
  padding: 100px 0;
  background: #fff;
}

.presupuestador-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.presupuestador-config h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.presupuestador-sub {
  margin-bottom: 50px;
  color: #555;
}

.config-block {
  margin-bottom: 50px;
}

.config-block h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* CALIDAD */

.quality-options {
  display: flex;
  gap: 16px;
}
/* COLORES CALIDADES */

.quality-btn {
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid #000;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

/* PRO */
.quality-btn.pro.active {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #fff;
}

/* ELITE */
.quality-btn.elite.active {
  background: #faed0b;
  border-color: #faed0b;
  color: #000;
}

/* LEGEND */
.quality-btn.legend.active {
  background: #6c3cff;
  border-color: #6c3cff;
  color: #fff;
}

/* PRODUCTOS */

.product-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}

.product-dropdown {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

.product-qty {
  width: 120px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  text-align: center;
}

/* EXTRAS */

/* EXTRAS TOGGLE */

.extras-toggle {
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid #000;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.extras-toggle.active {
  background: #000;
  color: #fff;
}

.extras-container {
  margin-top: 25px;
  display: none;
}

.extras-container.active {
  display: block;
}

/* PAGOS */

.payment-btn {
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid #000;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
}

.payment-btn:hover,
.payment-btn.active {
  background: #000;
  color: #fff;
}

.payment-btn.descuento {
  border-color: #00a859;
  color: #00a859;
}

.payment-btn.descuento.active,
.payment-btn.descuento:hover {
  background: #00a859;
  color: #fff;
}

.payment-note {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 4px;
}

/* RESUMEN */

.presupuestador-resumen {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.resumen-card {
  border: 1px solid #eaeaea;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

/* COLORES DINÁMICOS RESUMEN */

.resumen-card.pro {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #fff;
}

.resumen-card.elite {
  background: #faed0b;
  border-color: #faed0b;
  color: #000;
}

.resumen-card.legend {
  background: #6c3cff;
  border-color: #6c3cff;
  color: #fff;
}

/* que las líneas internas respeten el color */
.resumen-card.pro .resumen-divider,
.resumen-card.elite .resumen-divider,
.resumen-card.legend .resumen-divider {
  background: rgba(255,255,255,0.3);
}

.resumen-card.elite .resumen-divider {
  background: rgba(0,0,0,0.2);
}


.resumen-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.resumen-divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.resumen-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.btn-continuar{
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;

  background: #000;
  color: #fff;

  border: none;
  border-radius: 10px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-continuar:hover{
  background: #222;
  transform: translateY(-2px);
}

.btn-continuar:active{
  transform: translateY(0);
}
/* RESPONSIVE */

@media (max-width: 900px) {
  .presupuestador-grid {
    grid-template-columns: 1fr;
  }

  .presupuestador-resumen {
    position: relative;
    top: 0;
  }
}




/* 🔥 BLOQUE DESCUENTO */
.resumen-promo-descuento {
  background: #4caf50;
  color: #000;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}



.resumen-promo-regalo {
  background: #E3F2FD;
  color: #000;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.resumen-fecha-top {
  background: #000;
  color: #ff4d4d;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

/* CONTENEDOR PROMOS */
.promo-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* CONTENEDOR PROMOS */
.promo-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* PROMOS MISMO ESTILO BASE QUE CALIDADES */
.promo-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* HOVER */
.promo-btn:hover {
  background: #000;
  color: #fff;
}

/* ACTIVO */
.promo-btn.active {
  background: #4CAF50;
  border-color: #4CAF50;
  color: #000;
}
.promo-info-box {
  margin-top: 12px;
  background: #1a1a1a;
  color: #ddd;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  border-left: 4px solid #4CAF50;
}
.remove-item{
  background: transparent;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: 0.2s;
}

.remove-item:hover{
  color: #ff3b3b;
  transform: scale(1.2);
}


.payment-options{
display:flex;
gap:10px;
margin-top:20px;
}

.payment-box{
margin-top:20px;
padding:20px;
border:1px solid #eee;
border-radius:10px;
background:#fafafa;
}

.localidad-options{
display:flex;
gap:10px;
margin-top:10px;
}

.descargar-btn{

background:#25c15a;
color:white;
border:none;
padding:12px 18px;
border-radius:25px;
font-weight:600;
cursor:pointer;
transition:all .2s ease;

}

.descargar-btn:hover{

background:#1ea94e;

}


.presupuestador-config{

padding-left:20px;
max-width:600px;

}

.presupuestador-config h1{

margin-bottom:10px;

}

.presupuestador-config h3{

margin-top:25px;
margin-bottom:15px;
font-size:18px;

}

.acciones-presupuesto{

display:flex;
gap:12px;
margin-bottom:25px;
align-items:center;

}

.payment-options{

display:flex;
gap:12px;
margin-bottom:20px;


}

.payment-box{

background:#f3f3f3;
padding:20px;
border-radius:12px;
margin-bottom:18px;

}

.payment-box h4{

margin-bottom:8px;

}
.localidad-options{

display:flex;
gap:10px;
margin-top:10px;
flex-wrap:wrap;

}


.localidad-btn{

cursor:pointer;
transition:all .2s ease;

}

.localidad-btn:hover:not(.active){

background:#000;

}

.localidad-btn.active{

background:#000;
color:#fff;
border-color:#000;

}
.whatsapp-btn{

background:#25D366;
color:white;
border:none;
padding:12px 18px;
border-radius:25px;
font-weight:600;
cursor:pointer;
margin-top:15px;
display:inline-block;

}

.whatsapp-btn:hover{

background:#1ebe5a;

}

#btn-continuar-pago{
cursor:pointer;
}


.payment-btn:hover{
background:#000 !important;
color:#FFF !important;
}

.payment-btn{
cursor:pointer;
}

.payment-options{
display:flex;
gap:12px;
margin-top:10px;
}

.payment-btn{

padding:12px 20px;
border-radius:30px;
border:2px solid #ddd;
background:#f8f8f8;
font-weight:600;
cursor:pointer;
transition:all .2s ease;

}

.payment-btn:hover:not(.active){

background:#ececec;

}

.payment-btn.active{

background:#000;
color:#fff;
border-color:#000;

}


#bloque-monto-pago{

margin-top:14px;

}

#bloque-monto-pago .resumen-line{

font-size:15px;

}

#bloque-monto-pago .resumen-line strong{

font-size:18px;
font-weight:700;

}


.btn-wsp{

margin-top:12px;
background:#25D366;
color:#fff;
border:none;
padding:12px 18px;
border-radius:25px;
font-weight:600;
cursor:pointer;
transition:.2s;

}

.btn-wsp:hover{

background:#1ebe5a;

}


.volver-presupuesto{

margin-top:10px;
text-align:center;
margin-bottom:20px;

}

.btn-volver{

background:#f1f1f1;
color:#000;
padding:12px 18px;
border-radius:25px;
text-decoration:none;
font-weight:600;
transition:.2s;

}

.btn-volver:hover{

background:#e3e3e3;

}

.cta-presupuesto-banner{

padding:50px 0;

}

.cta-banner-grid{

background:#0e0e0e;
border-radius:20px;

display:flex;
align-items:center;
justify-content:space-between;

padding:30px 30px;

overflow:hidden;

}

.cta-banner-text{

max-width:420px;
color:white;

}

.cta-banner-text h2{

font-size:36px;
margin-bottom:10px;

}

.cta-banner-text p{

opacity:.8;
margin-bottom:20px;

}

.cta-banner-visual img{

height:210px;
transition:.35s ease;

}

.cta-banner-visual img:hover{

transform:scale(1.15);

}

.cta-banner-text .btn{

transition:.3s ease;

}

.cta-banner-text .btn:hover{

background:linear-gradient(
90deg,
#ff6a00,   /* PRO */
#ffe600,   /* ELITE */
#7a3cff    /* LEGEND */
);

color:black;
transform:translateY(-2px);

}



/* =======================
CATALOGO PRODUCTOS
======================= */

.productos-catalogo{

padding-top:120px;
padding-bottom:100px;

}

.catalogo-title{

font-size:48px;
margin-bottom:10px;

}

.catalogo-sub{

color:#666;
margin-bottom:60px;
font-size:18px;

}


/* GRID */

.productos-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;

}


/* CARD */

.producto-card{

background:#fff;
border-radius:18px;
overflow:hidden;
border:1px solid #eee;
text-decoration:none;
color:#000;

transition:.3s;

display:flex;
flex-direction:column;

}

.producto-card:hover{

transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.1);

}


/* IMAGE */

.producto-img{

aspect-ratio:1/1;
overflow:hidden;

}

.producto-img img{

width:100%;
height:100%;
object-fit:cover;

transition:transform .4s ease;

}

.producto-card:hover img{

transform:scale(1.08);

}


/* INFO */

.producto-info{

padding:20px;

}

.producto-info h3{

font-size:20px;
margin-bottom:8px;

}

.producto-precio{

font-size:16px;
display:block;
margin-bottom:8px;

}

.producto-link{

font-size:14px;
opacity:.7;

}


/* MOBILE */

@media (max-width:700px){

.catalogo-title{

font-size:36px;

}

}

/* ======================
PRODUCTO PAGE
====================== */

.producto-hero{

padding-top:120px;
padding-bottom:30px;

}

.producto-hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.producto-imagen-principal img{

width:100%;
border-radius:20px;

}

.producto-descripcion{

color:#666;
margin:20px 0;

}

.producto-precio-base{

font-size:22px;
margin-bottom:20px;

}


/* GALERIA */

.producto-galeria{

padding:20px 0;

}

.producto-galeria h2{
  text-align: center;
  margin-bottom: 12px;
}

.galeria-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;

}

.galeria-grid img{

width:100%;
border-radius:16px;

}


/* CALIDADES */

.calidades-producto{

padding:80px 0;
background:#f7f7f7;

}

.calidades-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;

}

.calidad-card{

background:#fff;
padding:30px;
border-radius:20px;
text-align:center;

}

.calidad-card img{

width:100%;
border-radius:12px;
margin-bottom:20px;

}


/* DETALLES */

.producto-detalles{

padding:80px 0;

}

.producto-lista{

list-style:none;
padding:0;

}

.producto-lista li{

margin-bottom:10px;

}


/* CTA */

.producto-cta{

padding:100px 0;
background:#000;
color:#fff;
text-align:center;

}

.producto-cta-box{

max-width:700px;
margin:auto;

}

.producto-cta-box p{

opacity:.8;
margin:20px 0;

}


/* MOBILE */

@media (max-width:900px){

.producto-hero-grid{

grid-template-columns:1fr;

}

.calidades-grid{

grid-template-columns:1fr;

}

}
}


.producto-acciones{

display:flex;
gap:15px;
margin-top:20px;

}

/* MODAL TALLES */
.modal-talles{

position:fixed;
inset:0;

background:rgba(0,0,0,.8);

display:none;

align-items:center;
justify-content:center;

z-index:9999;

}

/* CONTENEDOR */

.modal-talles-contenido{

position:relative;
display:flex;
justify-content:center;
align-items:center;

}

/* IMAGEN */

.modal-talles img{

max-width:90vw;
max-height:90vh;

}

/* BOTON CERRAR */

.cerrar-modal{

position:absolute;
top:-40px;
right:-40px;

font-size:32px;
color:white;
cursor:pointer;

}

@media (max-width:768px){

.modal-talles img{

max-width:95vw;
max-height:80vh;

}

.cerrar-modal{

top:10px;
right:15px;

font-size:32px;

}

}




.selector-calidades{

padding:30px 0;

}

.selector-calidades h2{
  text-align: center;
}

.calidades-cards{


margin-top:20px;
display:flex;
gap:30px;
flex-wrap:wrap;

}

.calidad-card{

position:relative;

flex:1;
min-width:260px;

padding:20px;

border-radius:30px;

cursor:pointer;

transition:.25s ease;

color:#000;
background:#fff;

display:flex;
flex-direction:column;

}





.calidad-card:hover{
transform:translateY(-6px) scale(1.02);
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}


.calidad-card.active{

transform:scale(1.10);

box-shadow:0 10px 40px rgba(0,0,0,0.15);


}



/* COLORES */

.calidad-card.pro.active{
background:#ff6400;
color:#000;
}

.calidad-card.elite.active{
background:#ffe600;
color:#000;
}

.calidad-card.legend.active{
background:#7b3fcf;
color:#fff;
}

.calidad-card h3{

font-size:40px;
margin-bottom: 0px;

}

.calidad-sub{

font-weight:600;
margin-bottom:10px;

}

.calidad-lista{

list-style:none;
padding:0;
margin-bottom:10px;

}

.calidad-lista li{

margin-bottom:3px;

font-size:15px;

}

.calidad-precio{



margin-top:auto;   /* 🔥 empuja el precio hacia abajo */
font-size:25px;
margin-bottom:5px;


}


.modal-galeria{

position:fixed;
inset:0;

background:rgba(0,0,0,0.9);

display:none;
align-items:center;
justify-content:center;

z-index:9999;

}

.modal-galeria img{

max-width:85%;
max-height:85%;
border-radius:12px;

}

.cerrar-galeria{

position:absolute;
top:30px;
right:40px;

font-size:32px;
color:white;
cursor:pointer;

}

.flecha{

position:absolute;
top:50%;
transform:translateY(-50%);

font-size:50px;
color:white;
cursor:pointer;
user-select:none;

}

.flecha.izquierda{
left:40px;
}

.flecha.derecha{
right:40px;
}

.galeria-grid img{
cursor:pointer;
transition:transform .3s ease;
}

.galeria-grid img:hover{
transform:scale(1.03);
}



.disenos-camisetas{
margin-top:30px;
padding:60px 0;
background:#f7f7f7;
overflow:hidden;

}

.disenos-title{

text-align:center;
font-size:42px;
margin-bottom:40px;

}

/* SLIDER */

.slider-camisetas{

overflow:hidden;
position:relative;

}

.slider-track{

display:flex;
gap:40px;

animation:scrollCamisetas 25s linear infinite;

}

/* IMAGEN */

.slider-track img{

height:230px;
object-fit:contain;

transition:transform .3s ease;

}



/* ANIMACION */

@keyframes scrollCamisetas{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


.disenos-cta{

margin-top:40px;
text-align:center;

}

.disenos-texto{

max-width:800px;
margin:40px auto 10px auto;

text-align:center;
color:#555;

font-size:17px;
line-height:1.6;

}


.calidad-card.disabled{
opacity:.45;
cursor:not-allowed;
transform:none !important;
}

.calidad-card.disabled:hover{
transform:none;
}

.calidad-no-disponible{
margin-top:12px;
font-weight:700;
font-size:14px;
color:#c62828;
}

@media (max-width: 1500px){

.container{
max-width:100%;
padding:0 16px;
}

}








.dropbot{

position:fixed;
bottom:25px;
right:25px;

z-index:9999;

}

/* BOTON */

.dropbot-toggle{

width:60px;
height:60px;

background:#25D366;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:28px;
cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,0.25);

}

/* CHAT */

.dropbot-chat{

position:absolute;
bottom:80px;
right:0;

width:300px;

background:white;

border-radius:16px;

box-shadow:0 20px 50px rgba(0,0,0,0.2);

display:none;

overflow:hidden;

}

/* HEADER */

.dropbot-header{

background:#000;
color:white;

padding:14px;

font-weight:600;

}

/* BODY */

.dropbot-body{

padding:16px;
font-size:14px;

}

/* MENSAJE BOT */

.bot-msg{

margin-bottom:14px;

}

/* BOTONES */

.bot-options button{

width:100%;

margin-bottom:8px;

padding:10px;

border-radius:8px;

border:1px solid #eee;

background:#f7f7f7;

cursor:pointer;

transition:.2s;

}

.bot-options button:hover{

background:#000;
color:white;

}

.bot-btn{

display:block;
margin-top:10px;

background:#000;
color:white;

padding:10px;

border-radius:8px;

text-align:center;
text-decoration:none;

font-weight:600;

}

.bot-btn:hover{

background:#333;

}

.bot-back{

margin-top:8px;
width:100%;

padding:8px;

border-radius:8px;

border:1px solid #ddd;

background:#f5f5f5;

cursor:pointer;

}

.bot-btn-wsp{

display:block;
margin-top:10px;

background:#25D366;
color:white;

padding:10px;

border-radius:8px;

text-align:center;
text-decoration:none;

font-weight:600;

}

.bot-btn-wsp:hover{
background:#1ebe5a;
}

/* FIX DROPBOT MOBILE */

@media (max-width:900px){

.dropbot{

transform: scale(calc(1100 / 100vw));
transform-origin: bottom right;

}

}

/* FIX DROPBOT MOBILE */

@media (max-width:1200px){

.dropbot{

transform: scale(calc(1100 / 100vw));
transform-origin: bottom right;

}

}
/* DROPBOT MOBILE FIX REAL */

@media (max-width:1200px){

.dropbot{

position:fixed;

bottom:20px;
right:20px;

transform:scale(2);
transform-origin:bottom right;

}

}