 /* Reset Básico e Configurações Globais */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', sans-serif;
     background-color: #000000;
     color: #ffffff;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
     text-align: center;
     padding: 2rem;
 }

 .container {
     max-width: 600px;
     width: 100%;
 }

 .church-logo {
     width: 80%;
     max-width: 250px;
     height: auto;
     margin-bottom: 1.5rem;
 }

 .subtitle {
     font-family: 'Inter', sans-serif;
     font-size: 1.5rem;
     font-weight: 400;
     margin-bottom: 1.5rem;
     color: #cccccc;
 }

 .description {
     font-family: 'Inter', sans-serif;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 2.5rem;
 }

 .social-links p {
     font-family: 'Inter', sans-serif;
     margin-bottom: 1rem;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .social-links a {
     color: #FF3D00;
     font-size: 1.8rem;
     margin: 0 15px;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .social-links a:hover {
     color: #FF3D00;
 }

 /* Ajustes para telas menores */
 @media (max-width: 600px) {
     .subtitle {
         font-size: 1.2rem;
     }
 }