/*sobre nosotros */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
}

.body-color {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.team-card {
  background: rgb(255, 255, 255);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(21, 101, 192, 0.1);
  overflow: hidden;
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: auto;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(21, 101, 192, 0.1);

  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.15);
  margin-bottom: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.2);
  border-color: rgba(21, 101, 192, 0.2);

  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.team-role {
  display: block;
  text-align: center; /* ? centra el texto dentro */
  font-weight: 600;
  font-size: 0.9rem;
  color: #5e7b9c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #2c3e50;
  text-align: center;
}

.team-quote {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: #6c757d;
  flex-grow: 1;
  position: relative;
  padding: 0 10px;
}

.team-quote::before,
.team-quote::after {
  content: '"';
  font-size: 2rem;
  color: #1565c0;
  font-weight: bold;
  position: absolute;
  opacity: 0.3;
}

.team-quote::before {
  top: -10px;
  left: -5px;
}

.team-quote::after {
  bottom: -25px;
  right: -5px;
}

.mibuton a {
  text-decoration: none;
  color: white;
}

.mibuton a:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-5px);
}

.team-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff5e14;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.4);
  color: white;
}

.btn-primary:hover {
  background-color: #098b9a;
  border-color: #098b9a;
  transform: scale(1.05);
}

.inspiration-quote {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.inspiration-quote .quote-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
  padding: 30px;
}

.quote-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #1e88e5);
  border-radius: 2px;
}

.swiper-pagination-bullet {
  background: #1565c0;
  opacity: 0.3;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: linear-gradient(45deg, #1565c0, #1e88e5);
}

.grid-container2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .grid-container2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-container2 {
    grid-template-columns: 1fr;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.vision-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

        /* T tulo */
        .product-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.4;
            min-height: 2.6rem;
        }

        /* Precio */
        .product-price {
            color: #ff5e14;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
        }

        .product-price .currency {
            font-size: 1rem;
            color: #95a5a6;
            font-weight: 600;
        }


        
        .btn-qty {
            background: linear-gradient(135deg, #2ECC71 0%, #5ab25eff 100%);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-qty:hover {
            transform: scale(1.1);
            background-color: #00ff2aff;
            box-shadow: 0 4px 12px rgba(42, 255, 14, 0.4);
        }

        .btn-qty:active {
            transform: scale(0.95);
        }


                .quantity-control {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }


                .quantity-control input {
            width: 60px;
            height: 36px;
            text-align: center;
            border: 2px solid #e1e8ed;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .quantity-control input:focus {
            outline: none;
            border-color: #667eea;
        }



/* Control de cantidad */
.quantity-control button {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0.3rem 0.7rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.quantity-control button:hover {
  background: #eee;
}

/* Bot n */
        /* Bot n agregar */
        .btn-add {
            background: linear-gradient(135deg, #ff5e14 0%, #ff8a50 100%);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 10px;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(255, 94, 20, 0.3);
        }

        .btn-add:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 94, 20, 0.4);
            background: linear-gradient(135deg, #ff6b2b 0%, #ff9566 100%);
        }

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

        .btn-add i {
            margin-left: 0.5rem;
        }

.quantity-control input {
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  margin: 0.5rem 0;
  height: 2rem;
}

/* Bot n de favoritos con coraz n */
.favorite-btn {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.favorite-btn i {
  font-size: 1.2rem;
  color: #ddd;
  transition: all 0.3s ease;
}

.favorite-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 94, 20, 0.3);
}

.favorite-btn.active i {
  color: #ff5e14;
  animation: heartbeat 0.6s ease;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.2);
  }
}


/* Tarjetas de productos */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5e14, #ff8a50);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}


/* Grid base */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

/* Pantallas medianas (tablets o laptops peque as) */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  }

  .product-card {
    max-width: 350px;
  }
}

/* Pantallas peque as (celulares) */
@media (max-width: 576px) {
  .grid-container {
    grid-template-columns: 140%; /* 1 columna */
  }

  .product-card {
    max-width: 100%;
    transform: translateX(-15%);
  }
}

