@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

html {
    scroll-behavior: smooth;
}

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}

.container {
    max-width: 60vw !important;
    margin: 0 auto;
}

#resultado {
    scroll-margin-top: 250px;
}

#sobre {
    scroll-margin-top: 150px;
}

#acoes {
    scroll-margin-top: 80px;
}

#parceiros {
    scroll-margin-top: 550px;
}

#contato {
    scroll-margin-top: 150px;
}

.navbar {
    display: flex;
    top: 24px;
    justify-content: space-between;
    align-items: center;
    background-color: #373536;
    padding: 10px 20px;
    border-radius: 70px;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style-type: none;
    align-items: center;
    margin-bottom: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.nav-menu li a:hover {
    color: #E50614;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-cta {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    border-radius: 5px;
    background-color: white;
    transition: all 0.3s;
}

.primary-btn {
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #E50614;
    color: white;
    border: 0px;
    max-width: 360px;
    align-self: center;
    transition: all 0.5s;
}

.primary-btn:hover {
    background-color: #f80f1e;
    box-shadow: 4px 3px 12px 0px rgba(0, 0, 0, 0.381);
    transition: all 0.5s;
}

button:disabled {
    background-color: #cccccc; /* Cor cinza para indicar desabilitado */
    color: #666666; /* Cor do texto mais clara */
    cursor: not-allowed; /* Cursor indicando que não é clicável */
    opacity: 0.7; /* Reduz a opacidade para reforçar o estado desabilitado */
}

button.success {
    background-color: #28a745; /* Verde */
    color: white;
    transition: all 0.3s ease-in-out;
    text-wrap: nowrap;
}

button.success:hover {
    background-color: #74cc89; /* Verde */
    color: white;
    transition: all 0.3s ease-in-out;
}

button.success.animate {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero {
    margin-top: 10vw !important;
    margin-bottom: 13vw !important;
    display: grid;
    gap: 40px;
}

.hero h1 {
    font-size: 48px;
    color: white;
}

.bg-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    height: 100%;
    object-position: 75% 80%;
}

.bg-hero-img-mobile {
    display: none;
}

.info-section {
    width: 100%;
    background-color: #373536;
    margin-top: 100px;
    padding: 20px 0px;
}

.infos {
    display: flex;
    justify-content: space-between;
}

.info h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.info p {
    font-size: 16px;
    color: rgb(220, 220, 220);
}

.about-section {
    background-color: #8FA3AD;
    padding: 64px 0px;
    bottom: -1px;
    position: relative;
}

.section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    margin-bottom: 32px;
}

.section-header h3 {
    text-align: center;
    color: white;
    font-size: 36px;
}

.section-header div {
    width: 75px;
    background-color: #f80f1e;
    height: 8px;
    border-radius: 25px;
    align-self: center;
}

.about-cards {
    display: flex;
    gap: 16px;
}

.about-us,
.mission {
    background-color: #373536;
    padding: 24px;
    border-radius: 25px;
    box-shadow: 4px 3px 12px 0px rgba(0, 0, 0, 0.381);
}

.about-us p,
.mission p {
    color: #dbdbdb;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.card-header h3, h1 {
    color: white;
}

.card-header p {
    font-size: 18px;
}

.card-header svg {
    fill: rgb(255, 28, 28);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}

.action-section {
    background: rgb(143, 163, 173);
    background: linear-gradient(180deg, rgba(143, 163, 173, 1) 0%, rgba(255, 255, 255, 0) 40%);
    margin-bottom: 0;
}

.action-card {
    background-color: #373536;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 4px 3px 12px 0px rgba(0, 0, 0, 0.381);
}

.action-card p {
    font-size: 14px;
    color: #dbdbdb;
}

.action-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: white;
}

.icon-card {
    border-radius: 32px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background-color: #7AC142;
    overflow: visible;
    fill: white;
}

.icon-card.servicos {
    background-color: #6A5ACD;
}

.icon-card.emocional {
    background-color: #FF00BF;
}

.icon-card.higiene {
    background-color: #0270EE;
}

.icon-card.vestimenta {
    background-color: #D84315;
}

.icon-card.pet {
    background-color: #F9A825;
}

.city-animation {
    overflow: hidden;
    bottom: 211px;
    position: relative;
    z-index: -1;
    height: 50vw;
}

.city-slide {
    display: flex;
    width: 200%;
    animation: slide 10s linear infinite;
}

