/* Anhembi Morumbi - Landing Page CSS v1.8 - Radio buttons sem quebra de linha */
:root {
    --primary: #006B54;
    --secondary: #00CDA5;
    --accent: #00A88F;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F0FFFE;
    --bg-light: #E6F9F7;
    --border: #D2D2D7;
    --success: #34C759;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 107, 84, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 107, 84, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 107, 84, 0.16);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-logo img {
    height: 45px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--primary);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.navbar-toggle i {
    pointer-events: none;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    width: 100%;
}

/* Marquee Banner */
.marquee-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 16px 0;
    overflow: hidden;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 107, 84, 0.2);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marquee-item.highlight-text {
    color: var(--secondary);
    font-weight: 800;
    font-size: 18px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.marquee-separator {
    color: var(--secondary);
    font-size: 18px;
    opacity: 0.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 125px;
    padding: 80px 40px 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 205, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.hero-content {
    padding-top: 20px;
}

.hero-content-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--primary);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content .highlight {
    color: var(--secondary);
    display: inline-block;
}

.hero-subline {
    display: inline-block;
    white-space: nowrap;
}

.hero-tagline {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
}

.hero-features-list li i {
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
}

/* Hero - Special Conditions */
.hero-special-conditions {
    margin: 40px 0 36px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.conditions-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: left;
}

.conditions-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.condition-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 1px solid #e0f2f0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 107, 84, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 107, 84, 0.15);
    border-color: var(--primary);
}

.condition-card:hover::before {
    transform: scaleX(1);
}

.condition-card.clickable {
    cursor: pointer;
}

.condition-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.condition-card:hover .condition-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 107, 84, 0.3);
}

.condition-icon i {
    font-size: 22px;
    color: var(--white);
}

.condition-content {
    text-align: center;
    width: 100%;
}

.condition-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 4px;
}

.condition-value strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.condition-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    margin-top: 2px;
}

/* Form */
.hero-form-wrapper {
    align-self: start;
}

.hero-form {
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 205, 165, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 2;
}

.radio-option label {
    display: block;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    pointer-events: none;
    white-space: nowrap;
}

.radio-option input[type="radio"]:checked ~ label {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    display: none;
    background: var(--success);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 80px 40px 60px;
    background: var(--bg-primary);
}

/* Motivation Video Section */
.video-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 40px;
    align-items: center;
}

.video-copy {
    max-width: 600px;
    text-align: left;
}

.video-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 32px;
}

.video-benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    text-align: left;
}

.video-benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.5;
}

.video-benefits-list li i {
    font-size: 24px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    color: var(--primary);
}

.video-benefits-list li span {
    flex: 1;
    color: var(--primary);
}

.video-cta-text {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 24px;
    text-align: left;
}

.video-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 107, 84, 0.3);
}

.video-cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 107, 84, 0.4);
}

.video-cta-button i {
    font-size: 18px;
    color: var(--secondary);
}

.video-wrapper {
    max-width: 380px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.video-frame {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    display: block;
}

/* IARA Section */
.iara-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #004d3d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.iara-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.iara-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.iara-content {
    text-align: center;
}

.iara-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.iara-icon i {
    color: var(--secondary);
}

.iara-section .section-title {
    color: var(--white);
    margin-bottom: 8px;
}

.iara-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 24px;
}

.iara-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.iara-description strong {
    color: var(--secondary);
    font-weight: 600;
}

.iara-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.iara-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 180px;
}

.iara-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.iara-feature-item i {
    font-size: 32px;
    color: var(--secondary);
}

.iara-feature-item span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Formas de Ingresso Section */
.formas-ingresso-section {
    padding: 80px 40px;
    background: var(--bg-primary);
}

.formas-ingresso-container {
    max-width: 1200px;
    margin: 0 auto;
}

.formas-ingresso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.forma-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    cursor: pointer;
}

.forma-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.forma-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.forma-icon i {
    font-size: 28px;
    color: var(--white);
}

.forma-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.forma-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-color: var(--secondary);
}

.benefit-card.featured .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-card.featured .benefit-description {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: inherit;
}

