﻿/* --- ESTILOS ANTERIORES PARA ELEMENTOS DE LA PÁGINA (MANTENIDOS) --- */

/* Breadcrumb (Ruta de navegación) */
.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    text-decoration: none; 
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e74c3c; 
    text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: #bbb;
    font-weight: 600;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 700;
}


/* ==== Footer "Rechulón" Moderno ==== */
.main-footer {
  background: linear-gradient(135deg, #1a252f, #2c3e50); /* fondo moderno */
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-about h3 {
  color: #e74c3c;
  font-size: 1.8em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about p {
  font-size: 0.95em;
  color: #ddd;
  line-height: 1.7;
}

.footer-contact h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.3em;
  color: #f1f1f1;
  font-weight: 600;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin: 10px 0;
  font-size: 0.95em;
  color: #ccc;
}

.footer-contact i {
  margin-right: 10px;
  color: #e74c3c;
}

.footer-social {
  text-align: center;
}

.footer-social .social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.footer-social .social-links a {
  background: transparent;
  border: 2px solid #e74c3c;
  color: #e74c3c;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
  background: #e74c3c;
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 50px;
  padding-top: 15px;
  font-size: 0.85em;
  color: #aaa;
  position: relative;
  z-index: 1;
}



/* ========================================= */
/* ESTILO DE BREADCRUMB CON EFECTO ROJO */
/* ========================================= */

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.95em;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

/* Estilo para los enlaces de la ruta */
.breadcrumb a {
    text-decoration: none; /* Quitamos la línea fea */
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease; /* Transición suave para el color */
}

/* El efecto al pasar el ratón */
.breadcrumb a:hover {
    color: #e74c3c; /* El color rojo que ya usas en tu navegación */
    text-decoration: none; /* Nos aseguramos de que no aparezca el subrayado */
}

/* Estilo para el separador (>) */
.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: #bbb;
    font-weight: 600;
}

/* Estilo para la página actual (sin enlace) */
.breadcrumb li:last-child {
    color: #333;
    font-weight: 700;
}



/* --- AJUSTES PARA ORDENADOR --- */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    .main-nav {
        display: block !important;
    }
    .nav-links {
        display: flex;
        flex-direction: row;
    }
}