:root {
    --primary-blue: #275aa9;
    --light-blue: #5ab2e0;
    --cream: #efd78d;
    --orange: #f9b749;
    --off-white: #f7f1e1;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #666666;
	--superlight-blue: #d4eef8;
	--superlight-gray: #f8f8f8;
	--dark-blue: #012661;
	--cyan: #43fffe;
	--black: #000000;
	--dark-glass: #50505070;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
	font-size: 0.9em !important;
}
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}
section {
	position: relative;
}

#animated-text {
	line-height: 2.8rem;
    text-transform: uppercase;
    font-size: 3.66rem;
    color: var(--dark-blue);
}
#animated-text .space {
	margin: 0 2px;
}
#animated-text em {
	font-style: normal;
	font-weight: 400 !important;
	color: var(--cyan);
	font-size: 2.33rem;
	margin: 0 10px;
}
#animated-text span {
  opacity: 0;
  color: #ffffff;
  font-weight: 900;
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
}
#animated-text .color-a {
  color: #ffffff;
}

#animated-text .color-b {
  color: #ffffffaa !important;
}

.logo {
    height: 50px;
    width: auto;
}
.header-section .logo {
	filter: brightness(10);
}
.dark-glass {
	background-image: linear-gradient(to right bottom, rgba(51,51,51,0.6), rgba(0,0,0,0.2));
	backdrop-filter: blur(5px);
	border: 1px solid #ffffff20;
}
.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1.25rem !important;
    margin: 0 0.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--cyan);
    color: var(--black);
}

/* Hero Section - Desktop Layout */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
	background-color: var(--dark-blue);
}
.hero-background video {
	height: 133%;
	width: auto !important;
	max-width: 200% !important;
}
@media (max-width: 1368px) {
.hero-background video {
	height: 100%;
	width: auto;
}
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 2;
    
}

.hero-text {
    padding: 2rem 0;
	text-align: center;
}

.vestibular-title {
    font-size: 2.66rem;
    font-weight: 300;
    color: var(--white);
    margin: 1.5rem 0;
}
.vestibular-title span {
	color: var(--cyan);
	font-weight: 700;
}

.puc-text {
    color: var(--primary-blue);
    font-weight: 900;
}

.vestibular-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.inverno-text {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.3rem;
}

.year-badge {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.question-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0;
	border: 2px solid #43fffedd;
	max-width: 420px;
	text-align: center;
	width: 100%;
	margin: 1rem auto;
	padding: .66rem .33rem;
	box-shadow: 10px 10px 0px 0px rgba(0,255,255,0.8);
	-webkit-box-shadow: 5px 5px 0px 0px rgba(0,255,255,0.8);
	-moz-box-shadow: 5px 5px 0px 0px rgba(0,255,255,0.7);
}

.cta-buttons {
    margin-top: 3rem;
	text-align: center;
}

.hero-section .btn-outline-primary {
	border: 2px solid var(--cyan);
    color: var(--cyan);
}
.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
	border-radius: 50px;
	font-weight: bold;
	transition: all 0.3s ease;
	padding: 1rem 2rem;
}

.btn-outline-primary:hover {
    background-color: var(--cyan) !important;
    color: var(--black);
	border: 2px solid var(--cyan);
	transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
#manifesto a {
	text-decoration: none;
}

/* Personality Test - Desktop Grid */
.personality-grid-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
	position: relative;
}
.lity-profile {
	border-radius: 10px;
	width: 96% !important;
	max-width: 520px;
	font-size: 0.9em;
	background: var(--dark-blue);
	padding: 25px;
	margin: 0 auto;
	color: var(--white);
}
.lity-profile h3 {
	font-size: 1.25em !important;
	color: var(--cyan);
	font-weight: 600;
}
.lity-profile a {
	display: block;
	margin: 25px auto 0 auto;
	width: 100%;
	background: #FF9800 !important;
	text-align: center;
}

.personality-card {
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
	clip-path: polygon(54% 0, 60% 1%, 66% 3%, 97% 40%, 99% 46%, 100% 52%, 100% 100%, 0 100%, 0 0);
}
.personality-grid-desktop a {
	text-decoration: none;
}
.personality-card:hover {
    transform: scale(1.05);
}

.personality-card.active {
    transform: scale(1.05);
}

.personality-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--off-white);
}

.personality-card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cyan);
    line-height: 1.3;
}

