.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-sessao1{
    display: flex;
    justify-content: space-between;
    width: 1500px;
}

.sessao1{
    position: relative;
    display: flex;
    background-image: url("/img/parcerias/bg.png");
    background-repeat: no-repeat;
    background-position-x: right;
}

.img-flutuante{
    position: absolute;
    width: 70px;
    left: 5%;
    top: 80px;
    animation: flutuar 10s ease-in-out infinite;
    img{
        width: 100%;
    }
}

.img-flutuante2{
    position: absolute;
    width: 70px;
    left: 1750px;
    top: 200px;
    animation: flutuar2 10s ease-in-out infinite;
    img{
        width: 100%;
    }
}


@keyframes flutuar {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes flutuar2 {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(15px);
    }
}

.content-sessao1{
    padding: 40px 0 100px 0  !important;
    display: flex;
    gap: 50px;
}

.content-esq-ses1{
    align-content: center;
    h1{
        font-size: 60px;
        span{
            color: var(--primary);
        }
    }
    h2{
        font-size: 23px;
        font-weight: 500;
        line-height: 35px;
        color: #666666;
    }
    p{
        b{
            font-size: 18px;
        }
        margin-top: 30px;
        font-size: 16px;
        width: 540px;
        line-height: 28px;
        color: #666666;
    }
}

.content-dir-ses1{
    align-content: center;
}


.modal-parcerias{
    box-shadow: rgba(0, 0, 0, 0.16) 1px 10px 37px -1px;
    width: 570px;
    background-color: #F5F5F5;
    padding: 80px 50px 50px 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    border-top: solid 3px #0F7ADE;
    label{
        color: #7C7C7C;
        font-weight: 600;
        margin: 0;
    }
    div{
        width: 100%;
    }
    > button{
        margin-top: 10px;
        background-color: var(--primary);
        color: white;
        font-weight: 600;
        font-size: 20px;
        padding: 10px 40px;
        width: fit-content;
        border: none;
        border-radius: 10px;
    }
    > button:hover{
        background-color: #00C9FF;
        transform: translateY(-4px);
        transition: 0.3s;
    }
    input{
        border-radius: 5px;
        background-color: #E9E9E9;
        border: solid 1px rgba(102, 102, 102, 0.23);
        font-size: 14px;
    }
    textarea{
        border-radius: 5px;
        background-color: #E9E9E9;
        border: solid 1px rgba(102, 102, 102, 0.23);
    }
}

.razao-cnpj{
    display: flex;
    gap: 20px;
}

.email-telefone{
    display: flex;
    gap: 20px;
}


.sessao2{
    justify-items: center;
    padding-bottom: 50px;
    background-color: var(--primary);
}

.hero-section {
    max-width: 1500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0F7ADE, #52C5FF);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background-clip: text;
    color: #2C3E50;
}

.sndesk-highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0F7ADE, #52C5FF);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 24px;
    color: white;
    img{
        width: 45px;
    }
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.background-cinza{
    background-color: var(--primary);
    padding: 100px 0;
}

.cta-section {
    background-color: white;
    padding: 3rem !important;
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}


@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--dark);
    span{
        color: #0F7ADE;
    }
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: var(--dark);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: var(--dark);
}

.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(168, 168, 168, 0.13);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 201, 255, 0.11);
    transform: scale(1.02);
}

.benefit-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    img{
        width: 35px;
    }
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #00C9FF;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.sessao3{
    padding: 50px 0 80px 0!important;
}

.texts-sessao3 {
    margin-bottom: 30px;
}

.texts-sessao3 h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    span{
        color: var(--primary);
    }
}

.texts-sessao3 p {
    line-height: 1.6;
    font-size: 1.1rem;
    width: 800px;
}

.content-sessao3 {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.accordion {
    background: #f1f1f1;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 800px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

/* Esconde o checkbox */
.accordion-item input[type="checkbox"] {
    display: none;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
    font-weight: 600;
    user-select: none;
}

.accordion-title:hover {
    background-color: #f8f9fa;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #007bff;
}

/* Rotaciona a seta quando o checkbox está marcado */
.accordion-item input[type="checkbox"]:checked + .accordion-title .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

/* Mostra o conteúdo quando o checkbox está marcado */
.accordion-item input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 200px;
    padding: 20px;
}

.img-sessao3 {
    width: 380px;
    img{
        width: 100%;
    }
    img:hover{
        transform: scale(1.03);
        transition: transform 0.5s;
    }
}

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



.sessao4{
    padding: 0 0 50px 0;
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
}

.img-sessao4{
    width: 380px;
    img{
        width: 100%;
    }
    img:hover{
        transform: scale(1.03);
        transition: transform 0.5s;
    }
}

.texts-sessao4{
    width: 570px;
    h2{
        line-height: 45px;
        span{
            color: var(--primary);
        }
    }
}


.sessao5{
    text-align: center;
    padding: 100px 0 150px 0;
    background: linear-gradient(to top, rgba(225, 225, 225, 0.88), white);
}

.content-sessao5{
    >a button{
        margin-top: 50px;
        background-color: var(--primary);
        color: white;
        font-weight: 600;
        font-size: 18px;
        padding: 10px 40px;
        width: fit-content;
        border: none;
        border-radius: 10px;
    }
    >a button:hover{
        background-color: #00C9FF;
        transform: translateY(-4px);
        transition: 0.3s;
    }
}

.texts-sessao5{
    h2{
        span{
            color: var(--primary);
        }
    }
    p{
        font-size: 18px;
    }
}

.logos-sessao5{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 80%;
    .logo1{
        img{
            width: 120px;
        }
    }
    .logo2{
        img{
            width: 75px;
        }
    }
    .logo3{
        img{
            width: 140px;
        }
    }
    .logo4{
        img{
            width: 190px;
        }
    }
    .logo5{
        img{
            width: 75px;
        }
    }

}


.sessao6{
    background-color: var(--primary);
}



