* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0c0b1a;
  color: #e0e0e0;
  overflow-x: hidden;
}

#root {
  min-height: 100vh;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #0c0b1a 0%, #1a1530 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(21, 186, 207, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 54, 95, 0.1) 0%,
      transparent 50%
    );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-hero {
  width: 180px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 30px rgba(21, 186, 207, 0.6));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #15bacf, #45c2d4, #f85643);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.5rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #15bacf;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Articles Section */
.articles-section {
  min-height: 100vh;
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1530 0%, #0c0b1a 100%);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #15bacf;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #d4365f, #f85643);
  border-radius: 2px;
}

/* Articles Grid */
.articles-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.article-card {
  background: linear-gradient(
    135deg,
    rgba(21, 186, 207, 0.05),
    rgba(69, 194, 212, 0.02)
  );
  border: 2px solid rgba(21, 186, 207, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-card:hover {
  transform: translateY(-10px);
  border-color: #15bacf;
  box-shadow: 0 20px 60px rgba(21, 186, 207, 0.3);
}

.article-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 186, 207, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.article-card:hover::before {
  opacity: 1;
}

.article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-image {
  transform: scale(1.1);
}

.article-content {
  padding: 30px;
}

.article-tag {
  display: inline-block;
  background: linear-gradient(135deg, #d4365f, #f85643);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.article-title {
  font-size: 1.6rem;
  color: #15bacf;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.article-card:hover .article-title {
  color: #45c2d4;
}

.article-excerpt {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 186, 207, 0.2);
}

.article-date {
  color: #808080;
  font-size: 0.9rem;
}

.article-read-time {
  color: #15bacf;
  font-size: 0.9rem;
  font-weight: 600;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #15bacf, #45c2d4);
  color: #0c0b1a;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.read-more-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(21, 186, 207, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0c0b1a 0%, #050411 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-top: 2px solid rgba(21, 186, 207, 0.2);
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(21, 186, 207, 0.5));
}

.footer-text {
  color: #808080;
  font-size: 0.95rem;
  margin-top: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(21, 186, 207, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: #15bacf;
  border-color: #45c2d4;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(21, 186, 207, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .article-title {
    font-size: 1.4rem;
  }
}

/* Loading Animation */
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(21, 186, 207, 0.2);
  border-top-color: #15bacf;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 50px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Particle Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: #15bacf;
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle 20s infinite;
}

@keyframes float-particle {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  25% {
    transform: translateY(-100px) translateX(50px);
  }

  50% {
    transform: translateY(-200px) translateX(-50px);
  }

  75% {
    transform: translateY(-100px) translateX(100px);
  }
}

/* icones footer */
#insta {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  /* Also define standard property for compatibility */
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  /* change this to change the size*/
}

#youtube {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  /* Also define standard property for compatibility */
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  /* change this to change the size*/
}

#whatsapp {
  background: radial-gradient(
    circle at 30% 107%,
    #bcfd97 0%,
    #8af24e 5%,
    #55fd49 45%,
    #24d662 60%,
    #28eb69 90%
  );
  -webkit-background-clip: text;
  /* Also define standard property for compatibility */
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  /* change this to change the size*/
}

#email {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #24c7d6 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  /* Also define standard property for compatibility */
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  /* change this to change the size*/
}