.test-button-center {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    position: absolute;
	z-index: 5;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.test-button-center .btn {
    background-color: #FF9800;
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-test {
    background: #FF9800 !important;
    color: white;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
	text-align: center;
}
.btn-test span {
		font-weight: 400;
        display: block;
        font-size: 0.8rem;
        margin-top: 5px;
		text-transform: initial;
	}
.btn-test:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.6);
}
.test-button-center .btn:hover {
    background-color: var(--cyan);
    transform: scale(1.1);
	color: var(--black);
}

/* Livretes - Gabaritos */

.vestibular-gabarito {
	background-color: var(--light-blue);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.vestibular-gabarito h2 {
	color: var(--white);
	font-weight: bold;
}

/* Vestibular Info Section - Tabs */
.vestibular-info-section {
    background-color: var(--white);
    padding: 3rem 0;
    background-repeat: no-repeat;
    background-size: 72vh;
    background-position-x: right;
    background-position-y: bottom;
}

.vestibular-title-small {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 1rem;
}

.vestibular-subtitle-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.vestibular-tabs {
    background-color: var(--dark-blue);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-content {
    background-color: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
}

.dates-info {
    padding: 2rem;
}

.date-item {
    margin-bottom: 1.5rem;
}

.date-item strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    font-size: 1.1rem;
}

.date-highlight {
    color: var(--light-blue);
    font-weight: 600;
    font-size: 1.2rem;
}

.date-muted {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.student-image-container {
    text-align: center;
}

.student-image-large {
    width: auto;
    height: 350px;
	max-height: 500px;
	transform: translateY(1.5rem);
}

.tab-content-info {
    padding: 1rem;
}

.tab-content-info h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tab-content-info ul {
    list-style: none;
    padding-left: 0;
}

.tab-content-info li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 2rem;
}

.tab-content-info li:before {
    content: "✓";
    color: var(--light-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Students Section - Desktop */
.students-section {
    background-image: linear-gradient(to top, #63757f, #91999f, #cad3db, #d8dfe9, #e7ecf6);
    padding: 3rem 0;
}

.puc-logo-small .logo {
    height: 60px;
    width: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.student-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 450px;
    transition: all 0.3s ease;
}

.student-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blue-card {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.orange-card {
    background: linear-gradient(135deg, var(--orange), #e69500);
}

.pink-card {
    background: linear-gradient(135deg, #ff69b4, #c9006d);
}

.student-content {
	max-width: 100%;
	width: 640px;
	max-height: 86vh;
	border-radius: 25px;
	padding: 30px;
    box-sizing: border-box;
}
.student-content h3 {
	margin-bottom: 20px;
}
.student-content h3, .student-content p {
	color: var(--white);
}
.lity-content:after {
    -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 0 21px rgba(0, 0, 0, 0.3)  !important;
	border-radius: 25px;
}
.lity-close {
	position: absolute;
	right: 5px;
    top: 5px;
}

.student-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.student-card-content {
    padding: 1rem;
    text-align: center;
    color: var(--white);
}
.student-card-content .btn {
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
	margin: 15px auto;
}
.student-card-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
	max-width: 240px;
    margin: 0px auto;
}

/* Video Section - Desktop Layout */
.video-section-desktop {
    margin-top: 2rem;
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-title {
    font-size: 1.66rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.video-container-desktop {
    position: relative;
}
.video-container-desktop iframe {
	border-radius: 25px;
	overflow: hidden;
}

.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.video-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: var(--white);
}

.play-button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-duration {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

.video-info-desktop {
    padding: 1rem 0;
}

.video-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.video-channel h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.video-channel small {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Testimonials Section - Desktop */
.testimonials-section {
    background-color: #001960;
	background-image: linear-gradient(to bottom, #000e35, #00335e, #1a83b1, #68b8ce, #b4ecee);
    padding: 3rem 0;
}

.testimonial-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 520px;
}

.testimonial-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-hero-overlay .btn {
    background-color: var(--cyan);
    color: var(--black);
    border: none;
    padding: 1.5rem 3.5rem !important;
    border-radius: 100px !important;
    font-weight: 600;
    font-size: 1.75rem !important;
    transition: all 0.3s ease;
}

.testimonial-hero-overlay .btn:hover {
    background-color: var(--primary-blue);
    transform: scale(1.05);
}

.university-info {
    width: 66%;
	margin: 2rem auto;
    background-color: var(--primary-blue);
    background-image: url(../img/vestibular-2025-bg.jpg);
    padding: 3rem 1.5rem;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: relative;
}
.selo-novo {
	position: absolute;
    right: 4px;
    top: 4px;
	text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 15px;
    background: #a904c5;
    color: var(--white);
}
.course-card {
	position: relative;
}
.university-badge {
    width: 66%;
	max-width: 420px;
	margin: 5px auto;
    height: auto;
    object-fit: cover;
}

.university-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.university-info p {
    color: var(--light-gray);
    font-size: 1.2rem;
}

.testimonials-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.4;
}
.testimonials-title span {
	
}
.depvid {
	border-radius: 25px;
	padding: 1.5rem;
	background: var(--dark-blue);
	width: 900px;
	min-height: 300px;
}
.testimonials-grid-desktop .testimonial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    transition: all 0.3s ease;
}
.testimonials-grid-desktop a {
	text-decoration: none;
}
.testimonials-grid-desktop .testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
	opacity: 0.66;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: var(--white);
}

.testimonial-overlay h6 {
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.3;
	position: absolute;
	bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#teste-vocacional {
    background-color: var(--primary-blue);
    background-image: url(../img/vestibular-2025-bg.jpg);
    padding: 5rem 1.5rem;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
	color: var(--white);
}
#teste-vocacional h2 {
	color: var(--cyan);
}
#teste-vocacional .btn {
	color: var(--black) !important;
}

.play-button {
    align-self: flex-end;
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.2);
}

.pink-testimonial {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.8), rgba(255, 20, 147, 0.8));
}

.blue-testimonial {
    background: linear-gradient(135deg, rgba(90, 178, 224, 0.8), rgba(39, 90, 169, 0.8));
}

.orange-testimonial {
    background: linear-gradient(135deg, rgba(249, 183, 73, 0.8), rgba(230, 149, 0, 0.8));
}

.green-testimonial {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(56, 142, 60, 0.8));
}

