* {
    margin: 0;
    padding: 0;
    transition: 0.4s;
    box-sizing: border-box;
    background-position: center;
    background-size: cover;
}



.main a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    
}

.main {
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    background-image: url(/assets/img/background.png);

}

.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.azul {
    background-color: #159F9F;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px;
}

.rosa {
    background-color: #B81265;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px;
}

.logo {
    height: clamp(40px, 60px, 60px);
    width: auto;
    display: block;

}

.promo {
    display: flex;
    justify-content: center;
    align-items: center;
}

#principal {
    height: 73vh;
    width: 60%;
    background-color: aliceblue;

}

.ab1 {
    font-size: 150px;
    margin-top: 2%;
    margin-left: 5%;
    position: relative;
    background: linear-gradient(90deg, #159F9F, #B81265);
    background-size: 200%;
    background-clip: text;
    color: transparent;
    animation: text-animation 2s infinite linear;

}



.ab2 {
    font-size: 150px;
    margin-left: 5%;
    margin-bottom: 3%;
    position: relative;
    background: linear-gradient(90deg, #159F9F, #B81265);
    background-size: 200%;
    background-clip: text;
    color: transparent;
    animation: text-animation 2s infinite linear;
}

@keyframes text-animation {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.v1 {
    height: 50vh;
    margin-left: 15%;
    margin-top: -100%;
}

#base{
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e2a6d1 100%);
    padding: 60px 0;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 40px;
}

.story-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #159F9F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #159F9F, #B81265);
}

.story-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.story-title {
    font-size: clamp(28px, 4vw, 36px);
    color: #159F9F;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #159F9F, #B81265);
    border-radius: 2px;
}

.story-text {
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 0;
    font-weight: 400;
}

.story-section:nth-child(even) {
    border-left-color: #B81265;
}

.story-section:nth-child(even) .story-title {
    color: #B81265;
}

.story-section:nth-child(even) .story-title::after {
    background: linear-gradient(90deg, #B81265, #159F9F);
}

/* Responsividade */
@media (max-width: 768px) {
    .story-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .story-section {
        padding: 30px 25px;
        border-left-width: 4px;
    }
    
    .story-title {
        font-size: clamp(24px, 5vw, 28px);
    }
    
    .story-text {
        font-size: clamp(15px, 3vw, 16px);
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 25px 20px;
        border-left-width: 3px;
    }
    
    .story-container {
        gap: 25px;
    }
}


/* rodape--------------------------------------------------------------------------------------- */



.rodape {
    width: 100%;
    height: 40vh;
    background-color: #c5c5c5;
}

.rlogo {
    height: 10vh;
}

.r1 {
    padding-top: 2%;
    margin-left: 10%;
}

.r2 {
    font-size: 20px;
    padding-top: 2%;
    margin-left: 10%;

}

.r3 {
    font-size: 20px;
    padding-top: 2%;
    margin-left: 10%;
    color: aliceblue;

}

.r2 a {
    text-decoration: none;
    color: aliceblue;
}

.nome {
    display: inline-block;
    font-size: 20px;
    color: aliceblue;
    padding-top: 30px;
    vertical-align: top;
    margin-left: 2%;
}