/* About Page Styles */
.about-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 40px 0;
}

/* Chuva de Queijos */
.cheese-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cheese {
  position: absolute;
  font-size: 2rem;
  animation: fall linear infinite;
  opacity: 0.8;
}

.cheese:nth-child(1) {
  left: 5%;
  animation-duration: 3s;
  animation-delay: 0s;
}

.cheese:nth-child(2) {
  left: 15%;
  animation-duration: 4s;
  animation-delay: 0.5s;
}

.cheese:nth-child(3) {
  left: 25%;
  animation-duration: 3.5s;
  animation-delay: 1s;
}

.cheese:nth-child(4) {
  left: 35%;
  animation-duration: 4.5s;
  animation-delay: 1.5s;
}

.cheese:nth-child(5) {
  left: 45%;
  animation-duration: 3s;
  animation-delay: 2s;
}

.cheese:nth-child(6) {
  left: 55%;
  animation-duration: 4s;
  animation-delay: 0.2s;
}

.cheese:nth-child(7) {
  left: 65%;
  animation-duration: 3.5s;
  animation-delay: 0.8s;
}

.cheese:nth-child(8) {
  left: 75%;
  animation-duration: 4.5s;
  animation-delay: 1.2s;
}

.cheese:nth-child(9) {
  left: 85%;
  animation-duration: 3s;
  animation-delay: 1.8s;
}

.cheese:nth-child(10) {
  left: 95%;
  animation-duration: 4s;
  animation-delay: 2.5s;
}

.cheese:nth-child(11) {
  left: 10%;
  animation-duration: 3.8s;
  animation-delay: 0.3s;
}

.cheese:nth-child(12) {
  left: 20%;
  animation-duration: 4.2s;
  animation-delay: 0.7s;
}

.cheese:nth-child(13) {
  left: 30%;
  animation-duration: 3.3s;
  animation-delay: 1.1s;
}

.cheese:nth-child(14) {
  left: 40%;
  animation-duration: 4.7s;
  animation-delay: 1.6s;
}

.cheese:nth-child(15) {
  left: 50%;
  animation-duration: 3.1s;
  animation-delay: 2.1s;
}

.cheese:nth-child(16) {
  left: 60%;
  animation-duration: 4.1s;
  animation-delay: 0.4s;
}

.cheese:nth-child(17) {
  left: 70%;
  animation-duration: 3.6s;
  animation-delay: 0.9s;
}

.cheese:nth-child(18) {
  left: 80%;
  animation-duration: 4.4s;
  animation-delay: 1.4s;
}

.cheese:nth-child(19) {
  left: 90%;
  animation-duration: 3.2s;
  animation-delay: 1.9s;
}

.cheese:nth-child(20) {
  left: 8%;
  animation-duration: 4.3s;
  animation-delay: 2.3s;
}

@keyframes fall {
  0% {
    top: -100px;
    transform: rotate(0deg);
  }
  100% {
    top: 100vh;
    transform: rotate(360deg);
  }
}

/* Elementos Flutuantes */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.floating-rat {
  position: absolute;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
}

.floating-rat:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-rat:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-rat:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-3deg);
  }
}

/* Conteúdo Principal */
.about-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.main-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--teal);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.rain-emoji {
  font-size: 2.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.subtitle {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--pink);
  font-weight: 600;
  font-style: italic;
}

.story-container {
  margin-bottom: 40px;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--dark-text);
  text-align: justify;
  padding: 0 10px;
}

.rat-decoration {
  font-size: 1.5rem;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-container {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  background-color: #F4C3C3;
  color: var(--dark-text);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(244, 195, 195, 0.3);
  transition: var(--transition);
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #F0B5B5;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(244, 195, 195, 0.4);
}

.cta-icon {
  font-size: 1.3rem;
  animation: wiggle 2s ease-in-out infinite;
}

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

/* Responsividade */
@media (max-width: 768px) {
  .about-content {
    margin: 20px;
    padding: 30px 20px;
  }

  .main-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .rain-emoji {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .story-text {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    padding: 0;
  }

  .floating-rat {
    font-size: 2rem;
  }

  .cheese {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .story-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .floating-rat {
    font-size: 1.5rem;
  }

  .cheese {
    font-size: 1.2rem;
  }
}