* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #ffe4f2, #fff7cc);
    font-family: Arial, sans-serif;
}

.cherry-bomb-one-regular {
  font-family: "Cherry Bomb One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}
.content{
    text-align: center;
}
.logo {
    max-width: 90%;
    width: 320px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}
.animated-text {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #FB5B41;
    text-align: center;
    animation: bounceGlow 2s infinite;
}
.box-info p a{
    display:block;
}

.btn-chet{display:block; margin:1em; padding:1em;}
.btn-chet.btn-wht{
     display: inline-block;
  text-decoration: none;
  background: linear-gradient(45deg,#25d366,#1ebe5d,#128c7e);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-chet.btn-wht:hover {
   transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-chet.btn-wht:active {
  transform: scale(0.98);
}


.btn-chet.btn-inst{
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(214, 41, 118, 0.35);
}

.btn-chet.btn-inst:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 41, 118, 0.45);
}

.btn-chet.btn-inst:active {
  transform: scale(0.98);
}

/* Animación suave */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
    }
}
/* Animación */
@keyframes bounceGlow {
    0% {
        transform: translateY(0);
        opacity: 0.7;
        text-shadow: 0 0 0px #FB5B41;
    }

    25% {
        transform: translateY(-10px);
        opacity: 1;
        text-shadow: 0 0 10px #FFA265;
    }

    50% {
        transform: translateY(0);
        text-shadow: 0 0 20px #FB5B41;
    }

    75% {
        transform: translateY(-6px);
        text-shadow: 0 0 10px #FFA265 ;
    }

    100% {
        transform: translateY(0);
        opacity: 0.7;
        text-shadow: 0 0 0px #FB5B41;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .animated-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 1.2rem;
    }
}