/*
Theme Name: WordPress Educational Platform
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A clean and educational theme for promoting an educational platform with interactive features.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: educational, clean, responsive
*/

/* Variáveis de cores */
:root {
    --primary-dark: #2E2D60;    /* Azul escuro para elementos principais */
    --primary: #6053B4;         /* Roxo médio para destaques */
    --secondary: #6F5CCB;       /* Roxo claro para hover e elementos secundários */
    --white: #FFFFFF;           /* Branco para textos e fundos */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

/* Remove o espaçamento superior */
html {
    margin-top: 0 !important;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    font-family: var(--font-primary);
}

/* Ajusta o header quando a barra admin do WordPress está presente */
.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

/* Header */
header {
    background: var(--primary-dark);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none !important; /* Remove a sombra da caixa também do elemento header */
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    color: var(--white);
}

.site-description {
    color: var(--white);
    opacity: 0.9;
}

.header-nav {
    flex: 0 0 auto;
}

/* Menu de navegação */
.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.header-menu a:hover {
    color: #6F5CCB !important;
}

.header-menu a[href*="compra"]:hover {
    background: #7D65E1;
    border-radius: 4px;
}

nav {
    display: flex;
    justify-content: space-between;
}

nav a {
    color: #363564;
    text-decoration: none;
    padding: 10px 15px;
}

nav a:hover {
    background-color: #7D65E1;
    color: #FFFFFF;
}

/*Botões login e teste grátis*/
.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.login-button {
    color: var(--primary-dark);
    background: var(--white);
    width: 65px;
    font-weight: 500;
    font-family: var(--font-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: none;
}

.login-button:hover {
    transform: translateY(-2px);
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
    color: var(--white);
}

.trial-button {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 80px;
    font-family: var(--font-primary);
    text-decoration: none;
}

.trial-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
    color: var(--white);
    background-color: var(--primary-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .header-buttons {
        margin: 1rem 0;
        width: 100%;
        justify-content: center;
        order: 3;
    }

    .login-button,
    .trial-button {
        padding: 0.8rem 1.5rem;
    }
}

.section-hero {
    background-color: #7D65E1;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.section-features {
    position: relative;
    background-image: url('./assets/images/bk-features-section.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem 5%;
    overflow: hidden;
    z-index: 1;
}

.section-footer {
    padding: 20px;
    background-color: #FFFFFF;
}

/* Header e Hero Section Background */
.header-hero-wrapper {
    background-color: #372B69;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Adicione este pseudo-elemento para criar a camada de opacidade */
.header-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        /*cor padrão
        rgba(55, 43, 105, 0.9) 0%,  
        rgba(55, 43, 105, 0.8) 100%
        */
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: 1;
}

.header-hero-content {
    position: relative;
    z-index: 2;
}

/* Ajuste o z-index dos elementos para ficarem acima da camada de opacidade */
.site-header {
    position: relative;
    z-index: 3;
    background: transparent !important;
    text-shadow: none !important;
    box-shadow: none !important; /* Remove a sombra da caixa */
}

.hero-section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start; /* Altera para flex-start ao invés de center */
    align-items: center;
    padding: 4rem 1rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-content-box {
    background-color: rgba(96, 83, 180, 0.9);
    border-radius: 50px;
    padding: 2rem;
    margin: 2rem;
    margin-right: auto;
    max-width: 600px; /* Reduzindo a largura máxima */
    width: 50%; /* Ajustando a largura para 50% */
    position: relative;
    z-index: 2;
    margin-left: 10%; /* Adiciona margem à esquerda */
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
}

.hero-content-box:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.hero-content-box h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
}

.hero-content-box p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 400;
    text-align: justify;
}

.hero-content-box .button {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    color: var(--white);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}
.hero-content-box .button:hover {
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
}

/*Responsividade*/
@media (max-width: 768px) {
    .hero-content-box {
        width: 100%; /* Ajusta a largura para 100% em telas menores */
        margin:auto; /* Remove a margem à esquerda */
    }

    .hero-image {
        display: none; /* Esconde a imagem em telas menores */
    }
}

@media (max-width:480px) {
    .hero-content-box h1 {
        font-size: 2rem; /* Reduz o tamanho da fonte do título */
        text-align: center;
    }

    .hero-content-box p {
        font-size: 1rem; /* Reduz o tamanho da fonte do parágrafo */
        text-align: center; /* Centraliza o texto */
    }

    .hero-content-box .justificado {
        text-align: justify; /* Mantém o texto justificado */

    }
}

/*Imagem do foguete*/
.hero-foguete {
    position: absolute;
    bottom: 100px; /* Ajuste a posição do foguete */
    right: 0; /* Alinha o foguete à direita */
    width: 790px; /* Largura do foguete */
    height: auto; /* Altura automática para manter a proporção */
    z-index: 2; /* Garante que o foguete fique acima da camada de opacidade */  
    animation: float 3s ease-in-out infinite;
}


.hero-foguete:hover img {

}

@keyframes diagonal-move-anim {
    100% {
        transform: translate(0, 0);
    }
    0% {
        transform: translate(-150px, 150px);
    }
  }

/*Responsividade*/
@media (max-width: 768px) {
    .hero-foguete {
        display: none;

    }
}

@media (max-width: 480px) {
    .hero-foguete {
display: none;
    }
}

/* Estilos do Menu Principal Centralizado */
.main-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent !important;
    font-family: var(--font-primary);
    font-weight: 500;
}

.main-navigation .menu-primary-container {
    display: flex;
    justify-content: center;
    width: 100%;
    display: none; /* Esconde o menu padrão do WordPress */
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem; /* Espaçamento entre itens */
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 10px;
    font-weight: 500;
}

.main-navigation ul li a:hover {
    color: #f8f8f8;
}

/* Conteúdo principal */
.site-content {
    background: var(--white);
    padding: 2rem 5%;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    font-family: var(--font-primary);
}

