body{
    background-image: url(../img/487461831_1066981638788679_5990556702403658433_n.jpg);
    background-repeat: no-repeat;
    background-size: 3500px 2700px;
    background-position: top;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: relative;
    background-blend-mode: overlay;
}


body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;;
}

.container{
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente */
    height: 100vh;           /* altura da tela toda */
}

.double-container{
    flex-wrap: wrap;
    display: inline-flex;
    align-items: center;
    height: 740px;
    border: 60px;
    overflow: hidden;
    padding-top: 20px;
    animation: fade-up 0.5s;
}


.logo-double-container{
    width: auto;
    height: auto;
    text-align: right;
    overflow: hidden;
    display: flex;
}

.logo-container img {
    width: auto;
    max-width: 425px;
    height: auto;
    padding-left: 10px;
}

.text-double-container{
    color: white;
}

.container-1{
    border: 30px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente */
    height: 100vh;           /* altura da tela toda */

    color: white;
}

.double-container-1 {
    display: flex;
    flex-direction: column; /* Fica um em cima do outro */
    justify-content: center;
    align-items: center;
    height: 740px;
    overflow: visible; /* Deixa a imagem visível se ultrapassar */
    padding-top: 20px;
}

.text-double-container-1 {
    color: white;
    margin-bottom: 20px; /* Espaço entre texto e imagem */
    text-align: center;
    max-width: 90%;
}

.logo-double-container-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    overflow: visible;
}

.logo-double-container-1 img {
    border-radius: 30px;
    height: 500px;
    display: block;
}

.title_container-2{
    background-color: #8a1e58;
    color: white;
    text-align: center;
    padding: 60px;
    font-size: 50px;
    font-weight: 900;
}

.double-container-3 {
    display: flex;
    flex-direction: column; /* Fica um em cima do outro */
    justify-content: center;
    align-items: center;
    height: 740px;
    overflow: visible; /* Deixa a imagem visível se ultrapassar */
    padding-top: 20px;
    background-color: white;
    word-wrap: break-word;      /* Quebra palavras muito longas */
    overflow-wrap: break-word;  /* Alternativa moderna para word-wrap */
    white-space: normal;        /* Permite quebra de linha normal */
    overflow: hidden;           /* Oculta o que ultrapassar */
    max-width: 100%;            /* Garante que a largura respeite o container pai */
}

.text-double-container-3 {
    color: #8a1e58;
    margin-bottom: 20px; /* Espaço entre texto e imagem */
    text-align: center;
    max-width: 90%;
    padding: 30px;
}

.container-3{
    background-color: black;
    padding-bottom: 30px;
}

.title_container-3{
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 60px;
    font-size: 50px;
    font-weight: 900;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    background-color: black;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.social-media-container-3{
    padding: 1vw;
    color: white;
    margin-bottom: 20px; /* Espaço entre texto e imagem */
    text-align: center;

}

.list-social-midia{
    display: flex;
    justify-content: center;
    gap: 1vw;
}

.item-social-midia {
    margin: 1vw 0;
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 2vw;
    width: 2vw;
    line-height: 2vw;
    text-align: center;
    color: #ffffff;
    list-style-type: none;
}

.top-text-title{
    text-align: center;
    font-weight: 900;
    font-size: 50px;
    color: white;
    padding: 20px;
}

.top-text-title-2{
    font-weight: 900;
    font-size: 50px;
    color: #8a1e58;
    padding: 20px;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px){
    
    .container{
    text-align: center;
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente */
    height: 100vh;           /* altura da tela toda */
    }

    .double-container{
        flex-wrap: wrap;
        display: inline-flex;
        align-items: center;
        height: 740px;
        border: 60px;
        overflow: hidden;
        padding-top: 20px;
        animation: fade-up 0.5s;
    }


    .logo-double-container{
        width: auto;
        height: auto;
        text-align: right;
        overflow: hidden;
        display: flex;
    }

    .logo-double-container img {
        width: auto;
        max-width: 150px;
        height: auto;
        padding-left: 10px;
    }

    .text-double-container{
        color: white;
    }

    .container-1{
        border: 30px;
        border-radius: 20px;
        padding: 0px;
        padding-left: 35px;
        display: inline-block;
        justify-content: center; /* centraliza horizontalmente */
        align-items: center;     /* centraliza verticalmente */
        text-align: center;
        height: auto;           /* altura da tela toda */
        flex-wrap: wrap;
        font-size: 10px;
        color: white;
        width: auto;
    }

    .double-container-1 {
        display: flex;
        flex-direction: column; /* Fica um em cima do outro */
        justify-content: center;
        align-items: normal;
        height: 740px;
        overflow: visible; /* Deixa a imagem visível se ultrapassar */
        padding-top: 20px;
    }

    .text-double-container-1 {
        color: white;
        margin-bottom: 20px; /* Espaço entre texto e imagem */
        text-align: center;
        max-width: 90%;
    }

    .logo-double-container-1 {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
        overflow: visible;
    }

    .logo-double-container-1 img {
        border-radius: 30px;
        height: 200px;
        display: block;
    }

    .title_container-2{
        background-color: #8a1e58;
        color: white;
        text-align: center;
        padding: 60px;
        font-size: 50px;
        font-weight: 900;
    }

    .double-container-3 {
        display: flex;
        flex-direction: column; /* Fica um em cima do outro */
        justify-content: center;
        align-items: center;
        height: 740px;
        overflow: visible; /* Deixa a imagem visível se ultrapassar */
        padding-top: 20px;
        background-color: white;

    }

    .text-double-container-3 {
        color: #8a1e58;
        margin-bottom: 20px; /* Espaço entre texto e imagem */
        text-align: center;
        max-width: 90%;
        padding: 30px;
    }

    .container-3{
        background-color: black;
        padding-bottom: 30px;
    }

    .title_container-3{
        background-color: #000000;
        color: white;
        text-align: center;
        padding: 60px;
        font-size: 20px;
        font-weight: 900;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* Proporção 16:9 */
        padding-top: 25px;
        height: 0;
        overflow: hidden;
        background-color: black;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .social-media-container-3{
        padding: 1vw;
        color: white;
        margin-bottom: 20px; /* Espaço entre texto e imagem */
        text-align: center;

    }

    .list-social-midia{
        display: flex;
        justify-content: center;
        gap: 1vw;
    }

    .item-social-midia {
        margin: 1vw 0;
        border: 1px solid #ffffff;
        border-radius: 50%;
        height: 2vw;
        width: 2vw;
        line-height: 2vw;
        text-align: center;
        color: #ffffff;
        list-style-type: none;
    }

    .top-text-title{
        font-weight: 900;
        font-size: 50px;
        color: white;
        padding: 20px;
    }

    .top-text-title-2{
        font-weight: 900;
        font-size: 50px;
        color: #8a1e58;
        padding: 20px;
    }


    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .fade-in.appear {
        opacity: 1;
        transform: translateY(0);
    }
}


 @media (max-width: 1023px){
    .desktop-only{
      display: none;
    }
 }

   @media (min-width: 768px){
    .phone-only{
      display: none;
    }
 }


@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

