* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    width: 100%;
    text-align: center;
  }
  
  .brand {
    font-family: "Times New Roman", Times, serif;
    font-size: 8rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .brand:hover {
    transform: scale(1.1);
    letter-spacing: 2rem;
    text-shadow: 
      0 0 20px rgba(255, 255, 255, 0.2),
      0 0 40px rgba(255, 255, 255, 0.2),
      0 0 60px rgba(255, 255, 255, 0.2);
    background: linear-gradient(45deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .subtext {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.5rem;
    color: #666666;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    letter-spacing: 0.2rem;
  }
  
  .brand:hover + .subtext {
    opacity: 1;
    transform: translateY(0);
  }
  
  .description {
    max-width: 800px;
    margin: 3rem auto 2rem auto;
    padding: 0 2rem;
  }
  
  .description p {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.1rem;
    color: #888888;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
  }
  
  .description:hover p {
    color: #aaaaaa;
    opacity: 1;
  }
  
  .contact-section {
    margin: 3rem 0 2rem 0;
  }
  
  .whatsapp-icon-link {
    display: inline-block;
    color: #666666;
    text-decoration: none;
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
  }
  
  .whatsapp-icon-link:hover {
    color: #ffffff;
    border-color: #666666;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  }
  
  .whatsapp-icon {
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-icon-link:hover .whatsapp-icon {
    transform: scale(1.2);
  }
  
  .address {
    margin: 2rem 0;
  }
  
  .address p {
    font-family: "Times New Roman", Times, serif;
    font-size: 0.9rem;
    color: #555555;
    letter-spacing: 0.1rem;
    line-height: 1.4;
  }
  
  .footer-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  
  .footer-link {
    color: #666666;
    text-decoration: none;
    font-family: "Times New Roman", Times, serif;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
  }
  
  .footer-link:hover {
    color: #ffffff;
  }
  
  .separator {
    color: #444444;
    font-family: "Times New Roman", Times, serif;
    font-size: 0.95rem;
  }
  
  @media (max-width: 768px) {
    .brand {
      font-size: 4rem;
    }
    
    .brand:hover {
      letter-spacing: 1rem;
    }
  
    .subtext {
      font-size: 1rem;
    }
    
    .description {
      padding: 0 1.5rem;
      margin: 2rem auto 1.5rem auto;
    }
    
    .description p {
      font-size: 1rem;
      line-height: 1.5;
    }
    
    .whatsapp-icon {
      width: 1.5rem;
      height: 1.5rem;
    }
    
    .address p {
      font-size: 0.8rem;
      padding: 0 1rem;
    }
    
    .footer-nav {
      gap: 1rem;
    }
    
    .footer-link {
      font-size: 0.85rem;
    }
    
    .separator {
      font-size: 0.85rem;
    }
  }