body {
    font-family: 'Inter', sans-serif;
    scroll-padding-top: 80px; /* Adjust based on fixed header height */
}

/* 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: var(--unicbe-blue); }
.text-primary { color: var(--unicbe-blue); }
.border-primary { border-color: var(--unicbe-blue); }

/* Accent Color (Orange from Logo) */
.bg-accent { background-color: var(--unicbe-orange); }
.text-accent { color: var(--unicbe-orange); }
.border-accent { border-color: var(--unicbe-orange); }

.bg-unicbe-blue {
    background-color: var(--unicbe-blue);
}

.text-unicbe-blue {
    color: var(--unicbe-blue);
}

.bg-unicbe-orange {
    background-color: var(--unicbe-orange);
}

.span-unicbe {
    max-width: 450px;
    width: 100%;
}

.text-unicbe-orange {
    color: var(--unicbe-orange);
}

.border-unicbe-orange {
    border-color: var(--unicbe-orange);
}

.bg-unicbe-light-gray {
    background-color: var(--unicbe-light-gray);
}

.text-unicbe-dark-gray {
    color: var(--unicbe-dark-gray);
}

.text-unicbe-medium-gray {
    color: var(--unicbe-medium-gray);
}

.cta-button {
    background-color: var(--unicbe-orange);
    color: var(--unicbe-white);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: 2px solid var(--unicbe-orange);
}

.cta-button-wpp{
    background-color: rgb(64, 195, 81);
    color: var(--unicbe-white);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: 2px solid rgb(64, 195, 81);
}

.cta-button:hover {
    background-color: #e06018;
    /* Darker orange for hover */
    border-color: #e06018;
}

.cta-button-wpp:hover{
    background-color: #00A400;
    /* Darker orange for hover */
    border-color: #00A400;
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--unicbe-orange);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    border: 2px solid var(--unicbe-orange);
}

.cta-button-secondary:hover {
    background-color: var(--unicbe-orange);
    color: var(--unicbe-white);
}

.section-padding {
    padding: 4rem 1rem;
    /* py-16 px-4 */
}

@media (min-width: 768px) {

    /* md breakpoint */
    .section-padding {
        padding: 5rem 2rem;
        /* py-20 px-8 */
    }
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--unicbe-orange);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 1rem;
    background-color: var(--unicbe-light-gray);
    /* Light gray background for summary */
    border-radius: 0.375rem;
    /* rounded-md */
    margin-bottom: 0.5rem;
    /* Space between FAQ items */
    color: var(--unicbe-blue);
    /* Dark blue text for summary */
    display: flex;
    /* Added for icon alignment */
    justify-content: space-between;
    /* Added for icon alignment */
    align-items: center;
    /* Added for icon alignment */
}

.faq-item summary:hover {
    background-color: #e0e4e8;
    /* Slightly darker gray on hover */
}

.faq-item p,
.faq-item ul {
    /* Apply to p and ul inside details */
    padding: 1rem;
    border: 1px solid #e0e4e8;
    /* Light border for content */
    border-top: none;
    /* Remove top border as summary has bottom margin */
    border-radius: 0 0 0.375rem 0.375rem;
    /* Rounded bottom corners */
    background-color: var(--unicbe-white);
    /* White background for content */
    color: var(--unicbe-medium-gray);
    /* Medium gray for text */
}

.faq-item ul {
    list-style-position: inside;
    /* Bullets inside the padding */
    padding-left: 0.5rem; /* Adjusted padding for better alignment with summary */
}
    .faq-item ul li {
    margin-bottom: 0.25rem; /* Space between list items */
    padding-left: 1rem; /* Indent for list items */
    position: relative;
}
.faq-item ul li::before {
    content: "•";
    color: var(--unicbe-orange);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 19px;
}


/*.hero-bg {
    background-color: var(--unicbe-blue);
    color: var(--unicbe-white);
    
}*/

.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('../img/turma_direito_formatura_2023.webp');    
    background-size: cover;
    background-position: center;
    padding-top: 100px; /* Add padding for fixed header */
}

.brand-text {
    font-weight: 900;
    /* Extra bold for brand name */
    color: var(--unicbe-orange);
}

.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%;
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    max-width: 500px;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close-button:hover,
.modal-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Loading Spinner */
.loader {
    border: 5px solid var(--unicbe-light-gray);
    border-top: 5px solid var(--unicbe-orange);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Bolsa Card Top Border Effect */
.bolsa-card {
    position: relative;
    overflow: hidden; /* Ensures the pseudo-element doesn't overflow */
}
.bolsa-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px; /* Height of the orange accent */
    background-color: var(--unicbe-orange);
    z-index: 10;
}

/* 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 */
}