body {
    font-family: 'Lato', sans-serif;
    background-color: rgb(255, 255, 255);
    color: rgb(55, 65, 81);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: rgb(242, 99, 34); /* Cor principal */
    --secondary-color: #4B5563; /* Cinza escuro */
    --accent-color: #72A0C1; /* Azul claro */
    --text-color: #374151; /* Cinza escuro para texto */
    --background-color: #F9FAFB; /* Cinza muito claro */
}

/* --- Paleta de Cores e Temas --- */
.bg-gray-50 {
    background-color: #f9fafb;
}
.bg-credvix-orange { --primary-color: rgb(243, 112, 33); }
.text-credvix-orange { color: rgb(243, 112, 33); }
.border-credvix-orange { border-color: rgb(243, 112, 33); }
.bg-help-purple { background-color: rgb(72, 43, 116); }
.text-help-purple { color: #000000; }
.ring-help-purple:focus {
    outline-color: rgb(72, 43, 116);
    box-shadow: 0 0 0 3px rgba(74, 36, 109, 0.3);
}
.scroll-smooth { scroll-behavior: smooth; }

/* --- Componentes Globais --- */
.nav-link {
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.nav-link:hover {
    color: #000000;
    border-bottom-color: var(--primary-color);
}

.section-title {
    font-size: 2.125rem;
    line-height: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
        line-height: 1.2;
    }
}
.section-subtitle {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: #4B5563;
    margin-bottom: 3.5rem; /* Mais espaçamento */
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.cta-button {
    font-weight: bold;
    padding: 0.875rem 2.5rem; /* Ligeiramente maior */
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1);
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0,0,0,0.15);
}
.material-icons {
    vertical-align: middle;
}

/* --- Animações --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Acordeão do FAQ --- */
details {
    border: 1px solid #e5e7eb;
    transition: background-color 0.3s ease;
}
details:hover {
    background-color: #f9fafb;
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::after {
    content: '+';
    float: right;
    font-size: 1.5em;
    font-weight: 400; /* Mais fino */
    line-height: 1;
    transition: transform 0.3s ease-in-out;
    color: #000000;
}
details[open] {
    border-color: rgb(242, 99, 34);
}
details[open] > summary::after {
    transform: rotate(45deg);
}

/* ================================================= */
/* === ESTILOS DO CARROSSEL HERO                  === */
/* ================================================= */
.hero-swiper-container {
    width: 100%;
    height: 70vh; /* Altura fixa baseada na viewport */
    min-height: 400px;
    max-height: 800px;
}

@media (max-width: 767px) {
    .hero-swiper-container {
        height: 60vh;
        min-height: 300px;
    }
}

.hero-swiper-container .swiper-slide {
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-swiper-container .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.1), rgba(0,0,0,0.2), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-swiper-container .slide-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
    max-width: 800px;
}

.hero-swiper-container .swiper-button-next,
.hero-swiper-container .swiper-button-prev {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    background-color: rgba(0, 0, 0, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.hero-swiper-container .swiper-button-next:hover,
.hero-swiper-container .swiper-button-prev:hover {
    opacity: 1;
    transform: scale(1.05);
    background-color: rgba(0, 0, 0, 0.4);
}
.hero-swiper-container .swiper-button-next::after,
.hero-swiper-container .swiper-button-prev::after {
    font-size: 18px;
}

.hero-swiper-container .hero-pagination.swiper-pagination-progressbar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-swiper-container .hero-pagination .swiper-pagination-progressbar-fill {
    background-color: #F37021;
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Animação para o conteúdo do slide do Hero */
.hero-swiper-container .slide-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-swiper-container .slide-content.slide-content-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.hero-swiper-container .slide-content.slide-content-visible h1 { transition-delay: 0.2s; }
.hero-swiper-container .slide-content.slide-content-visible p { transition-delay: 0.4s; }
.hero-swiper-container .slide-content.slide-content-visible .cta-button { transition-delay: 0.6s; }

/* ================================================= */
/* === ESTILOS DO CARROSSEL DEPOIMENTOS           === */
/* ================================================= */
#depoimentos {
    background-color: #ffffff !important;
    padding: 4rem 0;
}

.testimonial-swiper-container .swiper-slide {
    height: auto;
    padding-bottom: 10px;
    background-color: transparent !important;
}

.testimonial-swiper-container .swiper-wrapper {
    align-items: stretch; /* Garante que os slides se estiquem para a mesma altura */
}

.testimonial-swiper-container .testimonial-nav-next,
.testimonial-swiper-container .testimonial-nav-prev {
    color: #333; /* Setas mais escuras para contraste */
}

@media (max-width: 768px) {
    .testimonial-swiper-container .testimonial-nav-next,
    .testimonial-swiper-container .testimonial-nav-prev {
        display: none; /* Esconde as setas em telas pequenas */
    }
}

.testimonial-card-alt {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    height: 100%;
}
.testimonial-content-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.testimonial-img-alt {
    width: 40%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-content-alt {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 60%;
}

@media (max-width: 768px) {
    .testimonial-card-alt {
        flex-direction: column;
        min-height: auto;
    }
    .testimonial-img-alt {
        width: 100%;
        height: 250px;
    }
    .testimonial-content-alt {
        padding: 1.5rem;
        text-align: center;
    }
}

/* --- Card de Valores --- */
.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background-color: rgba(243, 112, 33, 0.1);
    color: #F37021;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Imagem do Card de Loja (Store Card) --- */
.store-card-image-wrapper {
    overflow: hidden;
    height: 12rem;
    background-color: #e5e7eb;
    border-radius: 1rem 1rem 0 0;
}
.store-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.store-card-image-wrapper:hover .store-card-image {
    transform: scale(1.05);
}

/* --- Rodapé --- */
.footer-bg {
    background-color: #1f2937;
}
.social-icon { color: #9ca3af; transition: color 0.3s, transform 0.3s; }
.social-icon:hover { color: #fff; transform: scale(1.1); }

/* --- Botão do Instagram --- */
.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.instagram-btn:hover { opacity: 0.9; transform: scale(1.05); }

/* --- Estilização dos Filtros (Selects) --- */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* --- Modal --- */
#upload-modal { transition: opacity 0.3s ease; }
#upload-modal .cta-button { padding: 0.75rem 1.5rem; }

/* Contêiner da imagem de fundo para o parallax */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain; /* Mantém a imagem completa sem cortar */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000; /* Fundo preto para preencher espaços vazios */
}

#quem-somos,
#trabalhe-conosco {
    background-color: #ffffff;
}

#encontre,
.faq-section {
    background-color: #f9fafb;
}

/* Estilos para o card de vaga no site público */
.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.category-indicator {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.5;
}

.category-open {
    color: #28a745;
    border-color: #28a745;
    background-color: #e9f7ef;
}

.category-talent {
    color: #1e40af;
    border-color: #3b82f6;
    background-color: #dbeafe;
}

/* Estilos específicos para os botões na seção HERO */
#hero .cta-button {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 5rem;
}

#hero .cta-button.bg-help-purple {
    background-color: rgba(74, 36, 109, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

#hero .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

#hero .cta-button.bg-help-purple:hover {
    background-color: rgba(74, 36, 109, 0.4);
}

/* =============================================== */
/* === ESTILOS PARA CATEGORIAS DE VAGAS          === */
/* =============================================== */
.category-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.category-image {
    width: 100%;
    height: 557px;
    object-fit: cover;
    display: block;
}

.category-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color, #F37021);
    color: white;
    padding: 0.75rem 1rem;
};
}