* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Header tema claro ── */
header {
  box-shadow: 0px -1px 12px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
}
header .menu a { color: #000000; }
header .logo img { filter: none; }
header .btn #spn1, #spn2, #spn3 { background-color: #101010; }
header .user img {
  filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(62deg) brightness(107%) contrast(101%);
}
header .Bag .buy {
  filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(62deg) brightness(107%) contrast(101%);
}
header .count-products {
  background: #000000;
  color: #f0f0f0;
  border: 1px solid #f0f0f0;
}
header .count-products span { color: #f0f0f0; }

/* ── Base ── */
body {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  text-align: center;
}
.section {
  max-width: 1550px;
  margin: 0 auto;
}

/* ── Layout principal ── */
.container_base {
  padding: 120px 10% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Historia ── */
.fundation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
.history {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 820px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  text-align: left;
}
.cover-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-brand);
  background: rgba(4, 141, 152, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.history h1 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 22px;
}
.history .brand-text {
  color: var(--color-brand);
  font-weight: 700;
}
.history p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 12px;
}
.history .history-closing {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(4, 141, 152, 0.15);
}
.history b {
  color: #6639c5;
  font-weight: 700;
}

/* ── Misión / Visión ── */
.strategic_identity {
  display: flex;
  gap: 24px;
  width: 100%;
  margin-bottom: 50px;
}
.strategic_identity .mission,
.strategic_identity .vision {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.strategic_identity .description {
  padding: 28px 30px;
  text-align: left;
  height: 100%;
}
.strategic_identity .description h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 16px;
  padding: 0px 0px 12px 5px ;
  border-bottom: 2px solid rgba(4, 141, 152, 0.18);
  text-align: left;
}
.strategic_identity .content_description {
  display: flex;
  align-items: center;
  gap: 20px;
}
.strategic_identity .content_description img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  opacity: 0.9;
}
.strategic_identity .description p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
}

/* ── Principios corporativos ── */
.corporate_principles_contein {
  width: 100%;
  padding: 50px 0 42px;
  background: linear-gradient(135deg, #048d98 0%, #0a6a73 100%);
}
.corporate_principles_contein h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
.corporate_principles_contein h2 span {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin-top: 6px;
}
.corporate_principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 10% 0;
}
.principle {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 22px 16px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.principle:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.22);
}
.principle img {
  width: 44px;
  height: 44px;
  filter: invert(1);
  margin-bottom: 12px;
}
.principle hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}
.principle h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.principle p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Valores ── */
.container_values {
  padding: 50px 10% 60px;
}
.container_values > h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--color-brand);
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.bussines_values {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.value {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: stretch;
  min-height: 130px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.imagen_valor_izq,
.imagen_valor_der {
  width: 150px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 141, 152, 0.06);
  border-right: 2px solid rgba(4, 141, 152, 0.1);
}
.imagen_valor_der {
  border-right: none;
  border-left: 2px solid rgba(4, 141, 152, 0.1);
}
.value img {
  width: 62%;
}
.descripcion_valor {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.descripcion_valor h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 8px;
  text-align: left;
}
.descripcion_valor p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (min-width: 1600px) {
  .container_base {
    padding: 140px 130px 0;
  }
  .corporate_principles {
    padding: 28px 130px 0;
  }
  .container_values {
    padding: 50px 130px 60px;
  }
}
@media (max-width: 1100px) {
  .corporate_principles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .container_base {
    padding: 100px 5% 0;
  }
  .history {
    padding: 28px 24px;
  }
  .strategic_identity {
    flex-direction: column;
  }
  .strategic_identity .mission,
  .strategic_identity .vision {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .bussines_values .value {
    flex-direction: column;
  }
  .imagen_valor_izq,
  .imagen_valor_der {
    width: 100%;
    min-width: unset;
    padding: 20px 0;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid rgba(4, 141, 152, 0.1);
  }
  .imagen_valor_der {
    order: -1;
    border-bottom: 2px solid rgba(4, 141, 152, 0.1);
  }
  .value img {
    width: 80px;
    height: 80px;
  }
  .descripcion_valor {
    padding: 16px 20px 20px;
    text-align: center;
  }
  .descripcion_valor h3 {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .container_base {
    padding: 90px 3% 0;
  }
  .corporate_principles {
    grid-template-columns: 1fr;
    padding: 20px 5% 0;
  }
  .container_values {
    padding: 30px 3% 40px;
  }
}
