/* VARIABLES Y ESTILOS GENERALES */
    :root {
      --primary-red: #550000; /* Conchevino - Rojo oscuro */
      --secondary-beige: #e3c0a8; /* Beige suave */
      --text-dark: #2c3e50;
      --light-bg: #f8f9fa;
      --accent-color: #f3d7c1; /* Tono suave de beige */
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-dark);
      scroll-behavior: smooth;
    }

/*preloader*/
.spinner-custom {
  width: 70px;
  height: 70px;
  border: 8px solid rgba(155, 27, 48, 0.3);
  border-top: 8px solid #f3e8e8;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 15px #f3e8e8;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*nosotros*/
 #sobre-nosotros {
  background-color: #fff;
}

.sobre-img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sobre-img:hover {
  transform: scale(1.05);
}
/* ===== GALERÍA ESCOLAR ===== */

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.foto-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  background-color: #000;
}

.foto-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Zoom suave al pasar el mouse */
.foto-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.foto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(128, 26, 29, 0.78);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.45s ease;
  text-align: center;
  padding: 15px;
}

/* Mostrar overlay */
.foto-item:hover .foto-overlay {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .foto-overlay {
    font-size: 0.95rem;
  }

  .foto-item img {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .foto-item img {
    min-height: 200px;
  }
}
/*infomacion*/
/* BOTÓN CONCHEVINO PRO */
.btn-contacto {
  position: relative;
  color: #ffffff;
  border: 2px solid #ffffff;
  background: transparent;
  overflow: hidden;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

/* Fondo animado */
.btn-contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f3e8e8 100%);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

/* Hover elegante */
.btn-contacto:hover {
  color: #9b1b30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px) scale(1.02);
}

/* Deslizamiento del fondo */
.btn-contacto:hover::before {
  transform: translateX(0);
}

/* Efecto clic */
.btn-contacto:active {
  transform: scale(0.97);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

 /* nosotrooos */
  .text-conchevino {
    color: #880000; /* Cambia a #550000 si quieres un tono más oscuro */
  }
