/*  import google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700 &family=Ubuntu:wght@400;500;700&family=Fredoka+One&display=swap');


@font-face {

    font-family: 'Optima';

    src: url('OptimaLTPro-Black.otf') format('opentype');

    font-weight: normal;

}


:root {

    --azul-principal: #1D254A;

    --amarelo-principal: #B28C3D;

    --escuro: #262A10;

    --claro: #C9D6EA;

}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    text-decoration: none;

}

html {

    scroll-behavior: smooth;

}


/* custom scroll bar */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #f1f1f1;

}

::-webkit-scrollbar-thumb {

    background: var(--amarelo-principal);

}


::-webkit-scrollbar-thumb:hover {

    background: #555;

}


/* all similar content styling codes */

section {

    padding: 100px 0;

}

.max-width {

    max-width: 1300px;

    padding: 0 auto;

    margin: auto;

}

.about,
.services,
.skills,
.teams,
.contact,
footer {

    font-family: 'Poppins', sans-serif;

}

.about .about-content,

.services .serv-content,

.skills .skills-content,

.contact .contact-content {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: space-between;

}

section .title {

    position: relative;

    text-align: center;

    font-size: 40px;

    font-weight: 500;

    margin-bottom: 60px;

    padding-bottom: 20px;

    font-family: 'Ubuntu', sans-serif;

}

section .title::before {

    content: "";

    position: absolute;

    bottom: 0;

    left: 50%;

    width: 180px;

    height: 3px;

    background: #111;

    transform: translateX(-50%);

}

section .title::after {

    position: absolute;

    bottom: -8px;

    left: 50%;

    font-size: 20px;

    color: var(--azul-principal);

    padding: 0 5px;

    background: #fff;

    transform: translateX(-50%);

}


/* navbar styling */

.navbar {

    position: fixed;

    width: 100%;

    z-index: 999;

    padding: 30px 0;

    font-family: 'Ubuntu', sans-serif;

    transition: all 0.3s ease;

}

.navbar.sticky {

    padding: 15px 0;

    background: var(--azul-principal);

}

