:root {
  /* Pinga & Prosa Colors */
  --color-teal: #4FD1C7;
  --color-orange: #F59E0B;
  --color-white: #FFFFFF;
  --color-gray-light: #F3F4F6;
  --color-gray-dark: #374151;
  --color-black: #000000;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--color-teal), var(--color-orange));
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-white);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-teal), var(--color-orange));
  color: var(--color-white);
  padding: 120px 20px 60px;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-white);
  color: var(--color-teal);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-cta {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 1.2rem;
  padding: 15px 40px;
}

.btn-large {
  padding: 15px 50px;
  font-size: 1.3rem;
}

/* Countdown */
.countdown-section {
  margin-top: 3rem;
  text-align: center;
}

.countdown-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 10px;
  min-width: 80px;
  backdrop-filter: blur(10px);
}

.countdown-item span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.countdown-item label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Sections */
.section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-teal);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--color-gray-dark);
}

/* About Section */
.about {
  background: var(--color-gray-light);
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.achievement-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-card h4 {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.events h3 {
  color: var(--color-teal);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.events-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.events-list li {
  background: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-orange);
}

/* How to Vote Section */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--color-orange);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.vote-cta {
  text-align: center;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
}

/* Prize Section */
.prize {
  background: var(--color-gray-light);
}

.prize-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-card h4 {
  color: var(--color-teal);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Final CTA */
.cta-final {
  background: linear-gradient(135deg, var(--color-teal), var(--color-orange));
  color: var(--color-white);
  text-align: center;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.share-text {
  margin-top: 2rem;
  font-size: 1rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--color-gray-dark);
  color: var(--color-white);
  padding: 2rem;
  text-align: center;
}

.footer p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    min-width: 60px;
    padding: 0.5rem;
  }

  .achievement-grid,
  .steps,
  .prize-info {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.8s ease-out;
}