:root {
    --primary: #3556d8;
    --primary-dark: #1f358f;
    --secondary: #f7c86a;
    --sky: #eaf4ff;
    --soft: #f8fbff;
    --white: #ffffff;
    --text: #1f2a44;
    --muted: #65708a;
    --card: rgba(255, 255, 255, 0.82);
    --shadow: 0 20px 55px rgba(34, 65, 150, 0.14);
    --radius: 26px;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: auto !important;
    scroll-padding-top: 90px;
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }

  body {
    z-index:-3;
    font-family: "Inter", sans-serif;
    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    background:
      radial-gradient(circle at top left, rgba(170, 212, 238, 0.28), transparent 32%),
      radial-gradient(circle at top right, rgba(84, 140, 255, 0.24), transparent 34%),
      linear-gradient(180deg, #f5fbff 0%, #ffffff 45%, #eef6ff 100%);    
   /*background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.85) 0%, transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.75) 0%, transparent 20%),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.65) 0%, transparent 22%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.55) 0%, transparent 18%),

    linear-gradient(
      180deg,
      #dff1ff 0%,
      #edf7ff 35%,
      #f7fbff 65%,
      #ffffff 100%
    );
    */
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      radial-gradient(circle, rgba(255,255,255,0.95) 1px, transparent 1.5px),
      radial-gradient(circle, rgba(247,200,106,0.65) 1px, transparent 1.8px);
    background-size: 80px 80px, 130px 130px;
    opacity: .38;
    z-index: 1;
  }

  body::before {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: -3;
  pointer-events: none;

  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(circle at 75% 35%, rgba(255,255,255,0.14), transparent 22%),
    radial-gradient(circle at 50% 75%, rgba(255,255,255,0.12), transparent 25%);

  animation: cloudBackgroundMove 40s ease-in-out infinite alternate;
}

@keyframes cloudBackgroundMove {
  from {
    transform: translateY(0px) scale(1);
  }

  to {
    transform: translateY(-20px) scale(1.04);
  }
}

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(53, 86, 216, 0.08);
  }

  .navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary-dark);
  }

  .brand-logo {
    width: auto;
    height: 54px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .brand:hover .brand-logo {
    transform: scale(1.05);
  }

  .brand span:last-child {
    line-height: 1.15;
  }

  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #31405f;
  }

  nav a {
    position: relative;
    padding: 8px 0;
  }

  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: .25s ease;
  }

  nav a:hover::after {
    width: 100%;
  }

  .menu-btn {
    display: none;
    border: 0;
    background: var(--white);
    color: var(--primary-dark);
    font-size: 26px;
    border-radius: 14px;
    padding: 8px 12px;
    box-shadow: var(--shadow);
    cursor: pointer;
  }

  .hero {
    position: relative;
    padding: 92px 0 74px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 44px;
    align-items: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(53, 86, 216, .1);
  }

  h1, h2, h3 {
    font-family: "Cinzel", serif;
    color: #16254a;
  }

  h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -2px;
    margin-bottom: 22px;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 680px;
  }

  .quote {
    margin-top: 28px;
    padding: 22px;
    border-left: 5px solid var(--secondary);
    border-radius: 18px;
    background: rgba(255, 255, 255, .74);
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--primary-dark);
  }

  .hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: .25s ease;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 16px 34px rgba(53, 86, 216, .28);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, .8);
    color: var(--primary-dark);
    border: 1px solid rgba(53, 86, 216, .14);
  }

  .btn:hover {
    transform: translateY(-3px);
  }

  .hero-card {
    position: relative;
    min-height: 480px;
    border-radius: 40px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.28)),
      url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1200&q=80") center/cover;
    box-shadow: 0 30px 70px rgba(27, 62, 143, .22);
  }

  .hero-card::before {
    content: "✦";
    position: absolute;
    right: 28px;
    top: 18px;
    color: #fff5bb;
    font-size: 82px;
    text-shadow: 0 0 30px rgba(247, 200, 106, .8);
  }

  .floating-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }

  .floating-card h3 {
    margin-bottom: 8px;
    color: var(--primary-dark);
  }

  section {
    padding: 78px 0;
    scroll-margin-top: 76px;
  }

  /* --- Estilos de Layout General --- */
  .section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* --- DESKTOP: Revertir a Grilla Original --- */
  .cards, .schedule, .beliefs {
    display: grid !important;
    overflow: visible !important;
    gap: 24px;
    width: 100%;
    padding: 0 !important;
  }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .schedule { grid-template-columns: repeat(5, 1fr); }
  .beliefs { grid-template-columns: repeat(5, 1fr); }

  .carousel-nav {
    display: none !important; /* Ocultar botones en PC */
  }

  .carousel-container {
    width: 100%;
    overflow: visible;
  }

  /* --- Secciones de Contacto/CTA (Evitar que se corten) --- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }

  .cta, .contact-box {
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding: 40px;
    border-radius: 44px;
  }

  /* --- MOBILE: Solo aquí aplicamos Carrusel --- */
  @media (max-width: 768px) {
    .cards, .schedule, .beliefs {
      display: flex !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      scroll-behavior: smooth;
      gap: 15px;
      padding: 10px 20px 30px !important; /* Padding lateral para que no choquen con bordes */
      scrollbar-width: none;
    }

    .cards::-webkit-scrollbar, .schedule::-webkit-scrollbar, .beliefs::-webkit-scrollbar {
      display: none;
    }

    /* Cada tarjeta en mobile ocupa el 85% */
    .cards > *, .schedule > *, .beliefs > * {
      flex: 0 0 85% !important;
      scroll-snap-align: center;
      transition: transform 0.4s ease;
    }

    .carousel-nav.mobile-only {
      display: flex !important;
      justify-content: center;
      gap: 10px;
      margin-top: -10px;
    }

    .contact-grid {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 24px;
      padding: 0 16px;
      width: 100%;
    }

    .cta, .contact-box {
      width: 100%;
      max-width: 100%;
      padding: 30px 20px;
      border-radius: 30px;
      margin: 0 auto;
    }

    .brand span:last-child {
      display: block;
      font-size: 11px;
    }
    
    .brand span:first-child {
      font-size: 14px;
    }

    .pillar-list {
      display: none;
    }
  }

  .card {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    border: 1px solid rgba(53, 86, 216, .08);
    backdrop-filter: blur(10px);
  }

  .card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-dark);
  }

  .pillar-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 26px;
  }

  .pillar {
    padding: 24px 18px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f3f8ff);
    box-shadow: 0 16px 35px rgba(34, 65, 150, .1);
    font-weight: 800;
    color: var(--primary-dark);
  }

  .pillar span {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
  }

  .highlight {
    background:
      linear-gradient(135deg, rgba(53, 86, 216, .94), rgba(31, 53, 143, .94)),
      url("https://images.unsplash.com/photo-1490730141103-6cac27aaab94?auto=format&fit=crop&w=1400&q=80") center/cover;
    color: var(--white);
    border-radius: 44px;
    padding: 54px;
    box-shadow: 0 28px 70px rgba(31, 53, 143, .28);
  }

  .highlight h2,
  .highlight h3 {
    color: var(--white);
  }

  .highlight p {
    color: rgba(255,255,255,.88);
    line-height: 1.85;
  }

  .schedule {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .schedule-item {
    padding: 24px 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(53, 86, 216, .08);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
  }

  .schedule-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(180deg, #ffffff, var(--soft));
    box-shadow: 0 25px 50px rgba(34, 65, 150, 0.12);
    border-color: rgba(53, 86, 216, 0.2);
  }

  .schedule-item .day {
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }

  .schedule-item:hover .day {
    color: var(--primary);
  }

  .schedule-item .time {
    font-size: 24px;
    font-weight: 900;
    color: #16254a;
    margin-bottom: 8px;
  }

  .schedule-item .name {
    color: var(--muted);
    line-height: 1.5;
  }

  .beliefs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .belief {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow);
    border: 1px solid rgba(53, 86, 216, .08);
  }

  .belief strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .radio-panel {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 28px;
    align-items: center;
    padding: 46px;
    border-radius: 36px;
    background:
      radial-gradient(circle at 18% 12%, rgba(247, 200, 106, .32), transparent 28%),
      linear-gradient(135deg, rgba(255,255,255,.9), rgba(234,244,255,.86));
    border: 1px solid rgba(53, 86, 216, .1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .radio-copy .tag {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .radio-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
  }

  .radio-player-card {
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(53, 86, 216, .1);
    box-shadow: 0 18px 45px rgba(34, 65, 150, .12);
  }

  .radio-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff5d6;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
  }

  .radio-live span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 0 0 6px rgba(220, 38, 38, .13);
  }

  .radio-player-card h3 {
    margin-bottom: 8px;
    color: var(--primary-dark);
  }

  .now-playing {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 21px;
  }

  .custom-player {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8fbff;
    border-radius: 20px;
    border: 1px solid rgba(53, 86, 216, 0.05);
  }

  .player-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(53, 86, 216, 0.2);
  }

  .player-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(53, 86, 216, 0.3);
  }

  .volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }

  #volumeSlider {
    width: 100%;
    cursor: pointer;
    accent-color: var(--primary);
  }

  .pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dc2626;
    position: relative;
  }

  .pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #dc2626;
    animation: radioPulse 2s infinite;
  }

  @keyframes radioPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
  }

  .radio-help {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
  }

  .verse {
    margin-top: 16px;
    color: #a77a16;
    font-weight: 800;
    font-size: 20px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
  }

  .contact-box {
    padding: 34px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f1f7ff);
    box-shadow: var(--shadow);
  }

  .contact-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 14px;
    border-bottom: 1px solid rgba(53, 86, 216, .06);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    border-radius: 16px;
  }

  .contact-btn:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(53, 86, 216, 0.08);
    transform: translateY(-2px);
  }

  .contact-info {
    flex: 1;
  }

  .contact-info strong {
    display: block;
    color: var(--primary-dark);
    font-size: 15px;
    margin-bottom: 2px;
  }

  .contact-info p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
  }

  .contact-arrow {
    font-size: 20px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.25s ease;
  }

  .contact-btn:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(53, 86, 216, 0.08);
    flex: 0 0 auto;
  }

  .contact-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .contact-row:last-child {
    border-bottom: 0;
  }

  .cta {
    text-align: center;
    padding: 70px 28px;
    border-radius: 44px;
    background:
      radial-gradient(circle at center top, rgba(255,255,255,.32), transparent 34%),
      linear-gradient(135deg, #fff6d6, #eaf3ff 45%, #ffffff);
    box-shadow: var(--shadow);
  }

  .cta p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 18px;
  }

  /* --- Estilos Visión/Misión --- */
  .highlight-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 34px;
    border-radius: 30px;
    color: white;
  }

  .highlight-card h2 {
    color: white !important;
    margin-bottom: 15px;
  }

  .white-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
  }

  .white-btn:hover {
    background: white !important;
    color: var(--primary) !important;
  }

  footer {
    padding: 34px 0;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
  }

  @media (max-width: 980px) {
    .hero-grid,
    .contact-grid,
    .radio-panel,
    .cards {
      grid-template-columns: 1fr;
    }

    .hero-card {
      min-height: 380px;
    }

    .pillar-list,
    .schedule,
    .beliefs {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .menu-btn {
      display: block;
      z-index: 100;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateX(100%);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 90;
    }

    nav.open {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    nav ul {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    /* Carruseles SOLO en Mobile */
    .cards, .schedule, .beliefs {
      display: flex !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      scroll-behavior: smooth;
      gap: 15px;
      padding: 10px 20px 30px !important;
      scrollbar-width: none;
    }

    .cards::-webkit-scrollbar, .schedule::-webkit-scrollbar, .beliefs::-webkit-scrollbar {
      display: none;
    }

    .cards > *, .schedule > *, .beliefs > * {
      flex: 0 0 85% !important;
      scroll-snap-align: center;
    }

    .carousel-nav.mobile-only {
      display: flex !important;
      justify-content: center;
      gap: 10px;
    }

    /* Visión y Misión en Mobile */
    .highlight {
      padding: 40px 20px !important;
    }
    
    .highlight-carousel-wrapper {
      margin: 0 -20px;
      width: calc(100% + 40px);
    }

    .highlight-card {
      padding: 24px;
    }

    /* Centrado y Ajuste de Cajas Finales */
    .contact-grid {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 24px;
      padding: 0 16px;
    }

    .cta, .contact-box {
      width: 100%;
      max-width: 100%;
      padding: 30px 20px;
      border-radius: 30px;
      margin: 0 auto;
      text-align: center;
    }

    .hero {
      padding: 60px 0 40px;
      text-align: center;
    }

    .hero-actions {
      justify-content: center;
    }

    .custom-player {
      flex-direction: column;
    }

    .volume-control {
      width: 100%;
    }

    .brand span:last-child {
      display: block;
      font-size: 11px;
    }
    
    .brand span:first-child {
      font-size: 14px;
    }

    .pillar-list {
      display: none;
    }
  }

  /* Optimizaciones para pantallas muy pequeñas */
  @media (max-width: 400px) {
    .brand span:last-child {
      display: block;
      font-size: 11px;
    }
    
    .brand span:first-child {
      font-size: 14px;
    }

    .pillar-list {
      display: none;
    }
    
    h1 {
      font-size: 34px;
    }
  }

.floating-radio-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(53, 86, 216, .4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-radio-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(53, 86, 216, .5);
}

@media (max-width: 720px) {
  .floating-radio-btn {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
    font-size: 20px;
  }
}


.clouds {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.cloud {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;
  filter:
    brightness(0)
    saturate(100%)
    invert(78%)
    sepia(28%)
    saturate(1200%)
    hue-rotate(175deg)
    brightness(105%)
    contrast(95%)
    blur(1px);
}
/* Nube 1 */
.cloud-1 {
  width: 700px;
  height: 300px;
  top: 40px;
  left: -1000px;
  opacity: 0.26;
  background-image: url('../images/cloud_1.png');
  animation: cloudMove1 80s linear infinite;
}

/* Nube 2 */
.cloud-2 {
  width: 500px;
  height: 220px;
  top: 300px;
  left: -600px;
  opacity: 0.26;
  background-image: url('../images/cloud_2.png');

  animation: cloudMove2 80s linear infinite;
}

/* Nube 3 */
.cloud-3 {
  width: 900px;
  height: 400px;
  top: 600px;
  left: -1200px;
  opacity: 0.26;

  background-image: url('../images/cloud_3.png');

  animation: cloudMove3 80s linear infinite;
}

@keyframes cloudMove1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 1600px));
  }
}

@keyframes cloudMove2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 1400px));
  }
}

@keyframes cloudMove3 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 2200px));
  }
}
