/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Cabeçalho */
.second-level-mobile-component {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    text-align: center;
}

/* Banner */
.banner-principal {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.anhanguera.com/hubfs/Imported_Blog_Media/estudante-anhanguera-1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.banner-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Novo Banner Moderno */
.banner-principal-novo {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa600 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.15;
}

.shape-1 {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid #fff;
    top: -50px;
    left: 10%;
    transform: rotate(25deg);
}

.shape-2 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #fff;
    top: 50%;
    right: 15%;
    transform: rotate(-15deg);
}

.shape-3 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 138px solid #fff;
    bottom: 10%;
    left: 5%;
    transform: rotate(45deg);
}

.shape-4 {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 207px solid #fff;
    top: 20%;
    right: 5%;
    transform: rotate(-30deg);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.logo-banner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-banner i {
    color: white;
    font-size: 1.2rem;
}

.logo-banner .logo-white {
    filter: brightness(0) invert(1);
    width: 150px;
}

.banner-title-novo {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-subtitle-novo {
    color: white;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
}

.banner-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1rem;
}

.benefit-item i {
    font-size: 1.3rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 5px;
}

.btn-banner-cta {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    transition: left 0.3s ease;
}

.btn-banner-cta:hover::before {
    left: 0;
}

.btn-banner-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.btn-banner-cta i,
.btn-banner-cta span {
    position: relative;
    z-index: 1;
}

.btn-banner-cta i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

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

.banner-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #2c3e50;
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-label {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-highlight {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: lowercase;
}

.banner-image {
    position: relative;
    z-index: 2;
}

.student-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.student-img:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 768px) {
    .banner-principal {
        height: 400px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-principal-novo {
        padding: 40px 0;
    }
    
    .banner-title-novo {
        font-size: 2rem;
    }
    
    .banner-subtitle-novo {
        font-size: 1.1rem;
    }
    
    .btn-banner-cta {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .banner-badge {
        position: static;
        margin-top: 20px;
        transform: rotate(0deg);
        display: inline-block;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
}

/* Formulários */
.form-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin: 20px auto;
    max-width: 1000px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-control-lg, .form-select-lg {
    height: 58px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.form-control-lg:focus, .form-select-lg:focus {
    border-color: #ff5722;
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

.btn-inscreva {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa600 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-inscreva::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffa600 0%, #ff8c42 50%, #ff6b35 100%);
    transition: left 0.3s ease;
}

.btn-inscreva:hover::before {
    left: 0;
}

.btn-inscreva:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-inscreva span,
.btn-inscreva i {
    position: relative;
    z-index: 1;
}

/* Cards de cursos */
.card-curso {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    height: 100%;
    overflow: hidden;
}

.card-curso:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-curso .card-title {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-curso .card-header {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    border-bottom: none;
}

.card-curso .badge {
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid #ddd;
}

.card-curso .text-primary {
    color: #ff6b35 !important;
}

.price-tag {
    padding: 10px 0;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
}

.card-curso .card-header {
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa600);
    border-bottom: none;
}

.courses-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-header .divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #ff6b35, #ff8c42, #ffa600);
    border-radius: 2px;
}

/* Seção de benefícios */
.benefits-section {
    padding: 60px 0;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 166, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.text-primary {
    color: #ff6b35 !important;
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Rodapé */
footer {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #f1f1f1;
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}/* Seção
 de FAQ */
.faq-section {
    background-color: #fff;
    padding: 60px 0;
}

.accordion-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-button {
    font-weight: 600;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    color: #ff5722;
    background-color: rgba(255, 87, 34, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 87, 34, 0.1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff5722'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
}