/* Botões */
.button, 
.wp-block-button__link {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover,
.wp-block-button__link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Links */
a {
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* Footer */
footer {
    background: linear-gradient(
        360deg,
        #362D60 40%,
        #512996 100%
            );
    color: var(--white);
    padding: 3rem 5%;
}

footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

.footer-widgets {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 2rem 0;
}

.footer-widgets div {
    width: auto;
    min-width: 300px;
    margin: 0;
    text-align: center;
}

/* Centralização do Footer */
.site-footer {
    text-align: center;
}

.site-footer .widget-area,
.site-footer .widget {
    text-align: center;
}

.site-footer .menu,
.site-footer .menu-footer-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer .menu li {
    float: none;
    display: inline-block;
    margin: 0 10px;
}

.site-footer .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer .widget-title {
    text-align: center;
    margin-bottom: 20px;
}


/* Cards ou boxes de conteúdo */
.content-box {
    background: var(--white);
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Gradientes para seções especiais */
.highlight-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 4rem 5%;
}

/* Features Section */
.features-section {
    text-align: center;
    position: relative;
    background-image: url('./assets/images/bk-features-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem 5% 1rem 5%;
    overflow: hidden;
    z-index: 1;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

@media (max-width: 480px) {
    .features-section {
        margin-top: -1px;
    }
}

.features-section .icone-amarelo{
    position: absolute;
    bottom: 1625px;
    right: 730px;
    width: 132px;
    height: 20px;
}


@media (max-width: 768px) {
    .features-section .icone-amarelo {
        position: absolute;
        bottom: -240px;
        right: 250px;
        width: 132px;
        height: 50px;
    }
    
}

.features-title {
    font-size: 3rem;
    color: var(--white); /* Alterado para branco para melhor contraste */
    margin-bottom: 0rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2rem; /* Reduz o tamanho do título em telas menores */
    }
}

.features-subtitle {
    font-size: 1.5rem;
    color: var(--white); /* Alterado para branco para melhor contraste */
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .features-subtitle {
        font-size: 1.5rem; /* Reduz o tamanho do subtítulo em telas menores */
        text-align: center; /* Centraliza o subtítulo */
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.feature-card {
    /*background: #FFFFFF;*/
    border-radius: 20px;
    height: 640px; /*570*/
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
    /*margin: 0 auto;
    padding: 2rem 2rem 0;*/
    /*gradiente na borda*/
    /*content: "";
    inset: 0;
    padding: 3px;
    background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);*/
}

.feature-content {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--white);
    border-radius: 20px;
    
}

.feature-content h3 {
    color: var(--primary-dark);
    font-size: 2.0rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
}

/*Sublinhando h3*/
.feature-content h3::after {
    content: '';
    display: block;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #7D65E1, #2E2D60);
    margin: 0.5rem auto; /* Centraliza a linha */
}

.feature-content p {
    color: var(--primary-dark);
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.9;
    text-align: center;
    padding: 0 20px 0 20px;
}

@media (max-width: 768px) {
    .feature-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1.0rem;
    }
}

.feature-image {
    width: 100%;
    height: 400px;
    margin-top: auto;
    background-size: auto 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: transform 0.3s ease;
}

/* Estilos específicos para cada imagem */
.simulados-img {
    background-image: url('assets/images/simulados.png');
    background-color: #7D65E1;
    border-radius: 0 0 20px 20px;
}

.quizzes-img {
    background-image: url('assets/images/quizzes.png');
    background-color: #7D65E1;
    border-radius: 0 0 20px 20px;
}

.flashcards-img {
    background-image: url('assets/images/flashcards.png');
    background-color: #7D65E1;
    border-radius: 0 0 20px 20px;
}

/* Efeito hover */
.feature-card:hover {
    transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .feature-card {
        height: 600px;
    }

    .feature-image {
        height: 400px;
    }
}

/* Seção de Preços */
.pricing-section {
    position: relative;
    padding: 4rem 5%;
    background-color: var(--primary-dark);
    text-align: center;
    overflow: hidden;
    background-image: url('assets/images/how-it-works-section.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    margin-top: -10rem;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

.pricing-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
    position: relative;
    order: 1;
}

.pricing-header .icone-amarelo{
    position: absolute;
    right: 900px; /* Ajuste a posição horizontal conforme necessário */
    width: 110px; /* Largura do ícone amarelo */
    height: 30px; /* Altura do ícone amarelo */
    order: 2;
}

@media (max-width: 768px) {
    .pricing-header .icone-amarelo {
        position: absolute;
        right: 330px; /* Ajuste a posição horizontal conforme necessário */
        width: 110px; /* Largura do ícone amarelo */
        height: 30px; /* Altura do ícone amarelo */
        margin-top: -30px; /* Ajuste a margem superior conforme necessário */
    }
}

@media (max-width: 480px) {
    .pricing-header .icone-amarelo {
        position: absolute;
        right: 185px; /* Ajuste a posição horizontal conforme necessário */
        width: 110px; /* Largura do ícone amarelo */
        height: 30px; /* Altura do ícone amarelo */
        margin-top: -30px; /* Ajuste a margem superior conforme necessário */
    }
}

svg.icone-amarelo {
    overflow: visible;
    color: #ffc000;
}

/* Seletor para o path mais grosso */
svg.icone-amarelo path[stroke-width="4"] {
    transition: transform 0.4s ease;
}

/* Seletor para o path mais fino */
svg.icone-amarelo path[stroke-width="2"] {
    transition: transform 0.4s ease;
}

/* Animação no hover - path grosso primeiro */
svg.icone-amarelo:hover path[stroke-width="4"] {
    transform: translate(15px);
    transition-delay: 0s;
}

/* Animação no hover - path fino depois */
svg.icone-amarelo:hover path[stroke-width="2"] {
    transform: translate(15px);
    transition-delay: 0.2s;
}

/* Respeito à preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
    svg.icone-amarelo path {
        transition: none;
        transform: none;
    }
}

/*decoração abaixo do planos*/
.decoration {
    display: block;
    /*margin: -50px auto 0;*/
    margin-top: -45px;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 1rem 2rem 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    min-height: 700px; /* Aumentado para acomodar imagem maior */
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-dark);
    font-size: 2.0rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 800;
}

@media (max-width: 768px) {
    .pricing-header h3 {
        font-size: 1.5rem; /* Reduz o tamanho da fonte do título */
    }
}

.price {
    margin-bottom: 1.5rem;
}

.price .amount {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .price .amount {
        font-size: 1.5rem; /* Reduz o tamanho da fonte do valor */
    }
}

.price .period {
    font-size: 0.9rem;
    color: var(--primary-dark);
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0; /* Reduzido para dar mais espaço à imagem */
    text-align: center;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 1.0rem;
    font-weight: 600;
}

.pricing-image {
    width: 100%;
    height: 350px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    margin-top: auto;
    transition: transform 0.3s ease;
}

/* Estilos específicos para cada imagem */
.astronaut-img {
    background-image: url('assets/images/astronaut.png');
    height: 350px;
    margin-bottom: 30px;
    transform: scale(1.30);
}

.planet-img {
    background-image: url('assets/images/planet.png');
    height: 350px;
    margin-bottom: 30px;
    transform: scale(1.30);
}

.rocket-img {
    background-image: url('assets/images/rocket.png');
    height: 350px;
    margin-bottom: 30px;
    transform: scale(1.30);;
}

.galaxy-img {
    background-image: url('assets/images/galaxy.png');
    height: 350px;
    margin-bottom: 30px;
    transform: scale(1.30);
}

/* Efeito hover para todas as imagens 
.pricing-card:hover .pricing-image {
    transform: scale(1.2);
}

/* Planejamento */
.planning-section {
    position: relative;
    padding: 20rem 5%;
    z-index: 1;
    background-image: url('assets/images/spaced-repetition-bk.png');
    /*background-image: url('assets/images/spaced-repetition-bk.svg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.planning-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

@media (max-width: 768px) {
    .planning-section {
        padding: 4rem 2rem 12rem 2rem; /* Reduzindo o padding em telas menores */
        margin-top: -1px;
    }
}

.planning-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.planning-content {
    flex: 1;
}

.planning-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 4rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
}

.planning-content h2 span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .planning-content h2 {
        font-size: 2rem;
        text-align: center; /* Centraliza o título */
    }
}

