#sobre-nos .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#sobre-nos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#sobre-nos .card-img-top {
    height: 300px;
    /* Tamanho fixo para a imagem */
    object-fit: cover;
}

#sobre-nos h4 {
    font-size: 1.8rem;
}

#sobre-nos .list-unstyled li {
    font-size: 1rem;
    margin-bottom: 5px;
}
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}
.hero{
    width: 100%;
    min-height: 100vh;
    background-color: #303;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23404' stroke-width='1.5'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23505'%3E%3Ccircle cx='769' cy='229' r='4'/%3E%3Ccircle cx='539' cy='269' r='4'/%3E%3Ccircle cx='603' cy='493' r='4'/%3E%3Ccircle cx='731' cy='737' r='4'/%3E%3Ccircle cx='520' cy='660' r='4'/%3E%3Ccircle cx='309' cy='538' r='4'/%3E%3Ccircle cx='295' cy='764' r='4'/%3E%3Ccircle cx='40' cy='599' r='4'/%3E%3Ccircle cx='102' cy='382' r='4'/%3E%3Ccircle cx='127' cy='80' r='4'/%3E%3Ccircle cx='370' cy='105' r='4'/%3E%3Ccircle cx='578' cy='42' r='4'/%3E%3Ccircle cx='237' cy='261' r='4'/%3E%3Ccircle cx='390' cy='382' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-position: center;
    padding: 10px 10%;
    overflow: hidden;
    position: relative;

    
            
}
nav{
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-home{
    max-width: 180px;
    height: auto;
    object-fit: contain;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 15px;
}
nav ul li a{
    text-decoration: none;
    color:white;
    font-weight: 400;
}
.login-btn{
    text-decoration: none;
    color:white;
    margin-right: 15px;
    font-weight: 400;
}
.btn-gradient{
    display: inline-block;
    text-decoration: none;
    padding: 14px 40px;
    color:#fff;
    background-image:linear-gradient(45deg,#df4881,#c430d7);
    font-size: 14px;
    border-radius: 30px;
    border-top-right-radius: 0;
    transition:0.5s;
    
}
.content{
    margin-top: 10%;
    max-width: 600px;
}
.content h1{
    font-size: 70px;
    color: white;

}
.content p{
    margin: 10px 0 30px;
    color: rgb(231, 229, 229);
    animation-delay: 0.5s;
}
.content .btn{
    padding: 15px 80px;
    font-size: 16px;
    animation-delay: 1s;
}
.btn-gradient:hover{
    border-top-right-radius: 30px;
}
.feature-img{
    width: 530px;
    position: absolute;
    bottom: 0;
    right: 10%;
}
.feature-img.anim{
    animation-delay: 1.5s;

}
.anim{
    opacity:0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup {
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
    
}
.btns-entrar-assinar-container{
flex: 0 0 auto;
}

.logo-container {
    flex: 0 0 auto;
}
.benefits-card {

    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin-top: 10%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.benefits-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
    margin: 15px 0;
}

.benefits-list i {
    color: #ffcc00;
    font-size: 22px;
    margin-right: 10px;
}
div .btn-gradient.anim{
    margin-top: 50px;
    margin-left: -70px;
}

.home-header{
    display: flex;
}

.hero-main-content{
    display: flex;
}






.purple-strong {
    color: #7B1FA2;
    font-weight: bold;
}

.bottom-div {
    min-height: 45%;
}

.inicio-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}

.inicio-section {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-height: 70vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.left {
    flex: 4;
    background: white;
    color: black;
    display:flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.center {
    flex: 3;
    /* background: white; */
    border: 2px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    border: none;
}

.right {
    flex: 3;
    background: white;
    color: black;
  
}

.btn-criar-caderno, .btn-atualizar-caderno, .btn-assinar {
    display: inline-block;
    margin-top: 10%;
    padding: 12px 20px;
    font-weight: bold;
    background: #7B1FA2;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-atualizar-caderno, .btn-assinar{
    margin-top: 5%;
    margin-bottom: 5%;
    max-width: 50%;
}

.btn-criar-caderno:hover, .btn-atualizar-caderno:hover, .btn-assinar:hover {
    background: #f0e1f5;
}

.inicio-section ul {
    list-style: none;
    padding: 0;
}

.inicio-section ul li {
    margin: 5px 0;
    font-size: 16px;
}
.content-card {
    background: white;
    /* border: 2px solid #ddd; */
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    /* max-width: 500px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.inicio-section .info-caderno {
       min-width: 120px;
       min-height: 120px;
}
.inicio-section .i-caderno {
   font-size: 2rem;
   
}
.container-cadernos.home{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 120px));
    gap: 16px;
    padding: 16px;
    justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    nav ul li {
        margin: 8px 10px;
    }

    .logo-home {
        max-width: 140px;
    }

    .content h1 {
        font-size: 50px;
    }

    .btns-entrar-assinar-container a {
        padding: 10px 20px;
        font-size: 14px;
    }

    .benefits-card {
        max-width: 100%;
        margin: 20px 0;
    }

    /* .d-flex {
        flex-direction: column;
        align-items: center;
    } */

    nav {
        flex-direction: column;
    }
    .left{
        justify-content: start;
    }
}

/* Para telas menores que 768px (celulares) */
@media (max-width: 767px) {


    .hero-main-content {
        flex-direction: column;
    }

    .hero {
        padding: 20px 5%;
    }

    .logo-home {
        max-width: 120px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .btns-entrar-assinar-container {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btns-entrar-assinar-container a {
        padding: 12px 30px;
        text-align: center;
    }

    .content {
        text-align: center;
        margin-top: 30%;
    }

    .content h1 {
        font-size: 36px;
    }

    .content p {
        font-size: 14px;
        margin-top: 30px;
    }

    .benefits-card {
        padding: 15px;
        margin: 20px auto;
        max-width: 90%;
    }

    .benefits-list li {
        font-size: 16px;
    }

    div .btn-gradient.anim {
        margin: 20px auto;
        /* margin-left: 0; */
    }

    .feature-img {
        width: 90%;
        position: relative;
        bottom: 0;
        right: 0;
        margin: 20px auto;
    }

    .inicio-container {
        flex-direction: column;
    }

    .inicio-section {
        flex: unset;
        width: 100%;
    }
    .container-cadernos.home{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 100px));
        gap: 12px;
        padding: 12px;
    }
}