.icon-corazon {
  font-size: 20px;
  color: #e74c3c;
  cursor: pointer;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.heart-btn {
  color: #ddd;
  transition: color 0.3s ease, transform 0.3s ease;
}

.heart-btn:hover {
  color: #ff6b9d;
  transform: scale(1.2);
}

.heart-btn.active {
  color: #00a6ffff;
  animation: heartbeat 0.6s ease;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.rating-stars {
  margin-bottom: 12px;
}

.rating-stars i {
  color: #ffc107;
  font-size: 16px;
  margin-right: 2px;
}

/* Estilos del encabezados */
.dashboard-container {
  max-width: 1400px;
  margin: 20px auto;
  background-color: #f5f6fa;
  padding: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(22, 22, 22, 0.1);
}

@media screen and (max-width: 1010px) {
  .dashboard-container {
    padding: 20px;
    margin: 10px;
  }
}
.dashboard-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #0aa9ba;
  padding-bottom: 15px;
}

.dashboard-header h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin: 0;
}

.dashboard-header p {
  font-size: 0.9rem;
  color: #7f8c8d;
}

/* Estilos del banner de productos */

.dashboard-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dashboard-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.dashboard-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
}

.banner-section {
  margin: 0 80px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner-section img {
  filter: brightness(65%);
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.carousel-item.active img {
  transform: scale(1.03);
}

.banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.banner-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-caption p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-banner {
  background: #2d36afff;
  color: #ffffffff;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-banner:hover {
  background: #ffe066;
  transform: scale(1.05);
}

/* Personalizar flechas */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
  width: 2.5rem;
  height: 2.5rem;
}

/* Indicadores  */
.carousel-indicators [data-bs-target] {
  background-color: #ffcc00;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.product-section {
  margin: 3.5rem 80px;
}

/* Estilos del dashboard */

/* KPI CARDS */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.kpi-card {
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  color: #fff;
}

.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.flex-row {
  display: flex;
  width: 100%;
}

.items-center {
  align-items: center;
}

.full-width {
  width: 100%;
}

.col-four {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-eight {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

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

.kpi-icon {
  font-size: 2rem;
}

.kpi-label {
  font-size: 0.9rem;
  margin: 0;
}

.kpi-value {
  font-size: 1.6rem;
  font-weight: bold;
}

/* Colores de las cards */
.kpi-card-sales {
  background: #0f00e0;
  background: linear-gradient(
    200deg,
    /* Invert  el  ngulo para mantener la direcci n visual */ rgb(255, 229, 144)
      0%,
    /* tono m s claro al inicio */ rgba(255, 190, 80, 1) 50%,
    /* intermedio */ rgba(255, 130, 20, 1) 100% /* fuerte e intenso al final */
  );
}

.kpi-card-profit {
  background: linear-gradient(
    200deg,
    /* Invert  el  ngulo para mantener la direcci n visual */ rgb(255, 229, 144)
      0%,
    /* tono m s claro al inicio */ rgba(255, 190, 80, 1) 50%,
    /* intermedio */ rgba(255, 130, 20, 1) 100% /* fuerte e intenso al final */
  );
}

.kpi-card-customers {
  background: linear-gradient(
    200deg,
    /* Invert  el  ngulo para mantener la direcci n visual */ rgb(255, 229, 144)
      0%,
    /* tono m s claro al inicio */ rgba(255, 190, 80, 1) 50%,
    /* intermedio */ rgba(255, 130, 20, 1) 100% /* fuerte e intenso al final */
  );
}

.kpi-card-employees {
  background: linear-gradient(
    200deg,
    /* Invert  el  ngulo para mantener la direcci n visual */ rgb(255, 229, 144)
      0%,
    /* tono m s claro al inicio */ rgba(255, 190, 80, 1) 50%,
    /* intermedio */ rgba(255, 130, 20, 1) 100% /* fuerte e intenso al final */
  );
}

.modal-header {
  background: linear-gradient(
    200deg,
    /* Invert  el  ngulo para mantener la direcci n visual */ rgb(255, 229, 144)
      0%,
    /* tono m s claro al inicio */ rgba(255, 190, 80, 1) 50%,
    /* intermedio */ rgba(255, 130, 20, 1) 100% /* fuerte e intenso al final */
  );
  border-radius: 16px 16px 0 0;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

/* SECCI N DE GR FICOS Y CONTENIDO */
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.chart-box {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.chart-box h5 {
  margin: 0 0 3px 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.chart-box h3 {
  margin: 0 0 3px 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #111827;
}

.chart-box p {
  margin: 0 0 10px 0;
  color: #9ca3af;
  font-size: 0.75rem;
}

.chart-wrapper {
  position: relative;
  height: 180px;
  width: 90%;
}

.chart-wrapper.pie {
  height: 180px;
}

/* CARRUSEL DE INFORMACI N */
.carousel-panel {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carousel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.carousel-top h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #2c3e50;
}

.carousel-navigation {
  display: flex;
  gap: 10px;
}

.carousel-button {
  background: #ff5e14;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button:hover {
  background: #1f5f8b;
}

.carousel-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.slide-item {
  display: none;
  animation: fadeIn 0.5s;
}

.slide-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Tabla compacta */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.data-table th {
  background-color: #f8f9fa;
  padding: 8px;
  text-align: left;
  font-weight: 600;
  color: #475569;
  border-bottom: 2px solid #e5e7eb;
}

.data-table td {
  padding: 8px;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
}

.data-table tbody tr:nth-of-type(odd) {
  background-color: #f8f9fa;
}

/* Clientes compactos */
.info-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}

.info-item strong {
  font-size: 0.95rem;
  color: #2c3e50;
  display: block;
  margin-bottom: 4px;
}

.info-item p {
  margin: 4px 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.info-item a {
  color: #2980b9;
  text-decoration: none;
}

.info-item .amount-highlight {
  font-weight: bold;
  color: #27ae60;
}

.info-item:hover {
  background: #e0f7fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .charts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-panel {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .dashboard-container {
    padding: 15px;
    margin: 10px;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .charts-grid {
    grid-template-columns: 1fr;
  }

  .chart-wrapper {
    height: 200px;
  }
}

/* Estilo para el carrito de compras */

.encabezado {
  background-color: #f5f6fa;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin: 30px 0;
  text-align: center;
}

.main-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  color: #ff5e14;
  background-clip: text;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  letter-spacing: 1px;
  margin: 30px;
}

.cart-section,
.summary-section {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

/* Imagen del producto */
.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-category {
  display: inline-block;
  color: black;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-category i {
  margin-right: 0.3rem;
}

.table-custom thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.table-custom th,
.table-custom td {
  vertical-align: middle;
  text-align: center;
}

.badge-discount {
  background: #e7b34bff;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.price-original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.price-final {
  color: #28a745;
  font-weight: 700;
  font-size: 1.1rem;
}

.summary-total {
  background: #ff5e14;
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.btn-checkout {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(
    200deg,
    /* Invert  el  ngulo para mantener la direcci n visual */ rgb(255, 229, 144)
      0%,
    /* tono m s claro al inicio */ rgba(255, 190, 80, 1) 50%,
    /* intermedio */ rgba(255, 130, 20, 1) 100% /* fuerte e intenso al final */
  );
  border: none;
  border-radius: 12px;
  color: white;
  margin-top: 15px;
}

.btn-checkout:hover {
  background: linear-gradient(135deg, #d7850b 0%, #d7940e 100%);
  transform: translateY(-2px);
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.empty-cart i {
  font-size: 5rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

@media (max-width: 992px) {
  .summary-section {
    margin-top: 30px;
    position: relative;
    top: 0;
  }
}

/* Estilos para el formulario de login */

.contenerdor-login {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.login-container {
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 50px;
}

.login-image {
  background: url("https://img.freepik.com/fotos-premium/bolsas-compras-carrito-compras_93675-128155.jpg")
    center/cover no-repeat;
  min-height: 400px;
}

.login-form {
  padding: 40px 50px;
}

.login-form h2 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.login-form p {
  color: #6c757d;
  margin-bottom: 30px;
}

.input-group-text {
  background: #f1f3f5;
  border: none;
}

.form-control {
  border-left: none;
  background: #f8f9fa;
  box-shadow: none;
  border-color: #dee2e6;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
  background: #fff;
}

.btn-primary {
  border-radius: 10px;
  padding: 10px;
  font-size: 1rem;
}

.links a {
  color: #0d6efd;
  text-decoration: none;
  font-size: 0.9rem;
}

.links a:hover {
  text-decoration: underline;
}

.text-orange {
  color: #ff5e14;
}

/* Estilos para el perfil del usuario */

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #64748b;
  --success: #10b981;
  --danger: #ef4444;
  --light-bg: #f8fafc;
  --border-color: #e2e8f0;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 15px;
  padding-right: 8%;
  padding-bottom: 100px;
  padding-left: 8%;
}

/* Hacer que todas las tarjetas tengan la misma altura */
.section-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Columnas con altura igual */
.equal-height-row {
  display: flex;
  flex-wrap: wrap;
}

.equal-height-col {
  display: flex;
  flex-direction: column;
}

.profile-header {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.profile-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: #ff8214;
  background: linear-gradient(
    200deg,
    /* Invert  el  ngulo para mantener la direcci n visual */ rgb(255, 229, 144)
      0%,
    /* tono m s claro al inicio */ rgba(255, 190, 80, 1) 50%,
    /* intermedio */ rgba(255, 130, 20, 1) 100% /* fuerte e intenso al final */
  );
  z-index: 0;
}

.profile-avatar-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  background: white;
}

.avatar-upload-btn {
  position: absolute;
  bottom: 5px;
  right: calc(50% - 75px);
  background: #ff5e14;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.avatar-upload-btn:hover {
  background: #fc5c00ea;
  transform: scale(1.1);
}

.avatar-upload-btn input {
  display: none;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff5e14;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 0.25rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  color: #ff5e14;
  font-size: 1.1rem;
}

.form-label {
  font-weight: 600;
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-control:disabled {
  background-color: #f1f5f9;
  cursor: not-allowed;
}

.btn-custom {
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.btn-success-custom {
  background: #ff5e14;
  color: white;
}

.btn-success-custom:hover {
  background: #fc5c00ef;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn:hover {
  border-color: #ff5e14;
  background: #f8fafc;
  transform: translateY(-2px);
}

.action-btn.danger:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.action-btn i {
  font-size: 1.1rem;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  color: #ff5e14;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-orange {
  background-color: #ff5e14;
  border: none;
  color: white;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-orange:hover {
  background-color: #fc5c00ef;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  .profile-stats {
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-btn {
    min-width: 100%;
  }

  .section-card {
    padding: 1.5rem;
  }

  .profile-header {
    padding: 2rem 1rem;
  }
}

.but_login {
  background-color: #ff5e14;
  border: none;
  padding: 10px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.but_login:hover {
  background-color: #e14e0c;
}

.but_next {
  background-color: #ff5e14;
  border: none;
  padding: 10px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.but_next:hover {
  background-color: #e14e0c;
}

.nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
  color: #6c757d;
  border: none;
  padding: 12px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link:hover {
  color: #ff5e14;
  border-bottom: 3px solid #ffb399;
}

.nav-tabs .nav-link.active {
  color: #ff5e14;
  background-color: transparent;
  border-bottom: 3px solid #ff5e14;
  font-weight: 600;
}

.nav-tabs .nav-link i {
  margin-right: 5px;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
}
