@charset "utf-8";
/* CSS Document */
  footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }
	body {
  font-family: Arial, sans-serif;
  background: url('Imagen12.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--secondary);
  margin: 0;
}

    :root {
      --primary: #ff6f61;
      --secondary: #333;
      --beige: #F5F5DC;
      --olive: #8F9779;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: var(--beige);
      color: var(--secondary);
      margin: 0;
    }

    /* Elimina el header clásico */
    /* header {
      background: var(--beige);
      color: var(--secondary);
      padding: 40px 20px;
      text-align: center;
      animation: fadeIn 1.2s ease-in-out;
      border-bottom: 3px solid var(--olive);
    }

    header h1 {
      font-size: 3rem;
      margin: 0;
    } */

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: var(--olive);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: background 0.4s, box-shadow 0.4s;
      padding: 0 30px;
      min-height: 70px;
    }

    nav:hover {
      background-color: #000 !important;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    .nav-title {
      color: #fff;
      font-size: 2rem;
      font-weight: bold;
      margin: 0;
      font-family: inherit;
      letter-spacing: 1px;
      /* Para que no se seleccione el texto por error */
      user-select: none;
    }

    .nav-links {
      display: flex;
      gap: 10px;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      padding: 15px 20px;
      font-weight: bold;
      transition: color 0.3s, background 0.3s, box-shadow 0.4s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links a:hover {
      color: var(--olive);
      background: #fff;
      box-shadow: 0 4px 16px rgba(255,111,97,0.3);
    }

    main {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      background: rgba(255,255,255,0.95);
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-top: 30px;
    }

    .section-title {
      background: #FFFF66;
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin: 30px 0 10px 0;
      padding: 10px 0;
      border-radius: 8px;
    }

    .subtitle {
      text-align: center;
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .map-container {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    iframe {
      border: 0;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      width: 100%;
      max-width: 750px;
      height: 400px;
    }

    .copyright {
      text-align: center;
      color: #888;
      font-size: 0.95rem;
      margin-top: 40px;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
	  footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 24px 10px 20px 10px;
      margin-top: 50px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 1.08rem;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
      border-radius: 0 0 16px 16px;
      letter-spacing: 1px;
      font-weight: bold;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
      border-top: 3px solid var(--olive);
      position: relative;
    }
