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

body {
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.6;
    color: #303030;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-color: #f5f5f5;
}

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

/* Cabeçalho */
header {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 180px;
    height: auto;
}

.banner {
    background-color: #4abe9b;
    color: white;
    padding: 15px;
    margin: 0 -15px;
}

.banner h2 {
    margin: 0;
    font-size: 24px;
}

/* Seções principais */
section {
    padding: 40px 0;
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    line-height: 1.2;
}

h2 {
    font-size: 30px;
    line-height: 1.3;
}

.highlight {
    color: #4a90e2;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
}

.intro-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grotto-image, .petition-image {
    margin: 30px 0;
}

/* Formulário de oração */
.prayer-form {
    background-color: #0055a4;
    color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: 40px auto;
}

.form-title {
    color: white;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

input {
    height: 50px;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #f5a623;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e09612;
}

/* Como funciona */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
}

/* CTA Buttons */
.cta-button {
    margin: 30px 0;
}

.cta-link {
    display: inline-block;
    background-color: #f5a623;
    color: #333;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #e09612;
}

/* Rodapé */
footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #4a90e2;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
}

.footer-text p {
    margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