.planning-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.5;
    text-align: justify;
}

@media (max-width: 768px) {
    .planning-subtitle {
        font-size: 1.2rem;
        text-align: center; /* Centraliza o subtítulo */
    }
}

.planning-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.planning-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.planning-feature-item img {
    width: 32px;
    height: 32px;
    filter: invert(45%) sepia(67%) saturate(953%) hue-rotate(219deg) brightness(91%) contrast(93%);
    z-index: 2;
}

.planning-feature-item::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: #9B51E0;
    /*repeating-linear-gradient(
        45deg,
        #9B51E0 0,
        #9B51E0 10px,
        transparent 10px,
        transparent 20px
    );*/
    opacity: 0.15;
    z-index: -1;
    border-radius: 20px;
    margin: -6px;
    /*transform: rotate(-15deg)*/
}

.planning-feature-item span {
    color: var(--white);
    /*font-weight: 600;*/
    font-size: 1.3rem;
}

.planning-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 2rem;
}

.planning-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(125, 101, 225, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.planning-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    height: auto;
    left: 5px;
}

img.imagem-plan-principal {
    animation: float 3s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .planning-container {
        flex-direction: column;
    }

    .planning-features {
        grid-template-columns: 1fr;
    }

    .planning-feature-item span {
        font-size: 1.2rem;
        
    }

    .planning-image {
        order: -1;
    }
}

/*Imagens ao redor do círculo*/

.icone-notificacao {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease;
}

.calendario-estelar {
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icone-notificacao:first-child {
    position: absolute;
    top: 90px;
    left: -24px;
    z-index: 3;
    width: 110px;
    height: 110px;
    transform: rotate(-24deg);/*atualizar*/
}

.calendario-estelar:last-child {
    position: absolute;
    bottom: 100px;
    right: 50px;
    z-index: 3;
    width: 100px;
    height: 100px;
    transform: rotate(4deg);
    left: -20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .icone-notificacao:first-child {
        top: 90px;
        left: 0px;
        width: 100px;
        height: 100px;
        transform: rotate(-20deg);
    }

    .calendario-estelar:last-child {
        bottom: 90px;
        right: 30px;
        width: 90px;
        height: 90px;
    }
}

/* Escolha Como Estudo */
.study-choice-section {
    position: relative;
    padding: 10rem 5%;
    z-index: 1;
    /*background-image: url('assets/images/study-choice-section-bk.svg');*/
    background-image: url('assets/images/spaced-repetition-bk.png');
    background-color: #372B69; /* Cor de fundo padrão */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: -12rem;
}

.study-choice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

@media (max-width: 768px) {
    .study-choice-section {
        padding: 4rem 2rem; /* Reduzindo o padding em telas menores */
        margin-bottom: -8rem; /* Ajustando a margem inferior */
    }
}

.study-choice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 11rem;
}

.study-choice-content {
    flex: 1;
}

.study-choice-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.study-choice-content h2 span {
    color: #7D65E1;
    position: relative;
}

@media (max-width: 768px) {
    .study-choice-content h2 {
        font-size: 2rem;
        width: 500px;
        text-align: center; /* Centraliza o título */
    }
}

.study-choice-content p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    text-align: left;
}

.study-button {
    display: inline-block;
    background: #7D65E1;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.study-button:hover {
    transform: translateY(-3px);
    background: var(--primary-dark); /*background: #6753b4;*/
    color: var(--white);
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
}

.study-choice-images {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px; /* Garante espaço suficiente */
}

