html {
  scroll-padding-top: 3.5rem;
}

body{
  font-family: 'Quicksand', sans-serif;
  /* font-family: 'Montserrat', sans-serif; */
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Open Sans', sans-serif;
}

header {
  padding-top: 3.5rem;
  padding-bottom: 6rem;
  /* min-height: 100%; */
  /* background-color: #aedddd; */
  background-color: #B8E3FA;
}

section {
  /* padding-top: 0.4rem; */
  padding-bottom: 9rem;
  min-height: 450px;
}

section h2, h3{
  text-align: center;
  padding: 15px;
}

.carousel-item > img {
  margin: auto;
  display: flex;
  justify-content: center;
}

#nosotros{
  /* background-color: #fbcaff; */
  background-color: #F0D2C7;
}
#servicios{
  /* background-color: #c3f8ff; */
  background-color: #D0F9FE;
}
#productos{
  /* background-color: #bccefb; */
  /* background-color: #E3E3F5; */
  background-color: #B8E3FA;
}
#contacto{
  /* background-color: #ffccb3; */
  background-color: #F2e6c0;
}

#ficha{
  background-color: #f8f9fa;
}

.botonera .boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 5rem;
  background-color: #495057;
  color: #fff;
  border-radius: 100%;
  font-size: 1.5rem;
  margin-right: 1.5rem;
}

.botonera .boton:hover {
  background-color: #bd5d38;
}

/* Estilo de la Card con fondo azul delicado */
.category-card-blue {
    min-height: 110px; /* Un poco más alta para que luzca mejor en 4 columnas */
    background-color: #eef2f7; 
    border-radius: 15px;
    transition: all 0.3s ease;
    color: #495057;
    border: 1px solid #dee2e6 !important;
}

/* Efecto Hover: Primary de Bootstrap */
.category-card-blue:hover {
    background-color: #0d6efd; 
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2) !important;
    border-color: #0d6efd !important;
}

.category-card-blue:hover .card-title {
    color: #ffffff;
}

.card-title {
    font-size: 1rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tarjeta de producto con tono suave */
.product-card {
    background-color: #fcfdfe; /* Un tono apenas azulado/grisáceo */
    border: 1px solid #e9ecef !important;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.product-card:hover {
    background-color: #ffffff;
    border-color: #0d6efd !important; /* Azul Primary */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

/* Ajuste de la imagen */
.product-img-container {
    background-color: #ffffff; /* Fondo blanco para la foto */
    border-radius: 12px 12px 0 0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Contenedor de imagen para que todas midan lo mismo */
.product-img-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.product-img-container img {
    max-height: 100%;
    object-fit: contain; /* Evita que la foto se estire */
}

.price-tag {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* Un separador más moderno */
    font-size: 1.2rem;
    vertical-align: middle;
}

.pagination .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 8px !important;
    color: #495057;
    background-color: #f8f9fa;
    transition: all 0.2s;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
}

.pagination .page-link:hover:not(.active) {
    background-color: #e9ecef;
}
