/* --- Variables de Color (Personaliza aquí) --- */
:root {
  /*--footer-bg: #F8F8F8;        /* Fondo oscuro elegante */
  --footer-bg: #1a1a1a;        /* Fondo oscuro elegante */
  --footer-text: #cccccc;      /* Texto gris suave */
  --footer-heading: #ffffff;   /* Títulos blancos */
  --accent-color: #D4AF37;     /* Color de acento (rosa moderno) */
  --icon-bg: #333333;          /* Fondo de los iconos */
}

/* --- Estructura General --- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif; /* Asegúrate de tener una fuente bonita cargada */
}

.footer {
  background-color: var(--footer-bg);
  padding: 70px 0 0 0;
  font-family: inherit;
  box-sizing: border-box;
}

.container-footer {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* --- Columnas --- */
.footer-col {
  width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--footer-heading);
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

/* Línea decorativa bajo los títulos */
.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--accent-color);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col p {
  color: var(--footer-text);
  font-size: 15px;
  line-height: 1.6;
  padding-right: 20px;
}

/* --- Listas de Enlaces --- */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

/* Efecto Hover en enlaces (se mueven a la derecha) */
.footer-col ul li a:hover {
  color: var(--footer-heading);
  padding-left: 8px;
}

/* --- Iconos Sociales --- */
.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%; /* Círculos perfectos */
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #24262b;
  background-color: var(--accent-color);
  transform: translateY(-3px); /* Pequeño salto al pasar el mouse */
}

/* --- Barra Inferior --- */
.footer-bottom {
  background-color: #111; /* Un tono más oscuro que el footer */
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
}

.footer-bottom p {
  color: var(--footer-text);
  font-size: 14px;
  margin: 0;
}

/* --- Responsive (Móvil) --- */
@media (max-width: 767px) {
  .footer-col {
    width: 50%; /* En tablets pequeñas, 2 columnas */
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%; /* En móviles, 1 columna (apilado) */
    text-align: center; /* Centramos el texto para mejor estética móvil */
  }
  
  .footer-col h4::before {
    left: 50%;
    transform: translateX(-50%); /* Centramos la línea decorativa */
  }

  .footer-col p {
    padding-right: 0;
  }
}

.centered-row {
    justify-content: center; /* Empuja todo al centro horizontalmente */
    gap: 50px; /* Espacio entre el texto y los iconos */
}