body {
    overflow-x: hidden;
}

/*menu*/

header {
    background-color: var(--white);
}

.nav-bar.container {
    width: 100%;
    background-color: var(--white);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.logo {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo h1 {
    font-size: 3rem;
    color: var(--blue-900);
}

.logo h1 span {
    font-size: 2.9rem;
    color: var(--purple-300);
    font-weight: bold;
}

.logo img {
    max-width: 6.1rem;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-list ul li a {
    font-size: 1.6rem;
    color: var(--gray-500);
}

.nav-list ul li a:hover {
    color: var(--purple-300);
    font-weight: 600;
}

.nav-item {
    margin: 0 1.5rem;
}

.login-button button a {
    font-weight: 500;
    width: 12rem;
    display: block;
}

.mobile-menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
}

/* section hero */

.hero {
    padding: 5rem 0;
    background-color: var(--blue-900);
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.hero .text {
    width: 100%;
    max-width: 64rem;
}

.hero .text h1 {
    font-size: 4rem;
    text-shadow: 1px 5px 10px rgba(0, 0, 0, 0.383);
    color: var(--white);
}

.hero .text p {
    margin: 1rem 0 2.5rem 0;
    max-width: 48.8rem;
    font-size: 1.8rem;
    line-height: 1.6;
    text-shadow: 1px 5px 10px rgba(0, 0, 0, 0.383);
    color: var(--white);
}

/* .hero .text .btn-primary {
    width: 15rem;
}

.hero .text .btn-primary a {
    color: var(--white);
    font-weight: 500;
} */

.hero .image {
    width: 100%;
    max-width: 48.8rem;
    height: 49.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 2.5s ease-in-out infinite;
}

/*section about us*/
.about-us.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
}

.carousel {
    position: relative;
    width: 50%;
    max-width: 60rem;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 600px;
    height: 500px;
    border-radius: 0.8rem;
    object-fit: cover;
}

/* Botões de navegação */
button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

button.prev {
    left: 15px;
}

button.next {
    right: 15px;
}

button.prev:hover,
button.next:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Indicadores de navegação */
.indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
}

.indicators div {
    width: 12px;
    height: 12px;
    background-color: lightgray;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicators .active {
    background-color: gray;
}

.about-text {
    width: 100%;
}

.about-text h1 {
    position: relative;
    color: var(--gray-500);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    font-size: 3.5rem;
    font-weight: bold;
}

.about-text h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 185px;
    height: 4px;
    background-color: var(--purple-300);
}

.about-text p {
    font-size: 1.7rem;
    color: var(--gray-500);
    line-height: 1.4;
    margin-bottom: 1rem;
}

/*section report*/
.s-report.container {
    padding: 0 3rem 2rem 3rem;
}

.wrapper {
    padding: 0 4rem;
}

.s-report .title-text {
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17rem;
}

.s-report .title-text h3 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--gray-500);
    width: 52rem;
}

.s-report .title-text h3 span {
    color: var(--purple-500);
    font-size: 3.2rem;
}

.s-report .title-text p {
    color: var(--gray-500);
    margin: 1.5rem 0rem;
    font-size: 1.7rem;
    line-height: 1.4;
    width: 40rem;
}

.s-report .title-text p a {
    color: var(--purple-500);
}

.s-report .title-text .left p {
    max-width: 40rem;
}

.s-report .title-text .left {
    max-width: 70.9rem;
}

.s-report .title-text .right {
    max-width: 42.9rem;
}

/*section partners*/

.s-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--purple-300);
    text-align: center;
    padding: 5rem 2rem;
}

.s-partners h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.s-partners h2 span {
    font-size: 3rem;
    color: var(--purple-500);
}

.s-partners p {
    font-size: 1.7rem;
    max-width: 600px;
    color: var(--white);
}

.s-partners .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.s-partners .logo-container img {
    max-width: 200px;
    height: auto;
    transition: 0.3s ease;
}

.s-partners .logo-container img:hover {
    transform: scale(1.1);
}