.red-testimonial {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.8), rgba(198, 40, 40, 0.8));
}

.teal-testimonial {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.8), rgba(0, 121, 107, 0.8));
}


.course-card {
        transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    }
.course a {
	text-decoration: none;
}
    /* Course Area Colors */
    .bg-area-business { background-color: #5e5e5e !important; border-color: #5e5e5e !important; color: #ffffff !important; }
    .bg-area-engineering { background-color: #cb297b !important; border-color: #cb297b !important; color: #ffffff !important; }
    .bg-area-arts { background-color: #005493 !important; border-color: #005493 !important; color: #ffffff !important; }
    .bg-area-health { background-color: #4f8f00 !important; border-color: #4f8f00 !important; color: #ffffff !important; }
    .bg-area-tech { background-color: #ff9300 !important; border-color: #ff9300 !important; color: #ffffff !important; }
    .bg-area-humanities { background-color: #941100 !important; border-color: #941100 !important; color: #ffffff !important; }
    .bg-area-default { background-color: #e9ecef !important; border-color: #dee2e6 !important; color: #495057 !important; }

    .bg-area-business.course-card h6, .bg-area-engineering.course-card h6, .bg-area-arts.course-card h6, .bg-area-health.course-card h6, .bg-area-tech.course-card h6, .bg-area-humanities.course-card h6 {
		color: #ffffff !important;
	}
	
    .course-card small {
        color: inherit !important;
        opacity: 0.85;
    }
    
    .test-results-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .test-results-modal.show {
        opacity: 1;
        transform: scale(1);
    }
    
    .modal-content {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        max-width: 500px;
        width: 90%;
        text-align: center;
    }
    
    .testimonial-player {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(-50px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .testimonial-player.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .player-content {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        max-width: 600px;
        width: 90%;
        text-align: center;
    }
    
    .course-group-header {
        margin: 2rem 0 1rem 0;
        padding-left: 0.5rem; /* Align with cards */
    }
    
    .course-group-header h5 {
        color: var(--primary-blue);
        font-weight: 600;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--light-blue);
    }
    
    .search-result-animation {
        animation: slideInUp 0.4s ease forwards;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .loading {
        opacity: 0.6;
        pointer-events: none;
    }
    
    .error {
        color: #dc3545;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }
    
    .video-play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        z-index: 10;
    }
    
    .play-button-large {
        margin-bottom: 1rem;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .expandable-content {
        background-color: var(--off-white);
        border-top: 1px solid var(--light-blue);
    }
    
    .expandable-content h6 {
        color: var(--primary-blue);
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .expandable-content ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .expandable-content li {
        padding: 0.3rem 0;
        color: var(--dark-gray);
        position: relative;
        padding-left: 1.2rem;
    }
    
    .expandable-content li:before {
        content: "•";
        color: var(--light-blue);
        font-weight: bold;
        position: absolute;
        left: 0;
    }
	
/* Courses Section - Desktop Grid */
.courses-section {
    background-image: linear-gradient(to bottom, #f0f0f0, #f4f4f4, #f7f7f7, #fbfbfb, #ffffff);
    padding: 3rem 0;
}

.courses-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.search-section-desktop {
    margin-bottom: 3rem;
}

.btn-clear-search {
	position: absolute;
    top: 37%;
    right: 2.75rem;
    transform: translateY(-50%);
    border: 0;
    background: var(--dark-blue);
    border-radius: 10px;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;;
    line-height: 1.25rem;
    vertical-align: middle;
    box-sizing: border-box;
    transition: color 0.2s ease;
}

.btn-clear-search:hover {
    color: var(--white);
}

.search-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: 3px solid var(--light-blue);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    background-color: var(--superlight-gray);
}

.search-input:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 0.3rem rgba(39, 90, 169, 0.25);
}

.filter-section {
    margin-top: 1rem;
}

.form-check-input {
    border: 2px solid var(--light-blue);
    border-radius: 6px;
    width: 1.2rem;
    height: 1.2rem;
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-check-label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

.courses-grid-desktop {
    margin-top: 2rem;
}

.course-card {
    background-color: var(--white);
    border: 3px solid var(--light-blue);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    background-color: var(--light-blue) !important;
    color: var(--white) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.course-card h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.course-card:hover h6 {
    color: var(--white);
}

.course-card small {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.course-card:hover small {
    color: var(--white);
}

/* footer */
.footer{
  padding-top: 3rem;
  padding-bottom: 0;
}

@media (max-width: 728px) {
   .footer {
      padding-top: 2rem;
    }
	.footer .logo-footer {
		height: 80px;
	}
}
.footer {
  background-color: white;
}
.footer .row{
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer p{
  font-size: 0.8rem;
}
.footer h4{
  font-size: 1.25em !important;
  font-weight: bold;
  color: var(--primary-blue);
}
.footer .como-chegar p{
  margin: 0;
  padding: 0;
}
.footer .como-chegar p.destacado{
  color: var(--light-blue);
  font-weight: bold;
}
.footer .como-chegar img {
  height: 30px !important;
  width: auto !important;
  opacity: 0.5;
}
.footer .logo-footer {
  height: 120px;
  width: auto;
}
.footer .ouro a{
  color: #D4A23F;
  text-decoration: none;
}
.footer .ouro a:hover{
  color: #888;
}
.footer .ouro div{
  transition: all 0.35s ease;
}
.footer .ouro div:hover{
  transform: translateY(-5px);
}
#footer-social li {
  list-style: none;
  float: left;
}
#footer-social img {
  width: 22px;
  height: auto;
}
#footer-social a {
  display: inline-block;
  padding: 0px 2px;
  transition: all 0.2s ease;
  opacity: 0.5;
}
#footer-social a:hover {
  transform: scale(1.25);
  opacity: 1;
}
#footer .logos-group {
  max-height: 75px;
  max-width: 215px;
  width: auto !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px !important;
    padding: 1rem 2rem !important;
    transition: all 0.3s ease;
	margin: 0 !important;
}
.btn-primary, .btn-secondary, .btn-success {
	font-size: 1rem !important;
}
.btn-primary:hover {
    background-color: var(--cyan);
    border-color: var(--cyan);
	color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 1.1rem 2rem !important;
    font-size: 1.2rem !important;
    margin: 0.25rem 0;
    min-width: 245px;
}

.btn-secondary {
    background-color: var(--cyan);
    border-color: var(--cyan);
    color: var(--black);
    border-radius: 50px !important;
    padding: 0.6rem 2rem !important;
    font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
	transform: translateY(-2px);
}

/* Responsive Design for Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .personality-grid-desktop {
        max-width: 600px;
        gap: 1.5rem;
        gap: 1.5rem;
    }
    
    .personality-card {
        padding: 1.66rem;
    }
    
    .personality-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .vestibular-title {
        font-size: 2.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .personality-grid-desktop {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .video-section-desktop .row {
        flex-direction: column-reverse;
    }
    
    .video-title {
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        position: relative;
        margin-top: 0;
    }
    
    .hero-section {
        margin-top: 0;
    }
    
    .vestibular-title {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .nav-tabs .nav-link {
        margin: 0.2rem 0;
        text-align: center;
    }
    
    .courses-grid-desktop .col-xl-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 0.3rem rgba(39, 90, 169, 0.25);
}

/* Print Styles */
@media print {
    .digital-overlay,
    .video-overlay,
    .testimonial-overlay {
        display: none;
    }
    
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        min-height: auto;
        page-break-after: always;
    }
}