html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Estilo para imagens de depoimentos */
/* .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--unicbe-orange);
} */

body {
    font-family: 'Inter', sans-serif;
}

/* UniCBE Color Palette */
:root {
    --unicbe-blue: #1e2a4a; /* Dark Blue from logo */
    --unicbe-orange: #f37021; /* Orange from logo feather */
    --unicbe-white: #ffffff;
    --unicbe-light-gray: #f0f2f5; /* Light background */
    --unicbe-dark-gray: #333333; /* For text */
    --unicbe-medium-gray: #666666; /* For secondary text */
}

/* Primary Color (Dark Blue from Logo) */
.bg-primary { background-color: #1e2a4a; }
.text-primary { color: #1e2a4a; }
.border-primary { border-color: #1e2a4a; }

/* Accent Color (Orange from Logo) */
.bg-accent { background-color: #f37021; }
.text-accent { color: #f37021; }
.border-accent { border-color: #f37021; }


/* Estilizando os botões de CTA principais */
.bolsas-button {
    background-color: var(--unicbe-orange);
    color: var(--unicbe-white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
}

.bolsas-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.4);
}

.bg-unicbe-blue {
    background-color: var(--unicbe-blue);
}

/* Button hover effects */
.btn-cta {
    transition: all 0.3s ease;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.9)), url('../img/saude_formatura_2023.webp');
    background-size: cover;
    background-position: center;
}
.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 1rem;
    background-color: #f9fafb; /* gray-50 */
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}
.faq-item summary:hover {
    background-color: #f3f4f6; /* gray-100 */
}
.faq-item p {
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb; /* gray-200 */
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}
.bullet-check::before {
    content: '✔';
    color: #10B981; /* emerald-500 */
    margin-right: 0.5rem;
}
.bullet-cross::before {
    content: '❌';
    margin-right: 0.5rem;
}

/* Responsive Menu */
.nav-menu a {
    padding: 0.5rem 1rem;
    color: var(--unicbe-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu > a:hover {
    color: var(--unicbe-orange);
}

#mobile-menu {
    background-color: var(--unicbe-blue); /* Same as header */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*CARROSSEL*/
.galeria {
    max-width: 1200px;
    margin: auto;
    margin-top: 40px;
    text-align: center;
}

.galeria h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

/* 2. ESTILIZAÇÃO DO CARROSSEL (SWIPER) */
.swiper {
    width: 100%;
    height: 450px; /* Altura do carrossel */
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.swiper-slide img {
    width: 100%;
    height: 350px; /* Altura da imagem */
    object-fit: cover;
}

.swiper-slide p {
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
}

/* Estilizando as setas de navegação e a paginação (bolinhas) */
.swiper-button-next, .swiper-button-prev {
    color: #007aff; /* Cor das setas */
}

.swiper-pagination-bullet-active {
    background: #007aff; /* Cor da bolinha ativa */
}
