@font-face {
    font-family: NeulisAlt;
    src: url('../font/neulis-alt-light.ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: NeulisAlt;
    src: url('../font/neulis-alt-bold.ttf');
    font-weight: 700;
    font-style: normal;
}

body {
    margin-top: 0px;
}
section {
    font-family: NeulisAlt;
}
.hero-title, h2, h3 {
    color:#63474d!important;
}

/* Nav */
.custom-nav {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px -6px rgba(245, 169, 184, 0.13);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    height: 3rem;
}
@media (min-width: 768px) {
    .nav-logo {
        height: 3.5rem;
    }
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-links > a {
    text-decoration: none;
}
@media (min-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
}
.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #1f2937;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: color 0.2s, background-color 0.2s;
}
.nav-link:hover {
    color: #F5A9B8;
    background-color: rgba(255, 229, 238, 0.7);
}
.cart-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #F5A9B8;
    color: white;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border: none;
    border-radius: 0.375rem;
    height: 2.25rem;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}
.cart-button:hover {
    background-color: #e49eac;
}
.icon-cart {
    height: 1.25rem;
    width: 1.25rem;
}
.nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.nav-links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    gap: 0.75rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nav-links::-webkit-scrollbar {
    display: none;
}
@media (min-width: 768px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
    }

    .nav-links {
        justify-content: flex-end;
        width: auto;
        overflow: visible;
        white-space: normal;
    }
}
@media(max-width: 768px) {
    .nav-container > img {
        margin: auto;
        text-align: center;
    }
}


/* Sessão principal */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 140px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top right, rgba(245, 169, 184, 0.9), rgba(255, 244, 247, 0.8), rgba(116, 210, 195, 0.2));
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 768px;
    z-index: 10;
    padding: 0 1rem;
}
.hero-badge > i {
    color: #9b87f5;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fde1d3;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    color: #f5a9b8;
    margin-bottom: 0.5rem;
}
.icon-sparkles {
    width: 20px;
    height: 20px;
}
.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    letter-spacing: -1.5px;
    margin: 0px;
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}
.highlight {
    color: #f5a9b8;
}
.hero-description {
    font-size: 1rem;
    color: rgba(34, 34, 34, 0.8);
    font-weight: 500;
    max-width: 640px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}