/* Círculo de fundo */
.study-choice-images::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(125, 101, 225, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.study-choice-images:hover .main-image {
    animation: float 3s ease-in-out infinite;
}

/* Keyframes para animação flutuante */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .study-choice-images {
        min-height: 400px; /* Reduzindo a altura mínima em telas menores */
    }

    .study-choice-images::before {
        width: 300px;
        height: 300px;
    }

    .main-image {
        max-width: 250px; /* Reduzindo a largura máxima da imagem principal */
    }
}

/* Mantendo os estilos existentes das small-images */
.small-image {
    width: 120px;
    height: 120px;
    position: absolute;
    z-index: 3;
    transition: transform 0.3s ease;
}

/* Posicionamento específico para cada imagem pequena */
.small-image:nth-child(1) {
    top: 15%;
    left: 0%;
    transform: rotate(-15deg);
}

.small-image:nth-child(1):hover {
    transform: rotate(-15deg) scale(1.1);
}

.small-image:nth-child(2) {
    bottom: 20%;
    right: 20%;
    transform: rotate(30deg);
}

.small-image:nth-child(2):hover {
    transform: rotate(15deg) scale(1.1);
}

.small-image:nth-child(3) {
    top: 40%;
    right: -2%;
    transform: rotate(25deg);
}
.small-image:nth-child(3):hover {
    transform: rotate(25deg) scale(1.1);
}

.small-image:nth-child(4) {
    bottom: 15%;
    left: 0%;
    transform: rotate(-20deg);
}
.small-image:nth-child(4):hover {
    transform: rotate(-20deg) scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .study-choice-images {
        min-height: 400px;
    }

    .study-choice-images::before {
        width: 300px;
        height: 300px;
    }

    .small-image {
        width: 80px;
        height: 80px;
    }

    .small-image:nth-child(1) {
        top: 10%;
        left: -10%;
    }

    .small-image:nth-child(2) {
        bottom: 10%;
        right: 5%;
    }
    .small-image:nth-child(3) {
        top: 30%;
        right: -15%;
    }
    .small-image:nth-child(4) {
        bottom: 10%;
        left: -15%;
    }
}

    @media (max-width: 480px) {
        .study-choice-images::before {
            width: 250px;
            height: 250px;
        }

        .small-image:nth-child(1) {
            top: 5%;
            left: -5%;
        }

        .small-image:nth-child(2) {
            bottom: 5%;
            right: 0%;
        }
        .small-image:nth-child(3) {
            top: 20%;
            right: -10%;
        }
        .small-image:nth-child(4) {
            bottom: 5%;
            left: -10%;
        }
    }

/* Responsividade */
@media (max-width: 768px) {
    .study-choice-container {
        flex-direction: column;
        text-align: center;
    }

    .study-choice-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.2rem; /* Reduz o tamanho da fonte do parágrafo */
        width: 500px;
        text-align: center; /* Centraliza o texto */
    }

    .study-choice-images {
        order: -1;
    }

    .small-image {
        width: 80px;
        height: 80px;
    }
}

/* Compartilhamento */
.share-section {
    position: relative;
    padding: 10rem 5% 15rem 5%;
    background-color: var(--primary-dark);
    overflow: hidden;
    background-image: url('assets/images/Section_1500.png');
    /*background-image: url('assets/images/how-it-works-section.svg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.share-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

.share-section h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px;
}

/*Responsividade*/
@media (max-width: 768px) {
    .share-section {
        padding: 2rem 2rem 2rem 2rem; /* Reduzindo o padding em telas menores */
    }

    .share-section h2 {
        font-size: 2rem;
    }
}

.share-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.share-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    text-align: center;
}

/*.share-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
}*/



.share-image {
    margin-top: 1rem;
    max-width: 500px;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

.share-image img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Controla o tamanho máximo da imagem */
    /*border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
}

/*animação*/
.share-image img:hover {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .share-image img {
        max-width: 300px; /* Reduz o tamanho máximo da imagem em telas menores */
    }
}

.share-options-container{
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    min-height: 500px; /*300*/
    min-width: 450px;
}

.share-text p {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.6;
    max-width: 500px; /* Controla a largura máxima do parágrafo */
    opacity: 0.9;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0 20px; /* Adiciona espaçamento lateral */
}

.share-options-container h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
}

/*share options container com imagens*/
.share-card { /*teste*/
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    width: 200px;
    text-align: center;
    position: absolute;
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
    transition: transform 0.3s ease;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: space-between; /* Adiciona espaço entre a imagem e o texto */
    height: 200px; /* Define uma altura fixa para manter consistência */
}

.share-card:hover {
    transform: translateY(-5px);
}

.share-card img {
    width: 80px;
    height: 80px;
}

.share-card-materials span,
.share-card-quizzes span,
.share-card-simulados span {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0rem;
    text-align: center;
    width: 100%;
    position: relative;
}

.share-card-materials :hover{
    transform: translateY(-2px);
    transition: transform 0.3s ease;
} .share-card-quizzes :hover{
    transform: translateY(-2px);
    transition: transform 0.3s ease;
} .share-card-simulados :hover{
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Posicionamento específico de cada card */
.share-card-materials {
    position: absolute;
    left: 15%;
    top: 103px;
    transform: rotate(5deg);
}

.share-card-materials span {
    content: "Materiais";
    color: var(--white);
}

.share-card-quizzes {
    position: absolute;
    right: 40px;
    top: 83px;
    transform: rotate(0deg);
}

.share-card-quizzes span {
    content: "Quizzes";
    color: var(--white);
}

.share-card-simulados {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
}

.share-card-simulados span {
    content: "Simulados";
    color: var(--white);
}

/* Responsividade */
@media (max-width: 768px) {
    .share-container {
        flex-direction: column;
        text-align: center;
    }

    .share-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.3rem;
    }

    .share-image {
        margin: 2rem auto;
    }

    .share-options {
        min-width: 250px;
    }
}

