html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.hero {
    text-align: center;
    padding: 80px 20px;
    background: #111;
    color: white;
}

.hero h1 {
    font-size: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #d4af37;
    color: black;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 8px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #111, #333);
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* BOTÓN */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: gold;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

/* SECCIONES */
.section {
    padding: 60px 20px;
    text-align: center;
    background: white;
}

.section.dark {
    background: #222;
    color: white;
}

/* GRID SERVICIOS */
.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Esto hace que todas las fotos midan lo mismo sin deformarse */
    display: block;
}
.card {
    transition: all 0.3s ease;
    cursor: pointer;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}
.card img {
    transition: transform 0.5s ease;
}
.card:hover img {
    transform: scale(1.05);
}
/* Contenedor de la Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Tarjeta de trabajo */
.work-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.work-card img {
    width: 100%;
    height: 280px;
    object-fit: cover; /* Recorta la foto para que todas encajen igual */
}

.work-info {
    padding: 15px;
    text-align: center;
}

.work-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}



/**/

/* Fondo oscuro y cursor de cierre */
.lum-lightbox {
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 5000 !important;
}



/* Ajuste de la imagen */
.lum-img {
    max-width: 90vw !important;
    max-height: 80vh !important;
    border: 1px solid rgba(255,255,255,0.1);
}


/* Estilos para la sección de Valores */
.card-valor {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.card-valor:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #fff4e6; /* Color cremita suave de fondo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.card-valor h4 {
    font-weight: 700;
    color: #1a1c2c;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.card-valor p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}