.hero-button-container {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.hero-button-container > a{
    text-decoration: none;
}
.hero-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f5a9b8;
    color: white;
    padding: 1rem 2rem;
    font-size: 12pt;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
.hero-button:hover {
    background-color: #e49eac;
}
.icon-cart {
    width: 24px;
    height: 24px;
}


/* Mais Vendidos */
.section-produtos {
    padding: 10px 0;
    background-color: #f5f5f5;
    margin-top: -17px;
}
.section-produtos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.titulo-e-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.titulo-e-link h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
	margin-bottom: 0;
}
.btn-ver-mais {
    padding: 10px 16px;
    background: white;
    color: #f5a9b8;
    border: 1px solid #f5a9b8;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-ver-mais:hover {
    background: rgb(249, 231, 234);
}
.carousel.no-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    overflow: visible;
}
.carousel.no-carousel .produto-card {
    flex: 0 0 300px;
    max-width: 100%;
}
.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.produto-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-width: 300px;
    flex-shrink: 0;
}
@media(max-width: 390px) {
    .produto-card {
        min-width: 280px;
    }
}
.produto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.imagem-container {
    position: relative;
    overflow: hidden;
}
.imagem-container img {
    width: 100%;
    height: 208px;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 10px 10px 0px 0px;
}
.imagem-container:hover img {
    transform: scale(1.05);
}
.selo-vendido {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f5a9b8;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.descricao {
    padding: 24px 24px 8px;
    flex-grow: 1;
}
.descricao h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
	margin: 0;
}
.descricao p {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.preco-compra {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.preco-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.preco-info {
    position: relative;
}
.de {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 10pt;
    text-decoration: line-through;
    color: #63474d !important;
    font-weight: bold;
}
.preco {
    font-size: 20px;
    font-weight: bold;
    color: #f5a9b8;
}
.tipo-arquivo {
    font-size: 12px;
    color: #aaa;
    font-style: italic;
}
.btn-comprar {
    background: #f5a9b8;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}
.btn-comprar:hover {
    background: #d08594;
}
.navegacao-carousel {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
@media(max-width: 768px) {
    .navegacao-carousel {
        display: none;
    }
}
.botao-seta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 45px;
    width: 45px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
    color: #e6acb7;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    position: static;
}
.botao-seta i {
    font-size: 13pt;
    color: #e6acb7;
}
.botao-seta:hover:not(:disabled) {
    background-color: #f0f0f0;
    color: #000;
}
.botao-seta:disabled {
    opacity: 0.5;
    pointer-events: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Categorias */
.categorias-section {
    padding: 3rem 0;
    background-color: #fff;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header {
    text-align: center;
    margin-bottom: 2.25rem;
}
.title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 0.5rem;
}
.subtitle {
    color: rgba(31, 31, 31, 0.7);
    margin-bottom: 0.5rem;
}
.categorias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .categorias-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}
.categoria-card {
    background: linear-gradient(to top right, rgb(255, 245, 247), #fff, #fff5f7);
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
}
.categoria-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.categoria-card i {
    color: #f5a9b8;
}
.icon {
    margin-bottom: 1rem;
}
.icon i {
    font-size: 35pt;
}
.categoria-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.categoria-text {
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.7);
}


/* Arquivos Digitais */
.section-arquivos-digitais {
    padding: 30px;
    background-color: white;
    font-family: sans-serif;
}
.section-arquivos-digitais .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.section-arquivos-digitais .header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-arquivos-digitais .header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 1rem;
}
.section-arquivos-digitais .header p {
    color: rgba(34, 34, 34, 0.7);
    max-width: 600px;
    margin: 0 auto;
}
.section-arquivos-digitais .cards {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .section-arquivos-digitais .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
.section-arquivos-digitais .card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}
.section-arquivos-digitais .card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.section-arquivos-digitais .card-icon {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
    text-align: left;
}
.section-arquivos-digitais .card-icon > i {
    color: #f5a9b8;
    font-size: 30pt;
}
.section-arquivos-digitais .card-icon h3 {
    margin: 0px;
    margin-top: 0px;
    margin-top: 10px;
}
.card-icon i {
    font-size: 35pt;
}
.section-arquivos-digitais .card-text {
    padding: 1.5rem;
    padding-top: 0;
    color: rgba(34, 34, 34, 0.8);
}
.section-arquivos-digitais .card-text > p {
    margin: 0px;
}


/* Motivo de escolha */
.por-que-escolher {
    padding: 30px;
    background-color: white;
}
.por-que-escolher .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.por-que-escolher .header {
    text-align: center;
    margin-bottom: 3rem;
}
.por-que-escolher .header h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 0.75rem;
}
.por-que-escolher .header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.grid-beneficios {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.item {
    text-align: center;
}
.item .icon {
    background-color: rgb(255, 245, 247);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item .icon i {
    font-size: 16pt;
    color: #F5A9B8;
}
.item h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.5rem;
}
.item p {
    color: #666;
    font-size: 0.95rem;
}


/*Depoimentos */
.depoimentos {
    background-color: #f6f6f9;
    padding: 30px;
    font-family: Arial, sans-serif;
}
.depoimentos .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.depoimentos .header h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #222;
}
.depoimentos .header p {
    color: #555;
    margin-bottom: 2rem;
}
.depoimentos-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.depoimento-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 300px;
    flex: 1;
}
.depoimento-card img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    margin: 1rem auto;
    display: block;
}
.depoimento-card .quote {
    font-style: italic;
    color: #444;
    margin: 1rem 0;
}
.depoimento-card .stars {
    color: #f5b301;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.depoimento-card .author {
    font-weight: bold;
    color: #222;
}

/* Jornada */
.creative-section {
    padding: 35px;
    background: linear-gradient(to right, rgb(255, 241, 229), rgb(255, 241, 229));
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.content-box {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}
.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 2rem;
}
.explore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    padding: 0 2rem;
    background-color: #f5a9b8;
    color: #fff;
    font-size: 0.875rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.explore-button:hover {
    background-color: #e49eac;
}
.small-icon {
    width: 16px;
    height: 16px;
}
.depoimento {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.6);
}


/* Footer */
footer {
    background-color: #ffffff;
    padding: 3rem 1rem;
    font-family: sans-serif;
    color: #333333;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.footer-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.footer-text {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #ff69b4;
}
.footer-contact i {
    font-size: 28pt;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-social a {
    color: #ff69b4;
    transition: color 0.3s;
}
.footer-social a:hover {
    color: #ff8cab;
}
.footer-social i {
    color: #f5a9b8;
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.875rem;
}