/* Spaced Repetition Section */
.spaced-repetition-section {
    position: relative;
    padding: 14rem 5% 1rem 5%;
    z-index: 1;
    background-image: url('assets/images/spaced-repetition-bk.png');
    /*background-image: url('assets/images/spaced-repetition-bk.svg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.spaced-repetition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

@media (max-width: 768px) {
    .spaced-repetition-section {
        padding: 4rem 2rem; /* Reduzindo o padding em telas menores */
        margin-bottom: -5px;
    }
}

.spaced-repetition-container {
    max-width: 1400px;
    margin: 0 auto;
}

.spaced-repetition-header {
    text-align: center;
    margin-bottom: 4rem;
}

.spaced-repetition-header h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.spaced-repetition-header .icone-amarelo{
    position: absolute;
    right: 550px;
    width: 132px;
    height: 145px;
}
/*Responsividade*/
@media (max-width: 768px) {
    .spaced-repetition-header h2 {
        font-size: 2.0rem;
    }

    .spaced-repetition-header .icone-amarelo{
        position: absolute;
        right: 110px;
        width: 132px;
        height: 105px;
    }
}
@media (max-width: 480px) {
    .spaced-repetition-header h2 {
        font-size: 1.8rem;
    }

    .spaced-repetition-header .icone-amarelo{
        position: absolute;
        right: 175px;
        width: 132px;
        height: 110px;
    }
}
@media (max-width: 320px) {
    .spaced-repetition-header h2 {
        font-size: 1.5rem;
    }

    .spaced-repetition-header .icone-amarelo{
        position: absolute;
        right: 95px;
        width: 132px;
        height: 105px;
    }
}

.spaced-repetition-header p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spaced-repetition-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

/*Responsividade*/