.navbar .max-width {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.navbar .logo a {

    font-family: 'Optima', sans-serif;

    color: var(--claro);

    font-size: 35px;

    font-weight: 400;

}

.navbar .logo a span {

    color: var(--azul-principal);

    transition: all 0.3s ease;

}

.navbar.sticky .logo a span {

    color: var(--claro);

}

.navbar .menu li {

    list-style: none;

    display: inline-block;

}

.navbar .menu li a {

    display: block;

    color: var(--claro);

    font-size: 18px;

    font-weight: 500;

    margin-left: 25px;

    transition: color 0.3s ease;

}

.navbar .menu li a:hover {

    color: var(--azul-principal);

}

.navbar.sticky .menu li a:hover {

    color: var(--amarelo-principal);

}


/* menu btn styling */

.menu-btn {

    color: var(--claro);

    font-size: 23px;

    cursor: pointer;

    display: none;

}

.scroll-up-btn {

    position: fixed;

    height: 45px;

    width: 42px;

    background: var(--azul-principal);

    right: 30px;

    bottom: 10px;

    text-align: center;

    line-height: 45px;

    color: var(--amarelo-principal);

    z-index: 9999;

    font-size: 30px;

    border-radius: 6px;

    border-bottom-width: 2px;

    cursor: pointer;

    opacity: 0;

    pointer-events: none;

    transition: all 0.3s ease;

}

.scroll-up-btn.show {

    bottom: 30px;

    opacity: 1;

    pointer-events: auto;
    background-image: url('./scrollUp.png');
    background-position: center;
    background-repeat: no-repeat;

}

.scroll-up-btn:hover {

    filter: brightness(90%);

}


/* home section styling */

.home {

    display: flex;

    background: url("images/banner-3.jpg") no-repeat center;

    height: 100vh;

    color: var(--azul-principal);

    min-height: 500px;

    background-size: cover;

    background-attachment: fixed;

    font-family: 'Ubuntu', sans-serif;

}

.home .max-width {

    width: 100%;

    display: flex;

}

.home .max-width .row {

    margin-right: 0;

}

.home .home-content .text-1 {

    font-size: 27px;

}

.home .home-content .text-2 {

    font-size: 75px;

    font-weight: 600;

    margin-left: -3px;

}

.home .home-content .text-3 {

    font-size: 40px;

    margin: 5px 0;

}

.home .home-content .text-3 span {

    color: var(--azul-principal);

    font-weight: 500;

}

.home .home-content a {

    display: inline-block;

    background: var(--azul-principal);

    color: #fff;

    font-size: 25px;

    padding: 12px 36px;

    margin-top: 20px;

    font-weight: 400;

    border-radius: 6px;

    border: 2px solid var(--azul-principal);

    transition: all 0.3s ease;

}

.home .home-content a:hover {

    color: var(--amarelo-principal);

    background: none;

    font-weight: 500;

}


/* about section styling */

.about .title::after {

    content: "IBR Curitiba";

}

.about .about-content .left {

    width: 45%;

}

.about .about-content .left img {

    height: 400px;

    width: 400px;

    object-fit: cover;

}

.about .about-content .right {

    width: 55%;

}

.about .about-content .right .text {

    font-size: 25px;

    font-weight: 600;

    margin-bottom: 10px;

}

.about .about-content .right .text span {

    color: var(--azul-principal);

}

.about .about-content .right p {

    text-align: justify;

    font-size: 30px;

}

.about .about-content .right a {

    display: inline-block;

    background: var(--azul-principal);

    color: #fff;

    font-size: 20px;

    font-weight: 500;

    padding: 10px 30px;

    margin-top: 20px;

    border-radius: 6px;

    border: 2px solid var(--azul-principal);

    transition: all 0.3s ease;

}

.about .about-content .right a:hover {

    color: var(--amarelo-principal);

    background: none;

}


/* services section styling */

.services,
.teams {

    color: #fff;

    background: #111;

}

.services .title::before,

.teams .title::before,

.reforma .title::before,

.calvino .title::before {

    background: var(--azul-principal);

}

.services .title::after,

.teams .title::after {

    background: #111;

    content: "da nossa igreja";

    color: var(--amarelo-principal);

}

.services .max-width .container {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}


.services a {

    color: var(--amarelo-principal);

    margin-top: 80px;

}


.services a:hover {

    color: var(--claro);

}


.reforma,

.calvino,

.pactual,

.dizimos {

    align-content: center;

    font-size: 18px;

    text-align: justify;

    font-family: 'Poppins', sans-serif;

}


.reforma .text,

.calvino .text,

.pactual .text,

.dizimos .text {

    margin: auto;

    width: 80%;

    padding: 5px;

}


.reforma .text p,

.calvino .text p,

.pactual .text p,

.dizimos .text p {

    padding: 10px 0;

}

.reforma .title::after {

    background: #fff;

    content: "\"Os Cinco Solas\"";

    color: var(--amarelo-principal);

}


.calvino .title::after {

    background-color: #fff;

    content: "\"TULIP\"";

    color: var(--amarelo-principal);

}

.reforma .btn,

.calvino .btn,

.pactual .btn,

.dizimos .btn {

    display: inline-block;

    background: var(--azul-principal);

    color: var(--claro);

    font-size: 25px;

    padding: 12px 20px;

    margin-top: 20px;

    font-weight: 400;

    border-radius: 6px;

    border: 2px solid var(--azul-principal);

    transition: all 0.3s ease;

}


.reforma .btn:hover,

.calvino .btn:hover,

.pactual .btn:hover,

.dizimos .btn:hover {

    color: var(--amarelo-principal);

    background: none;

    font-weight: 500;

}


.reforma a,

.calvino a,

.pactual a,

.dizimos a {

    color: var(--amarelo-principal);

}


.reforma a:hover,

.calvino a:hover,

.pactual a:hover,

.dizimos a:hover {

    color: var(--claro)
}


.calvino td,
.calvino tr {

    border: 1px solid #ddd;

    padding: 8px;

    text-align: center;

}


.calvino tr:hover {

    background-color: var(--amarelo-principal);

    text-color: var(--azul-principal);

}


.calvino th {

    padding-top: 12px;

    padding-bottom: 12px;

    text-align: center;

    background-color: #04AA6D;

    color: white;

}


.calvino h3 {

    padding-top: 20px;

    font-family: 'Poppins', sans-serif;

}


.dizimos .vers {

    text-align: center;

    color: var(--azul-principal);

    font-style: italic;

    font-weight: 600;

    font-size: 20px;

}


.dizimos .qrcode {

    display: flex;

    justify-content: center;

}


@media(max-width: 700px) {

    .reforma .text,

    .calvino .text,

    .pactual .text,

    .dizimo .text {

        width: 100%;

    }

}


.wrapper {

    max-width: 1300px;

    align-items: center;

    padding: 0 auto;

    margin: 50px auto;

    display: flex;

    flex-wrap: wrap;

    /* display: grid;

    margin: 200px 50px auto;

    grid-gap: 20px;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */

}

@media(max-width: 700px) {

    .wrapper {

        width: 100%;

    }

}

.wrapper .box {

    width: 24%;

    height: 350px;

    margin: 1% auto;

    position: relative;

    background-color: #1D254A;

    overflow: hidden;

    border-radius: 20px;

}

@media(max-width:980px) {

    .wrapper .box {

        width: calc(50% - 20px);

    }

}

@media(max-width:700px) {

    .wrapper .box {

        width: 100%;

        margin: 10px 25px;

    }

}

.wrapper .box .front-face {

    position: absolute;

    top: 0;

    left: 0;

    background: #1D254A;

    height: 100%;

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: all 0.3s ease;

    z-index: 2;

}


.wrapper .box:hover .front-face {

    top: 30px;

    left: calc(50% - 175px);

    width: 350px;

    height: 50px;

}


@media(max-width:700px) {

    .wrapper .box .front-face {

        top: 30px;

        left: calc(50% - 175px);

        width: 350px;

        height: 50px;

    }

}


.box .front-face h2,

.box .back-face h2 {

    font-size: 35px;

    font-weight: 600;

    text-transform: uppercase;

    text-align: center;

}


.box .front-face h2 {

    color: #fff;

    transition: all 0.5s ease;

}

.wrapper .box:hover .front-face h2 {

    color: #FFC857;

}

.box .back-face {

    position: relative;

    padding: 20px;

    color: #fff;

    text-emphasis: center;

    margin-top: 100px;

    z-index: 1;

}

.box .back-face p {

    margin-top: 10px;

    text-align: center;

}

/* skills section styling */


.skills .title::after {

    ;

    /* content: "what i know"; */

}

.skills .skills-content .column {

    width: calc(50% - 30px);

}


.skills .skills-content .top .text {

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 10px;

}


.skills .skills-content .top {

    text-align: justify;

    padding: 20px;

}

.skills .skills-content .left .text {

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 10px;

}

.skills .skills-content .left p {

    text-align: justify;

}


.skills .skills-content .left .mapa {

    display: flex;

    justify-content: center;

}


.skills .skills-content .right .bars {

    margin-bottom: 15px;

}

.skills .skills-content .right .info {

    display: flex;

    margin-bottom: 5px;

    align-items: center;

    justify-content: space-between;

}

.skills .skills-content .right span {

    font-weight: 500;

    font-size: 18px;

}

.skills .skills-content .right .line {

    height: 5px;

    width: 100%;

    background: lightgrey;

    position: relative;

}

.skills .skills-content .right .line::before {

    content: "";

    position: absolute;

    height: 100%;

    left: 0;

    top: 0;

    background: var(--azul-principal);

}

.skills-content .right .leitura::before,

.skills-content .right .ordenancas::before,

.skills-content .right .oracao::before,

.skills-content .right .hinos::before {

    width: 100%;

}


.skills .skills-content .vers {

    text-align: center;

    padding: 50px 200px;

    color: var(--azul-principal);

    font-style: italic;

    font-weight: 600;

    font-size: 20px;

}


/* contact section styling */

.contact {

    background: #a4b2eb;

}

.contact .title:before {

    background: var(--amarelo-principal);

}

.contact .title::after {

    background: #a4b2eb;

    content: "Fale Conosco";

    color: var(--azul-principal);

}

.contact .contact-content .column {

    width: calc(50% - 30px);

}

.contact .contact-content .text {

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 10px;

}

.contact .contact-content .left a {

    text-decoration: none;

    color: var(--azul-principal);

    transition: all 0.3s ease;

}

.contact .contact-content .left a:hover {

    color: var(--amarelo-principal);

}

.contact .contact-content .left p {

    text-align: justify;

}

.contact .contact-content .left .icons {

    margin: 10px 0;

}

.contact .contact-content .row {

    display: flex;

    height: 65px;

    align-items: center;

}

.contact .contact-content .row .info {

    margin-left: 30px;

}

.contact .contact-content .row i {

    font-size: 30px;

    color: var(--azul-principal);

}

.contact .contact-content .info .head {

    font-weight: 500;

}

.contact .contact-content .info .sub-title {

    color: #333;

}

.contact .right form .fields {

    display: flex;

}

.contact .right form .field,

.contact .right form .fields .field {

    height: 45px;

    width: 100%;

    margin-bottom: 15px;

}

.contact .right form .textarea {

    height: 80px;

    width: 100%;

}

.contact .right form .name {

    margin-right: 10px;

}

.contact .right form .field input,

.contact .right form .textarea textarea {

    height: 100%;

    width: 100%;

    border: 1px solid lightgrey;

    border-radius: 6px;

    outline: none;

    padding: 0 15px;

    font-size: 17px;

    font-family: 'Poppins', sans-serif;

    transition: all 0.3s ease;

}

.contact .right form .field input:focus,

.contact .right form .textarea textarea:focus {

    border-color: #b3b3b3;

}

.contact .right form .textarea textarea {

    padding-top: 10px;

    resize: none;

}

.contact .right form .button-area {

    display: flex;

    align-items: center;

}

.right form .button-area button {

    color: #fff;

    display: block;

    width: 160px !important;

    height: 45px;

    outline: none;

    font-size: 18px;

    font-weight: 500;

    border-radius: 6px;

    cursor: pointer;

    flex-wrap: nowrap;

    background: var(--azul-principal);

    border: 2px solid var(--azul-principal);

    transition: all 0.3s ease;

}

.right form .button-area button:hover {

    color: var(--amarelo-principal);

    background: none;

}

/* footer section styling */

footer {

    background: var(--azul-principal);

    padding: 15px 23px;

    color: #fff;

    text-align: center;

}

footer span a {

    color: var(--amarelo-principal);

    text-decoration: none;

}

footer span a:hover {

    text-decoration: underline;

}


/* responsive media query start */

@media(max-width: 1104px) {

    .about .about-content .left img {

        height: 350px;

        width: 350px;

    }

}


@media(max-width: 991px) {

    .max-width {

        padding: 0 50px;

    }

}

@media(max-width: 947px) {

    .menu-btn {

        display: block;

        z-index: 999;

    }

    /*  .menu-btn i.active:before{

        content: "\f00d";

    }*/

    .btnOpenMenu:before {
        content: "";
        display: inline-block;
        padding-bottom: 0;
        margin-bottom: 0;
        margin-top: 1rem;
        width: 24px;
        height: 24px;
        background-image: url('./menuBarIcon.svg');
        background-size: cover;
    }

    .navbar .menu {

        position: fixed;

        height: 100vh;

        width: 100%;

        left: -100%;

        top: 0;

        background: var(--azul-principal);

        text-align: center;

        padding-top: 80px;

        transition: all 0.3s ease;

    }

    .navbar .menu.active {

        left: 0;

    }

    .navbar .menu li {

        display: block;

    }

    .navbar .menu li a {

        display: inline-block;

        margin: 20px 0;

        font-size: 25px;

    }

    .navbar .menu li a:hover {

        color: var(--amarelo-principal);

    }

    .home .home-content .text-2 {

        font-size: 70px;

    }

    .home .home-content .text-3 {

        font-size: 35px;

    }

    .home .home-content a {

        font-size: 23px;

        padding: 10px 30px;

    }

    .max-width {

        max-width: 930px;

    }

    .about .about-content .column {

        width: 100%;

    }

    .about .about-content .left {

        display: flex;

        justify-content: center;

        margin: 0 auto 60px;

    }

    .about .about-content .right {

        flex: 100%;

    }


    .services .container .serviceBox {

        width: calc(50% - 10px);

        margin-bottom: 20px;

        display: flex;

        flex-wrap: wrap;

    }

    .skills .skills-content .column,

    .contact .contact-content .column {

        width: 100%;

        margin-bottom: 35px;

    }


    .skills .skills-content {

        width: 100%;

        padding: 0;

    }


    .skills .skills-content .vers {

        width: 100%;

        padding: 0;

    }

}


@media(max-width: 690px) {

    .max-width {

        padding: 0 23px;

    }

    .home .home-content .text-2 {

        font-size: 60px;

    }

    .home .home-content .text-3 {

        font-size: 32px;

    }

    .home .home-content a {

        font-size: 20px;

    }

    .services .serv-content .card {

        width: 100%;

    }

    .skills .skills-content .column .right {

        width: 100%;

        padding: 0;

    }


}


@media(max-width: 500px) {

    .home .home-content .text-2 {

        font-size: 50px;

    }

    .home .home-content .text-3 {

        font-size: 27px;

    }

    .about .about-content .right .text,

    .skills .skills-content .left .text {

        font-size: 19px;

    }

    .contact .right form .fields {

        flex-direction: column;

    }

    .contact .right form .name,

    .contact .right form .email {

        margin: 0;

    }

    .right form .error-box {

        width: 150px;

    }

    .scroll-up-btn {

        right: 15px;

        bottom: 15px;

        height: 38px;

        width: 35px;

        font-size: 23px;

        line-height: 38px;

    }

}

 body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        header img {
            max-width: 150px;
            height: auto;
            margin-right: 10px;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
            color: white;
            white-space: nowrap;
        }

        main {
            padding-top: 180px;
            padding-bottom: 20px;
            margin: 0 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        h2 {
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }

        iframe {
            border-radius: 5px;
            border: solid 1px #777;
            width: 100%;
            height: calc(100vh - 240px);
            max-width: 1200px;
        }

        footer {
            background-color: #2c3e50;
            color: white;
            padding: 10px 0;
            text-align: center;
        }

        footer p {
            margin: 0;
        }

        /* Exibe o primeiro iframe apenas em telas grandes */
        .iframe-desktop {
            display: block;
        }

        /* Oculta o segundo iframe por padrão */
        .iframe-mobile {
            display: none;
        }

        /* Ajustes responsivos */
        @media (max-width: 1024px) {
            iframe {
                height: calc(100vh - 220px);
            }

            header h1 {
                font-size: 2em;
            }

            main {
                margin: 0 15px;
            }
        }

        @media (max-width: 768px) {
            header img {
                max-width: 120px;
            }

            header h1 {
                font-size: 1.8em;
            }

            iframe {
                height: calc(100vh - 200px);
            }

            main {
                margin: 0 10px;
            }
        }

        @media (max-width: 480px) {
            header img {
                max-width: 100px;
            }

            header h1 {
                font-size: 1.5em;
            }

            iframe {
                height: calc(100vh - 180px);
            }

            main {
                margin: 0 5px;
            }

            /* Em telas pequenas, oculta o iframe desktop e exibe o iframe mobile */
            .iframe-desktop {
                display: none;
            }

            .iframe-mobile {
                display: block;
                width: 100%;
            }
        }