/*sectio project*/
.s-project.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    padding: 4rem;
}

.s-project>h1 {
    color: var(--gray-500);
    font-size: 4.3rem;
}

.card {
    background-color: var(--purple-300);
    border-radius: 0.8rem;
    margin-top: 3rem;
    height: 500px;
    width: 900px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.image img {
    width: 400px;
    height: 400px;
    border-radius: 0.8rem;
}

.card .text {
    width: 400px;
}

.card .text h2 {
    font-size: 2.7rem;
    margin-bottom: 2rem;
}

/*section volunteer*/
.s-volunteer {
    background: url('../assets/dog-background.png') no-repeat center center/cover;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100vh;
}

.content {
    padding: 2rem;
    border-radius: 0.8rem;
    max-width: 500px;
    text-align: left;
}

.content h1 {
    font-size: 2.9rem;
    line-height: 0.9;
    color: var(--white);
}

.content p {
    color: var(--white);
    margin: 2rem 0;
    line-height: 2;
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
}

form {
    margin-top: 1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
}

.input-group input,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--white);
    border-radius: 0.5rem;
    font-size: 1.7rem;
    font-weight: 300;
    background: transparent;
}

textarea {
    resize: none;
    height: 100px;
    margin-top: 1rem;
}

#whatsappForm button {
    margin-top: 2rem;
    font-weight: normal;
    font-family: 'Inter', sans-serif;
}

.input-group input::placeholder,
textarea::placeholder {
    color: var(--white);
}

/*footer*/
footer {
    padding: 4.8rem 2rem;
    width: 100%;
    background-color: var(--background);
}

footer .main-area {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
    justify-content: start;
    /* justify-content: space-between; */
    border-bottom: 1px solid var(--gray-500);
    padding-bottom: 6.6rem;
    margin-bottom: 2.4rem;
}

footer .main-area .left {
    max-width: 60rem;
}

footer .main-area .left p {
    color: var(--gray-500);
    line-height: 1.4;
    font-size: 1.6rem;
    width: 400px;
    margin: 2rem 20rem 2rem 0;
}

footer .main-area .right {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex-grow: 1;
}

footer .main-area .right .item-nav h6 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 3.2rem;
}

footer .main-area .right .item-nav ul li a address {
    width: 20rem;
}

footer .main-area .right .item-nav ul li:not(:last-child) {
    margin-bottom: 3.2rem;
}