@media (max-width: 768px) {
    .spaced-repetition-header h2 {
        font-size: 2.0rem;
    }

    .spaced-repetition-header p {
        font-size: 1.2rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.0rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 12px solid #7D65E1;
}


.benefit-card:hover {
    transform: translateY(-5px);
}

.card-header {
    text-align: center;

}

.card-image {

}

.card-image img {
    width: 100%;
    height: auto;
    max-width: 270px;
    border-radius: 15px 15px 0 0;
    margin-bottom: -4px;
}

.card-header h3 {
    /*color: var(--primary-dark);*/
    font-size: 1.0rem;
    font-weight: 700;
    border: 1px solid #7D65E1;
    margin: 0px;
    padding: 0.8rem 1rem;;
}

.card-attributes {
    display: flex;
    flex-direction: column;
    /*gap: 0.5rem;*/
}

.attribute {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    /*border-radius: 8px;*/
    transition: all 0.3s ease;
}

/* Estilo para o último atributo de cada card */
.card-attributes .attribute:last-child {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

/* Mantendo os estilos de alternância de cores */
.attribute:nth-child(odd) {
    background: #7D65E1;
}

.attribute:nth-child(even) {
    background: #FFFFFF;
    border: 1px solid #7D65E1;
}

/* Cores do texto dos atributos */
.attribute:nth-child(odd) span {
    color: #FFFFFF;
}

.attribute:nth-child(even) span {
    color: #7D65E1;
}

/* Ícones dos atributos */
.link-icon {
    width: 20px;
    height: 20px;
    background-image: url('assets/images/link-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Ajuste das cores dos ícones baseado no fundo */
.attribute:nth-child(odd) .link-icon {
    filter: brightness(0) invert(1); /* Ícone branco */
}

.attribute:nth-child(even) .link-icon {
    filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(213deg) brightness(87%) contrast(87%); /* Ícone roxo */
}

/* Responsividade */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .benefit-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Botão de voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #7D65E1;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(100px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(125, 101, 225, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #6549E3;
    transform: translateY(-2px);
}

.back-to-top svg {
    transform: rotate(-1deg);
}

/* Responsividade */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        /*grid-template-columns: 1fr;*/
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .pricing-card {
        min-height: 600px;
        padding: 1rem;
    }

    .pricing-header {
        margin-bottom: 0;
    }

    .pricing-header h2{
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        margin: 1rem;
    }

    .price{
        margin-bottom: 0;
    }

    .price .amount {
        font-size: 1.8rem;
    }

    .pricing-features {
        padding: 1rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .pricing-image {
        height: 250px;
    }

    /* Ajuste das imagens específicas */
    .astronaut-img,
    .planet-img,
    .rocket-img,
    .galaxy-img {
        height: 300px;
        /*transform: scale(1.2);*/
        margin-bottom: -1px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        max-width: 400px;
        margin: auto;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    .site-branding {
        margin-bottom: 1rem;
    }


    .header-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-widgets {
        flex-direction: column;
        align-items: center;
    }

    .footer-widgets div {
        width: 80%;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        min-height: 500px;
        max-width: 300px;
        margin: 0 auto;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .pricing-image {
        height: 200px;
    }

    /* Ajuste das imagens específicas */
    .astronaut-img,
    .planet-img,
    .rocket-img,
    .galaxy-img {
        height: 200px;
        transform: scale(1.5);
        margin-bottom: 30px;
    }
}

/* Seção de Estudo com Espaçamento */
.spaced-study-section {
    position: relative;
    padding: 10rem 5%;
    background-color: var(--primary-dark);
    overflow: hidden;
    /*background-image: url('assets/images/how-it-works-section.svg');*/
    background-image: url('assets/images/Section_1500.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.spaced-study-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,  
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

/* início teste para conter o spaced study*/
.spaced-study-container{
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.spaced-study-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
    z-index: 2;
}

.spaced-study-header .icone-amarelo {
    position: absolute;
    right: 285px;
    width: 132px;
    height: 20px;
}
@media (max-width: 768px) {
    .spaced-study-header .icone-amarelo {
        position: absolute;
        right: 280px;
        width: 132px;
        height: 40px;
    }
}

.spaced-study-container h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .spaced-study-container h2 {
        font-size: 2.0rem;
    }


}

.spaced-study-wrapper {
    display: flex;
    gap: 150px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/*fim do teste*/


.spaced-study-content {
    flex: 2;
}

.spaced-study-content h2 {
    font-size: 2.0rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.study-description {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: left;
    max-width: 600px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .spaced-study-content h2 {
        font-size: 1.5rem;
    }

    .spaced-study-content{
        flex: 2;
    }

    .study-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 10px;
    }
}

.study-quote {
    border-left: 4px solid #7D65E1;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.study-quote p {
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-align: justify;
    max-width: 975px;
}

.study-quote cite {
    color: var(--white);
    opacity: 0.8;
    font-size: 1rem;
}

.spaced-study-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.spaced-study-image img {
    max-width: 800px;
    height: auto;
    transition: transform 0.3s ease; 
}

.spaced-study-image:hover img {
    transform: translateY(-5px);
    animation: float 3s ease-in-out infinite;
}

@keyframes floatStudy {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .spaced-study-container {
        flex-direction: column;
        text-align: center;
    }

    .study-quote {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .spaced-study-image {

        flex: 1;
    }

    .spaced-study-image img {
        max-width: 250px;
    }
}

/* Performance Section */
.performance-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0;
    display: grid;
    grid-template-areas:
        "header header"
        "content image";
    grid-template-columns: 1fr auto;
    transition: transform 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .performance-card {
        grid-template-areas:
        "header header"
        "content image";
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 480px) {
    .performance-card {
        grid-template-areas:
        "header header"
        "content image";
        grid-template-columns: 1fr;
    }

    .performance-content {
        grid-template-columns: 1fr;
        grid-template-areas: "chart graph";
        gap: 1rem;
        padding: 1rem;
    }

    .chart-container {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .graph-container {
        padding: 1rem;
        min-width: auto;
        width: 100%;
        transform: scale(0.9);
    }

    .performance-header h3 {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .performance-header p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .donut-chart {
        width: 100px;
        height: 100px;
    }

    .chart-center {
        width: 70px;
        height: 70px;
    }

    .percentage {
        font-size: 1.2rem;
    }

    .bar-chart {
        height: 100px;
        gap: 0.8rem;
        transform: scale(0.8);
        margin-top: 2rem;
    }

    .bar {
        width: 12px;
    }

    .legend-item, 
    .legend-item-graph {
        font-size: 0.8rem;
    }

    .chart-legend {
        margin-top: 6rem;
        gap: 0.8rem;
    }

    .graph-legend {
        gap: 0.8rem;
    }
}

.performance-card h3 {
    position: relative;
    /*grid-area: title;*/
    grid-area: header;
    color: var(--white);
    font-size: 3rem;
    margin: 0;
    padding: 1.0rem;
    text-align: center;
}

@media (max-width: 768px) {
    .performance-card h3 {
        font-size: 1.8rem;
        padding: 0.8rem;
    }
}

.performance-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "chart graph";
    gap: 2rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.chart-container {
    grid-area: chart;
    background: #7D65E1;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    max-width: 250px;
}

.chart-container:hover {
    transform: translateY(-2px);
}

.graph-container {
    grid-area: graph;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    min-width: 600px;
    /*transform: scale(1.2); /* Aumenta o tamanho em 20% */
    transform-origin: center center; /* Define o ponto de origem da transformação */
}

.graph-container:hover {
    transform: translateY(-2px);
}

/* Gráfico Circular */
.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #321d80 0deg 120deg, /*laranja*/
        #6941b4 120deg 360deg /*verde*/
    );
    margin-top: 15px;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: #7D65E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Gráfico de Barras */
.bar-chart {
    position: relative;
    /*height: 200px;*/
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    margin-top: 4rem;
    background: repeating-linear-gradient(
        to top,
        rgba(200, 200, 200, 0.1) 0px,
        rgba(200, 200, 200, 0.1) 1px,
        transparent 1px,
        transparent 48px
    );
    transform: scale(1.1);
    padding-left: 20px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bars {
    display: flex;
    gap: 4px;
    height: 150px;
    align-items: flex-end;
}

.bar {
    width: 20px;
    border-radius: 4px;
}

.bar.success {
    background-color: #6941b4; /*verde*/
}

.bar.error {
    background-color: #321d80; /*laranja*/
}

.label {
    color: var(--primary-dark);
    font-size: 1rem;
    text-align: center;
}

/* Legendas */
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 16.5rem;
}

.graph-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-item span {
    color: white;
}

.legend-item-graph{
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.success {
    background-color: #6941b4; /*verde*/
}
.legend-dot.error {
    background-color: #321d80; /*laranja*/
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.success {
    background-color: #6941b4; /*verde*/
}

.dot.error {
    background-color: #321d80; /*laranja*/
}


/* Título do gráfico de barras */
.graph-container h4 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 0px;
}

/* Responsividade */
@media (max-width: 768px) {
    .performance-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "chart"
            "graph"
            "image";
        gap: 1rem;
    }
    
    .chart-container {
        padding: 2.5rem;
        margin: 0 auto;
        /*grid-area: "chart";
        grid-template-columns: 1fr;
        grid-template-areas: "chart";*/
    }

    .graph-container {
        padding: 1.5rem;
        margin: auto;
    }

    .performance-header h3 {
        grid-area: header;
        font-size: 2rem;
        padding: 1rem;
    }

    .performance-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .donut-chart {
        width: 120px;
        height: 120px;
    }

    .chart-center {
        width: 80px;
        height: 80px;
    }

    .chart-legend {
        position: relative;
        margin-top: 8rem;  /* Ajustado de 15rem */
        flex-direction: row;  /* Mudado para row */
        justify-content: center;
        gap: 1rem;
    }

    .legend-item {
        font-size: 0.9rem;  /* Texto da legenda menor */
    }

    .dot {
        width: 10px;  /* Reduzido de 12px */
        height: 10px;
    }

    .percentage {
        font-size: 1.5rem;
    }

    .bar {
        width: 15px;
    }

    .bar-chart {
        gap: 1rem;
    }

    .performance-image {
        width: 180px;
        padding: 1rem;
    }
}

.performance-header {
    text-align: center;
    padding: 0 1rem;
    grid-area: header;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.performance-header p {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-top: 10px;
    text-align: center;
    /*font-weight: 600;*/
}

@media (max-width: 768px) {
    .performance-header p {
        font-size: 1.1rem;
        margin-top: 5px;
        max-width: 600px;
        text-align: center;
    }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Responsividade */
@media (max-width: 768px) {
    .performance-header::before {
        width: 55px;
        top: 14%;
        right: 8%;
    }

    .performance-header::after {
        top: 14%;
        right: 15%;
        font-size: 1rem;
        transform: rotate(-37deg);
    }
}


.linha-vazia {
    display: flex;
    gap: 8px;
    /*padding-bottom: 1rem;*/
}

.linha-vazia span {
    width: 120px;
    height: 10px;
    background: #3f2490;
    border-radius: 15px;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .performance-image {
        width: 200px;
        padding: 1rem;
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .linha-vazia {
        gap: 6px;
    }

    .linha-vazia span {
        width: 120px;
        height: 10px;
    }
}

/* Como Funciona */
.how-it-works-section {
    position: relative;
    padding: 2rem 5% 28rem 5%;
    /*padding: 10rem 5%;*/
    background-color: var(--primary-dark);
    overflow: hidden;
    background-image: url('assets/images/Section_1500.png');
    /*background-image: url('assets/images/how-it-works-section.svg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.how-it-works-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 
        180deg,
        rgba(55, 43, 105, 0.527) 0%,
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

.how-it-works-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    text-align: center;
}

.how-it-works-container h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.how-it-works-container .icone-amarelo {
    position: absolute;
    bottom: -15px;
    right: 40px;
    width: 132px;
    height: 20px;
}

.how-it-works-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 0rem 1rem;
        margin-bottom: -60px;
    }

    .how-it-works-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .how-it-works-container .icone-amarelo {
        width: 80px;
        bottom: -12px;
        right: 40px;
    }

    .how-it-works-image {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 0rem;
        margin-bottom: -60px;
    }

    .how-it-works-container{
        margin: 0 auto;
    }

    .cards-container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-decks{
        right: 135px;
        padding: 30px;
        justify-content: center;
        height: 500px;
    }

    /*feature-card right*/
    .feature-card.right{
        padding: 1.5rem;
        height: 270px;
        width: 380px;
    }

    .card-content{
        padding: 1.5rem;
    }

    .astronaut-container{
        width: 350px;
        right: -136px;
        bottom: 75px;
    }

    .astronaut-container img{
        width: 200px;
        height: auto;
        margin-bottom: 20px;
    }

    .cloud-container{
        top: 1095px;
        left: 270px;
        width: 50%;
        height: 100%;
        z-index: 10;
    }

    .cloud-container img{
        width: 150px;
        height: auto;
    }
}

/*deck a esquerda*/

.deck {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    min-width: 280px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: absolute;
    transition: all 0.3s ease;
    backface-visibility: hidden;
}

.card-decks {
    position: relative;
    display: flex;
    padding: 20px;
    perspective: 1000px;
    margin-right: -4rem;
}

/* Posicionamento dos cards sobrepostos */
.deck:nth-child(1) {
    transform: translateX(0) rotate(-15deg); /*-5deg*/
    z-index: 2; /*3*/
    height: 350px;
    right: 480px;
}

.deck:nth-child(2) {
    transform: translateX(40px) rotate(0deg);
    z-index: 3; /*2*/
    height: 350px;
    right: 380px;
}

.deck:nth-child(3) {
    transform: translateX(40px) rotate(10deg); /*5deg*/
    z-index: 1;
    height: 350px;
    right: 200px;
}

/* Efeito hover */
.card-decks:hover .deck:nth-child(1) {
    transform: translateX(-60px) rotate(-8deg);
}

.card-decks:hover .deck:nth-child(2) {
    transform: translateX(0) rotate(0deg);
}

.card-decks:hover .deck:nth-child(3) {
    transform: translateX(60px) rotate(8deg);
}

.deck:hover {
    transform: translateY(-2px);
}

.deck-header {
    margin-bottom: 12px;
}

.deck-header h4 {
    /*font-size: 1.125rem;*/
    font-size: 2rem;
    color: #1F2937;
    margin: 0 0 4px;
}

.last-access {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
}

.progress-bar {
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    margin: 12px 0;
}

.progress {
    height: 100%;
    background: #6B4EE6;
    border-radius: 2px;
}

.deck-actions {
    display: flex;
    gap: 12px;
    margin: 40px 0;
    font-size: 3rem;
    margin-bottom: 30px;
    justify-content: center;
}

.action-btn {
    background: none;
    border: none;
    padding: 8px;
    color: #6B7280;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 3rem;
}

.action-btn:hover {
    color: #6B4EE6;
}

.deck-topic {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #F3F4F6;
    border-radius: 8px;
    font-size: 2rem;
    /*font-size: 0.875rem;*/
    color: #4B5563;
}

.fa-leaf:before{
    color: #6B4EE6;
}

.fa-flask:before{
    color: #6B4EE6;
}

/* Responsividade */
@media (max-width: 768px) {
    .how-it-works-cards {
        flex-direction: column;
    }
    
    .card-decks {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .card-decks::-webkit-scrollbar {
        display: none;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .card-decks {
        padding: 30px;
        margin-right: -100px;
        justify-content: center;
        height: 500px;
    }

    .deck {
        min-width: 240px;
        height: 300px;
    }

    .deck:nth-child(2) {
        transform: translateX(20px) rotate(0deg);
    }

    .deck:nth-child(3) {
        transform: translateX(40px) rotate(5deg);
    }
}

@media (max-width: 480px) {
    .card-decks {
        transform: scale(0.8);
        
    }

    .deck {
        min-width: 200px;
        height: 280px;
    }

    .deck:nth-child(1) {
        right: 220px;
    }

    .deck:nth-child(2) {
        right: 140px;
    }

    .deck:nth-child(3) {
        right: 30px;
    }

    .deck-header h4 {
        font-size: 1.3rem;
    }

    .deck-actions {
        font-size: 1.8rem;
    }

    .deck-topic {
        font-size: 1.3rem;
    }
}

/* Novos estilos para a seção de cards */
.cards-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.feature-card {
    /*background: rgba(125, 101, 225, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);*/
}

.feature-card.left {
    background: #a174e4;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 180px;
    max-width: 580px;
}

.feature-card.left:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card.left .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card.left .card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card.left .card-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

.feature-card.left .card-meta {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 4px;
}

.feature-card.left .card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.feature-card.left .action-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.feature-card.left .action-button:hover {
    opacity: 1;
}

.card-content {
    /*height: 100%;*/
}

.card-header-works {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.deck-white, .deck-rosa {
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deck-white:hover, .deck-rosa:hover {
    transform: translateY(-2px);
}

.search-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center;
}

.search-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background-color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #6B4EE6;
}

.search-button {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6B4EE6;
}

.add-button {
    background-color: #6B4EE6;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-button:hover {
    background-color: #5B3ED6;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 1rem;
    margin-top: 1rem;
}

.deck-item {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 1rem;
}

/* Decks */
.deck-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.deck-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.deck-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.card-count {
    font-size: 14px;
    color: #666666;
}

.deck-meta {
    margin-bottom: 20px;
}

.last-access {
    display: block;
    font-size: 12px;
    color: #666666;
    margin-bottom: 8px;
}

.progress-bar {
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    background: #6B4EE6;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/*teste
.deck-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    justify-content: center;
}*/

.action-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666666;
    transition: color 0.2s ease;
}

.action-btn:hover {
    color: #6B4EE6;
}

.deck-topic {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px; /*12*/
    background: #F8F9FA;
    border-radius: 12px;
}

.topic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-text {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

/* Hover effect para o card inteiro */
.deck-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/*Fim decks*/

.deck-header {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.deck-white {
    background-color: #f1eff8;
    color: #8950d4;
    padding: 7px;
    max-width: 60px;
    border-radius: 5px;
}

.deck-rosa {
    background-color: #8950d4;
    color: var(--white);
    padding: 7px;
    max-width: 60px;
    border-radius: 5px;
}

.feature-card.right {
    color: var(--primary-dark);
    background-color: var(--white);
    height: 350px;
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 500px;
}

.feature-card.right h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card.right p {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.feature-card.right p.segunda-frase{
    padding-right: 85px;
}

.side-icons {
    position: absolute;
    right: 100px;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-icons img {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.side-icons img:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.astronaut-container {
    position: absolute;
    bottom: 90px;
    right: 5%;
    width: 750px;
    animation: float 3s ease-in-out infinite;
}

.astronaut-container img {
    width: 100%;
    height: auto;
}

/* Responsividade */
@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .side-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        transform: none;
    }

    .astronaut-container {
        position: relative;
        bottom: -50px;
        right: auto;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .feature-card.right {
        padding: 1.5rem;
        height: 230px;
        width: 450px;
    }

    .feature-card.right h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card.right p{
        font-size: 0.9rem;
        padding-right: 0;
    }

    .side-icons{
        display: none;
        /*flex-direction: column;
        position: static;
        margin-bottom: 2rem;
        gap: 0.5rem;
        align-items: left;*/
    }

    .side-icons img {
        width: 50px;
        height: 50px;
    }

    .astronaut-container {
        width: 350px;
        right: -185px;
        bottom: 75px;
    }
}

.cloud-container {
    position: absolute;
    top: 830px;
    left: 1075px;
    width: 50%;
    height: 100%;
    z-index: 10;
}

.cloud-container img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .cloud-container {
        top: 1095px;
        left: 430px;
        width: 50%;
        height: 100%;
        z-index: 10;
    }
    
    .cloud-container img {
        width: 100%;
        height: auto;
    }
}

/* Estilos para a página de privacidade */
.privacy-page {
    /*background-image: url(http://localhost/wordpress/wp-content/uploads/2025/06/Section-1.png);*/
    position: relative;
    background-image: url('assets/images/how-it-works-section.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

.privacy-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(55, 43, 105, -0.5);
    z-index: -1; /* Coloca a camada de opacidade atrás do conteúdo */
}

.privacy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(55, 43, 105, 0.527) 0%,
        rgba(55, 43, 105, 0.459) 100%
    );
    z-index: -10; /* Coloca a camada de opacidade atrás do conteúdo */
}

.privacy-page .site-header {
    position: relative;
    z-index: 3;
    background: transparent !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.privacy-policy-section {
    /*background: var(--white);*/
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px - 300px);
}

.privacy-policy-container {
    max-width: 1400px;
    margin: 0 auto;
}

.privacy-header{
    padding-bottom: 4rem;
}

.privacy-header h1 {
    color: var(--white);
    font-size: 3rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-header h2 {
    font-size: 1.8em;
    margin-top: 40px;
    color: var(--white);
    font-family: var(--font-primary);
    text-align: left;
}

.privacy-header p{
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 3rem;
    margin: 0 auto;
}

.privacy-header ul {
    font-size: 1em;
    margin-bottom: 20px;
}

.privacy-header ul {
    list-style-type: disc;
    padding-left: 20px;
}

.privacy-header li {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.privacy-content {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.update-date {
    text-align: left;
    font-size: 1rem;
    color: var(--white);
    margin-top: 30px;
    padding-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-page {
        margin-top: 60px;
    }

    .privacy-policy-section {
        padding: 2rem 1rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }
}

/* Ajustes para a logo na página de privacidade */
.privacy-page .site-branding {
    text-align: center;
    /*padding: 2rem 0;*/
}

.privacy-page .site-branding img {
    max-height: 90px;
    width: auto;
}

.privacy-page .custom-logo-link {
    display: inline-block;
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-page .site-branding {
        /*padding: 1.5rem 0;*/
    }

    .privacy-page .site-branding img {
        max-height: 50px;
    }
}
