 :root {
      --primary: #00B3FF;
      --accent: #FFCC00;
      --light: #f9f9f9;
      --natal-blue: #0B5394;
      --natal-light-blue: #3D85C6;
      --natal-soft-blue: #6FA8DC;
    }


    /* Seção Natal Solidário */
    #natal-solidario {
      position: relative;
      background: #f9f9f9;
      overflow: hidden;
    }

    #natal-solidario::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
      pointer-events: none;
    }

    .natal-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }

.natal-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  animation: gentle-bounce 2s ease-in-out infinite;
}
@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.natal-title {
  font-size: 2.8rem;
  color: var(--natal-blue);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
    .natal-subtitle {
      font-size: 1.4rem;
      color: #111;
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Cards de Nacionalidade */
    .nacionalidades-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }

    .nacionalidade-card {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 179, 255, 0.2);
    }

    .nacionalidade-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 48px rgba(0, 179, 255, 0.25);
      border-color: #00B3FF;
    }

    .nacionalidade-header {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid #00B3FF;
    }

    .nacionalidade-flag {
      font-size: 2.5rem;
      margin-right: 1rem;
    }

    .nacionalidade-nome {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--natal-blue);
      margin: 0;
    }

    .nacionalidade-info {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .info-item {
      display: flex;
      align-items: center;
      font-size: 0.95rem;
      color: #333;
    }

    .info-item i {
      color: #00B3FF;
      margin-right: 0.6rem;
      font-size: 1.1rem;
    }

    .info-label {
      font-weight: 600;
      margin-right: 0.4rem;
    }

    /* Box de Presentes */
    .presentes-box {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      margin-bottom: 3rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      border: 1px solid #f9f9f9;
      position: relative;
      z-index: 2;
    }

    .presentes-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #0B5394;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .presentes-title i {
      margin-right: 0.5rem;
      color: #00B3FF;
    }

    .presentes-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .presente-tag {
      background: white;
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-weight: 600;
      color: var(--natal-blue);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border: 2px solid #00B3FF;
      transition: all 0.3s ease;
    }

    .presente-tag:hover {
      transform: scale(1.05);
      background: #00B3FF;
      color: #fff;
    }

    .presente-tag i {
      margin-right: 0.5rem;
      color: #0B5394;
    }

    .presente-tag:hover i {
      color: #0b3d5c;
    }

    /* CTA Section */
    .natal-cta {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }

    .cta-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff;
      padding: 1.2rem 3rem;
      border-radius: 50px;
      font-size: 1.3rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid white;
    }

    .cta-whatsapp:hover {
      transform: translateY(-5px);
      color: #f9f9f9;
    }

    .cta-whatsapp i {
      font-size: 2rem;
      animation: shake 1s ease-in-out infinite;
    }

    @keyframes shake {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(-15deg); }
      75% { transform: rotate(15deg); }
    }

    /* Galeria Swiper */
    .natal-galeria {
      position: relative;
      z-index: 2;
      margin-top: 2rem;
    }

    .natal-galeria h3 {
      text-align: center;
      color: var(--natal-blue);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }

    .natal-swiper {
      padding: 1rem 0 3rem 0;
    }

    .natal-swiper .swiper-slide {
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .natal-foto {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      border: 1px solid #00B3FF;
      transition: transform 0.3s ease;
    }

    .natal-foto:hover {
      transform: scale(1.05);
    }

    .swiper-pagination-bullet {
      background: #0b3d5c;
      opacity: 0.5;
    }

    .swiper-pagination-bullet-active {
      background: var(--primary);
      opacity: 1;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .natal-title {
        font-size: 2rem;
      }

      .natal-subtitle {
        font-size: 1.1rem;
      }

      .nacionalidades-grid {
        grid-template-columns: 1fr;
      }

      .cta-whatsapp {
        padding: 1rem 2rem;
        font-size: 1.1rem;
      }

      .natal-foto {
        height: 250px;
      }
    }