footer .main-area .right .item-nav ul li a {
    font-family: 'Inter', sans-serif;
    color: var(--gray-500);
    font-size: 1.6rem;
    transition: color .3s ease;
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

footer .main-area .right .item-nav ul li a:hover {
    color: var(--purple-300);
    font-weight: 500;
}

footer .main-area .right .item-nav ul li a i {
    font-size: 2rem;
}

footer .copy {
    color: var(--gray-500);
    letter-spacing: -0.48px;
}

footer .copy strong {
    font-size: 1.5rem;
}

/*responsivo*/
@media(max-width: 1245px) {
    .right iframe {
        width: 400px;
    }
}

@media (max-width: 1100px) {
    .main-area {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-us.container {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
    }

    .carousel {
        width: 100%;
    }

    .carousel-images {
        height: 350px;
    }

    .right iframe {
        width: 350px;
    }

    .s-report .title-text {
        gap: 10rem;
    }
}

@media (max-width: 980px) {
    .s-project.container {
        height: 120vh;
    }

    .card {
        flex-direction: column;
        height: 900px;
        width: 440px;
        padding: 2rem 0;
        gap: 2rem;
    }

    .image img {
        width: 300px;
        height: 300px;
    }

    .card .text h2 {
        margin-bottom: 1rem;
    }

    footer .main-area .right .item-nav ul li a address {
        font-size: 1.5rem;
    }

    .s-report .title-text {
        flex-direction: column;
        align-items: center;
        margin-bottom: 4rem;
    }

    .s-report .title-text .left {
        text-align: center;
        max-width: 100%;
    }

    .s-report .title-text .left p {
        max-width: 100%;
        margin-bottom: 0.8rem;
    }

    .s-report .title-text .right {
        max-width: 100%;
        text-align: center;
    }

    .nav-bar {
        padding: 1.5rem 4rem;
    }

    .nav-item {
        display: none;
    }

    .login-button {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-menu {
        text-align: center;
    }

    .mobile-menu-icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
        width: 100vw;
    }

    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
    }

    .mobile-menu .login-button {
        display: block;
        padding: 2rem;
    }

    .mobile-menu .login-button button {
        width: 10rem;
    }

    .open {
        display: block;
    }

    .hero .image img {
        max-width: 380px;
    }

    .hero .text h1 {
        font-size: 3.9rem;
    }

    .hero .text p {
        font-size: 1.6rem;
    }

    .hero .text.btn-primary {
        width: 9rem;
    }

    .s-report .left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-text .left {
        margin-top: 15rem;
    }

    .s-report .title-text .left p {
        width: 550px;
    }
}

@media(max-width: 860px) {
    footer .main-area .left {
        margin-bottom: 3rem;
        max-width: 100%;
    }

    footer .main-area .right {
        flex-direction: column;
        gap: 3rem;
        width: 100%;
    }

    footer .main-area .right .item-nav {
        max-width: 100%;
    }

    footer .main-area .left p {
        width: 100%;
    }

    .hero {
        height: 648px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero .image {
        display: none;
    }

    .hero .text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .sobre-texto {
        order: 1;
    }

    .carousel {
        order: 2;
    }
}

@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }

    .content {
        padding: 1.5rem;
    }

    .content h1 {
        font-size: 2.8rem;
    }

    .content p {
        font-size: 1.8rem;
    }

    .carousel-images {
        height: 280px;
    }

    .s-report .title-text h3 {
        font-size: 2.6rem;
        width: 30rem;
    }

    .s-report .title-text .left p {
        max-width: 40rem;
    }

    .s-partners h2 {
        font-size: 2.9rem;
    }

    .s-partners p {
        font-size: 1.7rem;
    }

    .s-partners .logo-container img {
        max-width: 200px;
    }

}

@media (max-width: 610px) {
    .nav-bar {
        padding: 1.5rem 2rem;
    }

    .s-report .title-text h3 {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1.6rem;
    }

    .right iframe {
        width: 30rem;
    }

    .s-partners h2 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .s-partners p {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .s-partners .logo-container img {
        max-width: 150px;
    }

    .s-partners .logo-container {
        gap: 1.7rem
    }

    .s-project.container {
        height: 100vh;
    }

    .s-project h1 {
        font-size: 3rem;
    }

    .card {
        flex-direction: column;
        height: 600px;
        width: 420px;
    }

    .image img {
        width: 250px;
        height: 250px;
    }

    .text {
        padding: 1rem;
    }

    .card .text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .card .text p {
        font-size: 1.5rem;
    }
}

@media (max-width: 435px) {

    .card {
        flex-direction: column;
        height: 550px;
        width: 400px;
    }

    .image img {
        width: 220px;
        height: 220px;
    }

    .card .text p {
        font-size: 1.5rem;
        width: 390px;

    }

    .logo {
        gap: 0.5rem;
    }

    .logo img {
        max-width: 5rem;
    }

    .logo h1 {
        font-size: 2.2rem;
    }

    .logo h1 span {
        font-size: 2.1rem;
    }

    .nav-bar {
        padding: 1.5rem;
    }

    .hero .text h1 {
        font-size: 3rem;
    }

    .hero .text p {
        font-size: 1.6rem;
    }

    .about-text h1 {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        font-size: 3rem;
    }

    .about-text h1::after {
        width: 160px;
        height: 3px;
    }

    .about-text p {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .s-report .title-text h3 {
        font-size: 2.6rem;
        width: 30rem;
    }

    .s-report .title-text .left p {
        max-width: 31rem;
        font-size: 1.6rem;
    }

    .right iframe {
        width: 22rem;
    }
}