:root {
    --main-color: #fbdf19;
    --secondary-color: #020304;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
  }
  body {
    font-family: "Arial", sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-light);
  }
  h2 {
    font-size: 1.8rem !important;
    color: #d3c00e !important;
  }
  .header {
    background-color: #fbdf19;
    color: #020304;
    text-align: center;
    padding: 50px 0;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  .header h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  .header p {
    font-size: 1.5rem;
  }
  .package-card {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .third-card {
    margin-left: auto;
    margin-right: auto;
  }
  .package-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background-color: #d3c00e;
  }
  .package-card:hover h3 {
    color: #020304;
  }
  .package-card:hover h4 {
    color: #020304;
  }
  .package-card:hover p {
    color: #020304;
  }
  .package-card img {
    max-height: 300px;
    max-width: 300px;
    border-radius: 8px;
  }
  .package-card h3 {
    font-size: 1.75rem;
    margin-top: 20px;
    color: #d3c00e;
  }
  .package-card h4 {
    font-size: 1.3rem;
    margin-top: 10px;
    color: #d3c00e;
  }
  .package-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
  }
  .package-card {
    background-color: var(--main-color);
    color: #020304;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    box-shadow: 0 1px 1px rgb(255, 196, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  @media (min-width: 992px) {
    .package-card {
      height: 430px;
    }
  }

  .package-card {
    background-color: #020304;
  }
  .section-gap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .additional-card {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
      ),
      url(/media/fotos/adicional.jpg) no-repeat center center/cover;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
  }
  .additional-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .nav-link {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.87);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #fbdf19;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .nav-link:hover {
    color: #fbdf19;
  }
  .nav-link.active {
    color: #fbdf19;
    font-weight: bold;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  .nav-link.active::after {
    width: 100%;
  }
  .nav-link.active:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  }

  .social-icons a {
    color: var(--text-light);
    margin: 0 10px;
    font-size: 1.5rem;
  }
  .footer {
    background-color: #020304;
    color: rgba(255, 255, 255, 0.87);
    padding: 20px;
    text-align: center;
  }
  .footer a {
    color: #fbdf19;
    text-decoration: none;
  }
  .footer a:hover {
    text-decoration: underline;
  }
  .desarrollado-por {
    text-align: center;
  }

  .desarrollado-por p,
  .desarrollado-por img {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }

  .desarrollado-por img {
    width: 80px;
    height: auto;
    margin-left: 10px;
  }