﻿body {
}

:root {
    --color-primary: #0B2827;
    --color-secondary: #154C4A;
    --color-accent: #CE7F01;
}

.navbar-bg {
    background-color: var(--color-primary);
    opacity: 0.9;
}

.home-bg {
    background-color: var(--color-primary);
    opacity: 0.9;
}

.center-img {
    text-align: center;
}

.texto-primary {
    color: var(--color-primary);
}

.parallax-container {
    position: relative;
    height: 400px; /* Fixed height */
    background-image: url('../img/bg5.jpg'); /* Replace with your actual image */
    background-size: cover; /* Cover the container */
    background-position: center;
    
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.5); /* Add semi-transparent overlay */
    color: white; /* Ensures text is visible over the image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .parallax-container .content {
        position: relative;
        z-index: 1; /* Keeps the text on top of the background */
    }

    .parallax-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(11, 40, 39, 0.6); /* Semi-transparent overlay */
        z-index: 0; /* Places it behind the text */
    }


#banner {
    padding-bottom: 5rem;
}

.section-content {
    padding-top: 5em;
    padding-bottom: 5em;
}

.card-title {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.justify-text{
    text-align: justify;
    text-justify: inter-word;
}

#mission h2 {
    padding-bottom: 2rem;
}

.mission-blocks {
    padding-left: 2rem;
    padding-right: 2rem;
}

.mvv{
    margin-top: 3rem;
}

.card-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--color-primary);
    text-align: center;
    background-color: #f8f9fa;
}

.qr-code {
    width: 220px;
    height: 220px;
    padding-top: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-info, .social-media {
    margin-bottom: 15px;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1ebd57;
}

.cor-icone-card {
    color: var(--color-secondary);
}

.bg-icone-card {
    background-color: var(--color-secondary);
    color:white;
}

.bg-icone-card:hover {
    background-color: var(--color-primary);
    color: white;
}

.font-card {
    font-family: 'Rockwell Nova', sans-serif;
}


.new-card-container {
    display: flex;
    margin: 0px auto;
    justify-content: center;
    padding-top: 20px;
    background-color: var(--color-secondary);
    flex-direction: column;
}

.new-card-header {
    padding-left: 3em;
    padding-right: 3em;
    justify-content: center;
}

.new-card-body {
    justify-content: center;
    background-color: white;
    border: 2px solid var(--color-secondary);
    padding: 10px;
}

.new-qr-code {
    width: 220px;
    height: 220px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    margin: auto;
    justify-content: center;
}

.text-white {
    color: white;
}

.card-button-center {
    justify-content: center;
    display:flex;
}

.mobile-content {
    display: none;
}

.desktop-content {
    display: none;
}


.loader-box {
    display: flex;
    margin: auto;
    margin-top: 20%;
    margin-bottom: -20%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: var(--color-primary);
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: var(--color-secondary);
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%, 100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}
   