* {
  margin: 0;
  box-sizing: border-box;
}

:root {
  --navy-dark: #001F3F;
  --blue: #0077B6;
  --light-blue: #90E0EF;
  --aqua: #CAF0F8;
  --gray: #6C757D;
  --white: #FFFFFF;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--aqua);
  color: var(--navy-dark);
  line-height: 1.5;
}

/* ====== HEADER AJUSTADO ====== */
header {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 1rem 0;
}

header .navbar a {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
  margin: 0 1.2rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

header .navbar a:hover {
  color: var(--light-blue);
  transform: scale(1.05);
}

header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-blue);
}

header .navbar-brand:hover {
  color: var(--aqua);
}

/* ====== FOOTER ====== */
footer {
  background-color: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: var(--light-blue);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

footer p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--light-blue);
}

/* ====== PROMO HOME ====== */
.promo_home {
  background-color: var(--blue);
  text-align: center;
  color: var(--white);
  padding: 1rem;
}

.btn-btn {
  background-color: var(--light-blue);
  color: var(--navy-dark);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  margin: 1rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-btn:hover {
  background-color: var(--navy-dark);
  color: var(--white);
}

/* ====== SECCIÓN RECIÉN LLEGADOS ====== */
.recien-llegados {
  background-color: var(--aqua);
  padding: 4rem 2rem;
}

.recien-llegados .recien {
  color: var(--gray);
  font-weight: 600;
  font-size: 2rem;
}

.recien-llegados .llegados {
  color: var(--blue);
  font-weight: 800;
  font-size: 2rem;
}

.recien-llegados p {
  color: var(--navy-dark);
  font-size: 1.1rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.btn-descubre {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-descubre:hover {
  background-color: var(--navy-dark);
}

/* ============================================
     PRODUCTOS – GRID FIX (IMPORTANT)
============================================ */
.product-homes .row {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  justify-content: center;
}

/* ============================================
        TARJETAS UNIFORMES
============================================ */
.product-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 480px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Imagen */
.product-card img,
.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* Textos */
.product-card h5,
.product-card p {
  margin: 0.5rem 0;
}

/* Botones */
.product-card button,
.product-card a {
  width: 80%;
  margin: 0.3rem auto;
  display: block;
}

/* ============================================
     DESCRIPCIÓN — LEER MÁS
============================================ */
.card-description {
  max-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height .3s ease;
  margin-bottom: 0.5rem;
}

.card-description.expanded {
  max-height: 400px;
}

.btn-leer-mas {
  background: none;
  border: none;
  color: var(--blue);
  margin-top: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0;
}

.btn-leer-mas:hover {
  color: var(--navy-dark);
}

.product-card .actions-wrapper {
  margin-top: auto;
  width: 100%;
}

/* ====== MAPA ====== */
.map-section {
  background-color: var(--aqua);
  padding: 3rem 1rem;
}

.map-container iframe {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  border: 3px solid var(--light-blue);
}

.map-section h2 {
  font-size: 2rem;
  color: var(--navy-dark);
}

.map-section p.lead {
  color: var(--gray);
}

.map-section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--navy-dark);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }

  .map-section h2 {
    text-align: center;
  }

  .recien-llegados {
    text-align: center;
  }

  header .navbar a {
    display: block;
    margin: 0.5rem 0;
    color: var(--white);
  }
}
.product-card {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 15px;
  text-align: center;
}

.product-description {
  max-height: 70px;
  overflow: hidden;
  transition: .3s ease;
}

.product-description.expanded {
  max-height: 500px;
}

.btn-leer-mas {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  margin-top: 5px;
}

.actions-wrapper {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-section h2 {
    font-size: 5rem !important;   /* Título */
    font-weight: bold;
}

.text-section p {
    font-size: 2.5rem !important;   /* Párrafos */
    line-height: 1.6;
}
