
:root {
    --primary: #2c8a4a;
    --secondary: #1a5c31;
    --accent: #f7b538;
    --text: #333;
    --light: #f4f4f4;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
  }
  
  .header {
    background: linear-gradient(rgba(44, 138, 74, 0.9), rgba(26, 92, 49, 0.9)),
                url('../imgs/fundo.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
  }
  
  .coin-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  .coin-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
  }
  
  .social-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }
  
  .social-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text);
  }
  
  .social-button:hover {
    transform: translateX(-5px);
    box-shadow: 2px 4px 8px rgba(0,0,0,0.3);
  }
  
  .social-button.x {
    background: #000;
    color: white;
  }
  
  .social-button.telegram {
    background: #0088cc;
    color: white;
  }
  
  .social-button.pump {
    background: var(--accent);
    color: white;
  }
  
  .benefits {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .benefits h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
  }
  
  .benefit-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
  }
  
  .stats {
    padding: 40px;
    background: var(--light);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .stats-grid div {
    text-align: center;
    padding: 20px;
  }
  
  .stats-grid div p {
    font-size: 2.5em;
    color: var(--primary);
    font-weight: bold;
  }
  
  .social-feeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
  }
  
  .feed-container {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    height: 500px;
    overflow-y: auto;
  }
  
  .feed-container h2 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .feed-container h2 svg {
    width: 24px;
    height: 24px;
  }
  
  .feed-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .feed-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
  }
  
  .feed-item p {
    margin: 0;
    color: var(--text);
  }
  
  .feed-item .date {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
  }
  
  .telegram-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .telegram-message {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .telegram-message .author {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
  }
  
  .telegram-message .content {
    color: var(--text);
  }
  
  .telegram-message .time {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
  }
  
  /* Responsive Enhancements */
  @media (max-width: 768px) {
    .social-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      top: auto;
      transform: none;
      flex-direction: row;
      justify-content: flex-end;
    }
    
    .header {
      padding: 40px 15px;
    }
    
    .coin-container {
      width: 150px;
      height: 150px;
    }
    
    .stats-grid div p {
      font-size: 2em;
    }
    
    .benefits {
      padding: 40px 15px;
    }
    
    .social-feeds {
      padding: 40px 15px;
    }
  }
  
  .timeline {
    padding: 60px 20px;
    background: var(--light);
  }
  
  .timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
  }
  
  .timeline-item {
    width: calc(50% - 30px);
    margin: 30px 0;
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .timeline-item:nth-child(odd) {
    margin-left: auto;
  }
  
  .timeline-item:nth-child(odd)::before {
    left: -40px;
  }
  
  .timeline-item:nth-child(even)::before {
    right: -40px;
  }
  
  @media (max-width: 768px) {
    .timeline-container::before {
      left: 20px;
    }
    
    .timeline-item {
      width: calc(100% - 50px);
      margin-left: 50px !important;
    }
    
    .timeline-item::before {
      left: -40px !important;
    }
  }
  