.city-slide img {
    width: 100%;
    height: auto;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.wave-overlay {
    bottom: 614px;
    left: 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.wave-overlay img {
    width: 100%;
    display: block;
    height: 20vw;
}

.cta-section {
    position: relative;
    margin-top: -618px;
    width: 100%;
    overflow: hidden;
}

.cta-section-bg {
    padding-bottom: 64px;
    background-color: #E50614;
}

.cta-section-content {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: center;
    margin-bottom: 150px;
}

.cta-section-content img {
    width: 40vw;
}

.cta {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.cta h3 {
    color: white;
    font-size: 48px;
}

.secondary-btn {
    padding: 8px 40px;
    background-color: #373536;
    border: 0px;
    color: white;
    border-radius: 30px;
    width: 14rem;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background-color: #3e3d3e;
    transition: all 0.3s;
    box-shadow: 4px 3px 12px 0px rgba(0, 0, 0, 0.381);
}

.section-header-black {
    margin-top: 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    margin-bottom: 40px;
}

.section-header-black h3 {
    text-align: center;
    color: white;
    font-size: 36px;
}

.section-header-black div {
    width: 75px;
    background-color: #373536;
    height: 8px;
    border-radius: 25px;
    align-self: center;
}

.section-header-dark {
    margin-top: 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    margin-bottom: 40px;
}

.section-header-dark h3 {
    text-align: center;
    color: rgb(31, 31, 31);
    font-size: 36px;
}

.section-header-dark div {
    width: 75px;
    background-color: #f80f1e;
    height: 8px;
    border-radius: 25px;
    align-self: center;
}

.marquee {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    animation: scroll 45s linear infinite;
    min-width: 200%;
}

.marquee-content img {
    height: 80px;
    margin-right: 80px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.form-section {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 45% 55%);
    grid-template-rows: 1fr;
    grid-column-gap: 32px;
    margin-bottom: 32px;
}

.form-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aside-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tertiary-btn {
    background-color: white;
    padding: 8px 32px;
    border: 2px solid #373536;
    color: #373536;
    width: 370px;
    border-radius: 30px;
    transition: all 0.3s;
}

.tertiary-btn:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid #E50614;
    color: #E50614;
    font-weight: 700;
    transition: all 0.3s;
}

.contact-form {
    background-color: #373536;
    padding: 24px;
    height: 600px;
    align-self: end;
    border-radius: 20px;
    box-shadow: 4px 3px 12px 0px rgba(0, 0, 0, 0.381);
}

.form-container {
    background: #373536;
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-family: Arial, sans-serif;
}

.form-group {
    margin-bottom: 10px;
    width: 50%;
}

.form-group-full {
    margin-bottom: 10px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
}

input,
select,
textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background: #e9e9e9;
    color: rgb(62, 62, 62);
}

.aside-inside-form {
    display: flex;
    gap: 16px;
}

.faq-section-bg {
    margin-top: 130px;
    background-color: #373536;
    padding: 64px 0px;
}

.faq-item {
    margin-bottom: 10px;
    font-size: 20px;
}

.faq-question {
    padding: 10px 0px 24px;
    color: #fff;
    cursor: pointer;
    border-bottom: 1px solid rgb(89, 89, 89);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-answer {
    color: rgb(213, 213, 213);
    border-radius: 5px;
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    font-size: 16px;
}

.faq-answer.active {
    max-height: 200px;
    opacity: 1;
}

.chevron {
    transition: transform 0.3s ease;
}

.chevron.active {
    transform: rotate(180deg);
}

.footer-top {
    margin-top: 64px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top img {
    width: 170px;
}

.follow-us {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}

.socials {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 24px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.aos {
    opacity: 0; /* Start hidden */
}

.nav-item-menu {
    font-size: 18px;
}

.nav-item-menu svg {
    display: none;
}

.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.aos-animate {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (max-width: 1088px) {
    .form-section {
        margin-top: 64px;
        display: flex;
        flex-direction: column;
        gap: 64px;
        margin-bottom: 64px;
    }

    .form-side {
        display: flex;
        flex-direction: column;
        gap: 32px;
        justify-content: space-between;
    }

    .bg-hero-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        object-fit: cover;
        height: 100%;
        object-position: 75% 80%;
    }

    .hero {
        margin-top: 20vw !important;
        margin-bottom: 27vw !important;
        display: grid;
        gap: 40px;
    }

    .hero h1 {
        font-size: 48px;
        color: white;
    }

    .city-animation img {
        top: -115px;
    }

    .wave-overlay {
        bottom: 403px;
    }

    .cta-section {
        margin-top: -405px;
    }
}

@media (max-width: 767px) {
    .bg-hero-img-mobile {
        display: flex;
        position: absolute;
        left: 0;
        width: 100%;
        z-index: -1;
        object-fit: cover;
        height: 100%;
        top: 0px;
        object-position: 78% 119%;
    }

    .bg-hero-img {
        display: none;
    }

    .city-animation img {
        top: -134px;
    }

    .wave-overlay {
        bottom: 342px;
    }

    .cta-section {
        margin-top: -343px;
    }
}

@media (max-width: 980px) {
    body .container {
        max-width: 98vw !important;
        padding: 0 20px;
    }

    .container.navbar {
        border-radius: 0px;
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 40px;
        padding-bottom: 16px;
        position: fixed;
        z-index: 50;
        box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(1px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        background-color: #373536;
        max-height: 0;
        overflow: hidden;
        align-items: start;
        transition: all 0.3s ease-out;
        gap: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        gap: 15px;
        padding-top: 32px;
        border-radius: 0px;
    }

    .nav-menu.active button {
        width: 100%;
    }

    li {
        width: 100%;
    }

    .nav-item-menu {
        display: flex;
        justify-content: start;
        width: 100%;
        gap: 10px;
        padding-bottom: 11px;
        border-bottom: 1px solid rgb(68, 68, 68);
        font-size: 16px;
        align-items: center;
    }

    .nav-item-menu svg {
        margin-left: 10px;
        display: block;
    }

    .navbar {
        top: 0px;
    }

    .navbar button {
        display: none;
    }

    .navbar.active {
        border-radius: 0px;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .mobile-cta .primary-btn {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .city-animation {
        position: relative;
        bottom: 170px;
    }

    .wave-overlay {
        bottom: 326px;
    }

    .cta-section {
        margin-top: -328px;
    }

    .bg-hero-img {
        display: flex;
    }

    .section-header,
    .section-header-black,
    .section-header-dark {
        h3 {
            font-size: 32px;
        }
        div {
            height: 6px;
        }
    }

    .about-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .about-cards h3 {
        font-size: 20px;
    }

    .about-cards p {
        font-size: 14px;
    }

    .card-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }

    .action-card h3 {
        font-size: 20px;
    }

    .action-card p {
        font-size: 14px;
    }

    .cta-section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 64px;
        justify-content: center;
        margin-bottom: 100px;
    }

    .cta-section-content br {
        display: none;
    }

    .cta-section-content img {
        width: 100%;
    }

    .cta {
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

    .cta h3 {
        color: white;
        font-size: 24px;
    }

    .marquee-content {
        display: flex;
        animation: scroll 25s linear infinite;
        min-width: 200%;
    }

    .aside-inside-form {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .form-container {
        width: 100% !important;
    }

    .secondary-btn {
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    .aside-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .faq-section-bg {
        padding: 32px 0px;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 8px 0px;
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
        padding: 10px 0px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .follow-us {
        display: flex;
        flex-direction: column;
        
        align-items: center;
        gap: 10px;
    }

    .socials {
        width: 100%;
        justify-content: center;
        display: flex;
        gap: 24px;
        margin: 0 auto;
    }

    .footer-content {
        text-align: center;
        margin-bottom: 40px;
        font-size: 14px;
        color: #5d5d5d;
    }
}

@media (max-width: 680px) {
    .container {
        max-width: 95vw;
        padding: 0 10px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        background-color: #373536;
        padding: 10px 10px;
        border-radius: 0px;
        justify-self: anchor-center;
    }

    .navbar ul {
        display: flex;
        list-style-type: none;
        gap: 20px;
    }

    .navbar li a {
        text-decoration: none;
        color: white;
        transition: all 0.3s;
    }

    .navbar li a:hover {
        color: #E50614;
        transition: all 0.3s;
    }

    .hero {
        margin-top: 40dvh !important;
        margin-bottom: 30dvh !important;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        color: white;
    }

    .tertiary-btn {
        width: 100%;
    }

    .primary-btn {
        max-width: 350px;
        align-self: center;
        margin: auto;
        width: 100%;
    }

    .info-section {
        width: 100%;
        background-color: #373536;
        margin-top: 100px;
        padding: 16px 0px;
        margin-bottom: -2px;
    }

    .infos {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: anchor-center;
        gap: 32px;
    }

    .info {
        text-align: center;
    }

    .info h2 {
        font-size: 24px;
        font-weight: 600;
        color: white;
        margin-bottom: 6px;
    }

    .info p {
        font-size: 14px;
        color: rgb(220, 220, 220);
    }

    .marquee-content {
        display: flex;
        animation: scroll 10s linear infinite;
        min-width: 200%;
    }

    .card-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }
}

@media (max-width: 600px) {
    .city-slide {
        display: flex;
        width: 200%;
        animation: slide 5s linear infinite;
    }

    .city-animation {
        bottom: 50px;
    }

    .wave-overlay {
        bottom: 100px;
    }

    .cta-section {
        margin-top: -102px;
    }
}


/* PAGINA COLETIVO APROVADO E REPROVADO */

.status-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 16px; */
    height: 80dvh;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.status-container .status-card {
    width: 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #373536;
    padding: 24px;
    border-radius: 25px;
    box-shadow: 4px 3px 12px 0px rgba(0, 0, 0, 0.381);
}

.status-container .status-card h3 {
    margin: 16px 0;
}

@media screen and (max-width: 600px) {

    .status-container {
        height: 100dvh;
    }

    .status-container .status-card {
        width: 90%;
        padding: 16px;
    }
    
}

#infinite-scroll img {
    margin: 0 30px;
}

.policies-page img{
    width: 270px;
    margin: 0 auto 55px auto;
}

.policies-text {
    margin: 25px auto;
    width: 75%;
    min-height: 20dvh;
    height: auto;
    display: flex;
    align-items: center;
    text-align: justify;
}

@media (max-width: 600px) {
    .policies-text {
        margin: 25px auto;
        width: 95%;
        min-height: 40dvh;
        height: auto;
        display: flex;
        align-items: center;
        text-align: justify;
    }
}