.benefit-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Polos Section */
.polos-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.polos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.polos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.polo-item {
    background: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.polo-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.polo-header {
    width: 100%;
    padding: 16px 22px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.polo-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
}

.polo-icon {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.polo-details {
    padding: 0 22px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.polo-address,
.polo-hours {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.polo-hours {
    margin-top: 4px;
}

.polo-item.active .polo-details {
    padding: 8px 22px 16px;
    max-height: 200px;
}

.polo-item.active .polo-icon {
    transform: rotate(180deg);
}

/* Campus Image Section - imagem inteira e responsiva */
.campus-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--bg-primary);
}

.campus-section img {
    width: 100%;
    height: auto;
    display: block;
}

.image-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--bg-primary);
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Courses Page */
.courses-page {
    padding: 140px 40px 100px;
    background: var(--bg-light);
    min-height: 100vh;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* Courses Section */
.courses-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.courses-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.course-tab {
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-tab:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.course-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Search Box */
.courses-search-container {
    margin: 32px 0;
    text-align: center;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 77, 150, 0.1);
}

.search-box i.fa-search {
    color: var(--text-light);
    font-size: 18px;
    margin-right: 12px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-dark);
    background: transparent;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.clear-search {
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-light);
    margin-left: 8px;
}

.clear-search:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.search-results-count {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.no-results p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.no-results small {
    font-size: 14px;
    color: var(--text-light);
}

.course-card.hidden {
    display: none;
}

.courses-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.courses-content.active {
    display: block;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.course-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    text-align: center;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.course-card:hover .course-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.course-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.course-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.courses-cta {
    text-align: center;
    margin-top: 60px;
}

.courses-cta p {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

/* FAQ Section */
.faq-section {
    padding: 60px 40px 80px;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

.faq-item {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: var(--secondary);
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 40px 40px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cta h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.footer-cta p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    margin-top: 48px;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.7;
}

/* WhatsApp Float */
.whatsapp-float-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-form {
        position: static;
    }

    .conditions-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .condition-card {
        padding: 18px 14px;
        min-height: 110px;
    }

    .condition-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .condition-icon i {
        font-size: 20px;
    }

    .condition-value {
        font-size: 15px;
    }

    .condition-value strong {
        font-size: 18px;
    }

    .condition-label {
        font-size: 11px;
    }

    .navbar-menu {
        gap: 20px;
    }

    .search-box {
        padding: 10px 20px;
    }

    .search-box input {
        font-size: 15px;
    }

    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .radio-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 14px 20px;
        column-gap: 12px;
    }

    .navbar-logo img {
        height: 32px;
    }

    .navbar-toggle {
        display: inline-flex;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        right: 20px;
        background: var(--bg-primary);
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        padding: 10px 14px;
        display: none;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
        z-index: 1001;
    }

    body.nav-open .navbar-menu {
        display: flex;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 2px;
    }

    .marquee-banner {
        top: 65px;
        padding: 14px 0;
    }

    .marquee-item {
        font-size: 15px;
        padding: 0 20px;
        letter-spacing: 0.6px;
    }

    .marquee-item.highlight-text {
        font-size: 16px;
    }

    .marquee-content {
        animation: marquee 25s linear infinite;
    }

    .hero {
        padding: 60px 24px 32px;
        margin-top: 117px;
    }

    .courses-page {
        padding: 120px 24px 80px;
    }

    .courses-search-container {
        margin: 24px 0;
    }

    .search-box {
        padding: 10px 16px;
    }

    .search-box input {
        font-size: 14px;
    }

    .search-box i.fa-search {
        font-size: 16px;
        margin-right: 10px;
    }

    .clear-search {
        width: 26px;
        height: 26px;
    }

    .search-results-count {
        font-size: 13px;
    }

    .no-results {
        padding: 40px 20px;
    }

    .no-results i {
        font-size: 36px;
    }

    .no-results p {
        font-size: 16px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .hero-content {
        padding-top: 10px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
        text-align: center;
    }

    .hero-subline {
        white-space: normal;
    }

    .hero-tagline {
        font-size: 18px;
        text-align: center;
    }

    .hero-features-list {
        grid-template-columns: 1fr;
        justify-items: flex-start;
        max-width: 320px;
        margin: 0 auto 32px;
    }

    .video-section {
        padding: 60px 24px;
    }

    .video-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-copy {
        max-width: 100%;
        text-align: left;
    }

    .video-benefits-list {
        margin: 32px 0;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .video-benefits-list li {
        font-size: 16px;
        justify-content: flex-start;
        gap: 14px;
    }

    .video-benefits-list li i {
        font-size: 22px;
        width: 26px;
    }

    .video-cta-text {
        font-size: 18px;
        margin-top: 40px;
        text-align: left;
    }

    .video-cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .iara-section {
        padding: 60px 24px;
    }

    .iara-icon {
        font-size: 48px;
    }

    .iara-features {
        gap: 16px;
        margin-top: 32px;
    }

    .iara-feature-item {
        min-width: 140px;
        padding: 16px 12px;
    }

    .iara-feature-item i {
        font-size: 28px;
    }

    .iara-description {
        font-size: 16px;
    }

    .formas-ingresso-section {
        padding: 60px 24px;
    }

    .formas-ingresso-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .forma-card {
        padding: 24px 20px;
    }

    .forma-icon {
        width: 56px;
        height: 56px;
    }

    .forma-icon i {
        font-size: 24px;
    }

    .forma-card h3 {
        font-size: 18px;
    }

    .conditions-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .condition-card {
        padding: 18px 16px;
        min-height: 100px;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .condition-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        margin-right: 14px;
        flex-shrink: 0;
    }

    .condition-icon i {
        font-size: 18px;
    }

    .condition-content {
        text-align: left;
        flex: 1;
    }

    .condition-value {
        font-size: 15px;
    }

    .condition-value strong {
        font-size: 18px;
    }

    .condition-label {
        font-size: 11px;
    }

    .conditions-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .condition-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .benefits,
    .polos-section,
    .courses-section,
    .faq-section {
        padding: 80px 24px;
        margin-top: 0;
    }

    .courses-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .course-tab {
        justify-content: center;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-form {
        padding: 32px 24px;
    }

    .form-title {
        font-size: 24px;
    }

    .footer-cta h3 {
        font-size: 32px;
    }

    .footer-cta p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
}
