/* Importação feita no HTML head */

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

/* Fonte padrão */
body {
    font-family: 'Cal Sans', sans-serif;
    background: #ECECEC;
    color: #31373A;
    line-height: 1.6;
}

/* Títulos sempre com Cal Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cal Sans', sans-serif;
    font-weight: 600;
}

/* Textos normais e mais finos com Poppins */
p, li, a, span, button {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    background: #31373A;
    color: #ECECEC;
    text-align: center;
    padding: 40px 20px;
}

.header .logo {
    width: 180px;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 60px;
    margin-bottom: 15px;
    font-weight: 600;
}

.header p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #BDBDBD;
}

/* Botão Principal */
.button {
    display: inline-block;
    background: #4CB4D4;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.button:hover {
    background: #3a9dbb;
}

/* Seção de Benefícios */
.benefits {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.benefits h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #31373A;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

/* Seção Call to Action */
.cta {
    background: #4CB4D4;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.cta h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Botão Escuro */
.button.dark {
    background: #31373A;
}

.button.dark:hover {
    background: #4b5357;
}

/* Sobre o Bispo */
.about {
    padding: 40px 20px;
    background: #ECECEC;
}

.about-content {
    display: flex;
    flex-direction: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.about-text {
    max-width: 800px;
    text-align: left;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

/* Rodapé */
.footer {
    background: #31373A;
    text-align: center;
    padding: 30px 20px;
}

.footer .social-icons {
    margin-top: 20px;
}

.footer .social-icons a img {
    width: 30px;
    margin: 0 8px;
}

/* Ajustes para os tamanhos das fontes */
p {
    font-size: 16px;
}

/* Links */
a {
    font-size: 32px;
    font-weight: 400;
    transition: font-size 0.3s ease;
}

a:hover {
    font-size: 34px;
}

/* Títulos h2 */
h2 {
    font-size: 16px;
    transition: font-size 0.3s ease;
}

@media (max-width: 1024px) {
    .header h1 {
        font-size: 48px;
    }

    p {
        font-size: 16px;
    }

    a {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }
}

/* Celulares médios */
@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }

    p {
        font-size: 16px;
    }

    a {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .header h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    a {
        font-size: 16px;
    }

    h2 {
        font-size: 24px;
    }
}
