html,
body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* Visibility Utilities */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

.main-wrapper {
    width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
}

/* Sections */
header.banner {
    width: 100%;
    background-image: url('images/bghero.png');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    max-height: 1098px;
    /* aspect-ratio: 1920 / 1098; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 600px !important;
    /* Ajuste conforme necessário */
    width: 100%;
    height: auto;
    filter: drop-shadow(0 45px 45px rgba(0, 0, 0, 50));
}

.video-section {
    padding: 60px;
}

.slider-section {
    background: white;
    padding: 60px 0;
}

.section-title-img {
    margin: 0 auto 30px auto;
    max-width: 80%;
}

/* Contact Form Styles */
.form-section {
    background-color: #fff;
    padding: 60px 0;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form {
    width: 100%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #1a3b6b;
    font-size: 18px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #1a3b6b;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 5px rgba(26, 59, 107, 0.3);
}

.contact-form button {
    background-color: #1a3b6b;
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(26, 59, 107, 0.3);
    display: block;
    margin: 20px auto 0 auto;
}

.contact-form button:hover {
    background-color: #152d52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 59, 107, 0.4);
}

/* Contact Footer Styles */
.contact-footer {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a3b6b;
}

.contact-info {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.contact-info b {
    color: #1a3b6b;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    background-color: #f48c1e;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #e67e22;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-wrapper {
    height: auto;
}

/* Custom Scrollbar Styles */
.swiper-scrollbar {
    background: #e67e22;
    height: 10px !important;
    bottom: 0px !important;
    left: 0;
    width: 100%;
}

.swiper-scrollbar-drag {
    background: #1f3a60;
    border-radius: 4px;
}

/* Page Sections */
.excelencia {
    background-color: #1a3b6b;
    padding: 0 0 80px 0;
    text-align: center;
}

.excelencia .container img {
    margin-bottom: 30px;
}

.excelencia-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.excelencia-grid img {
    margin: 0 !important;
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .excelencia-grid {
        max-width: 100%;
        gap: 25px;
        padding: 0 20px;
        overflow: hidden;
    }

    .excelencia-grid img {
        width: calc(50% - 13px);
        max-width: none;
    }
}

.btn-container {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}

.btn-ead {
    background-color: #f48c1e;
    color: #fff;
    padding: 15px 45px;
    border-radius: 12px;
    display: inline-block;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: none;
    cursor: pointer;
}

.btn-ead:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

.compromisso {
    width: 100%;
}

.compromisso-header {
    background-image: url('images/compromisso.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.compromisso-title-overlay {
    display: block;
    height: 75px;
    margin: 0 auto;
}

.compromisso-body {
    background-color: #f48c1e;
    padding: 60px 0 80px 0;
}

.section-banner {
    margin: 0 auto;
}

.compromisso-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0 20px;
}

.pill-title {
    background-color: #1f3a60;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.compromisso-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.depoimentos {
    padding: 80px 0;
    background-color: #fff;
}

.img-depoimentos {
    width: 510px !important;
    margin: 0 auto 50px auto !important;
}

.canal-section {
    padding: 60px 0;
    background-color: #fff;
}

.img-canal {
    width: 800px;
    margin: 0 auto;
}

/* New Testimonials Styles */
.new-depoimentos-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.new-depoimentos-title {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1f3a60;
    line-height: 1.1;
    font-weight: 800;
    text-transform: none;
}

.new-depoimentos-title span {
    color: #f48c1e;
    display: block;
}

.depoimento-item {
    display: flex;
    gap: 40px;
    margin: 0 120px;
    margin-bottom: 40px;
    align-items: flex-start;
    padding: 20px 0;
}

.swiper-slide .depoimento-item {
    margin-bottom: 0px;
}

.depoimento-aside {
    flex: 0 0 320px;
    text-align: left;
}

.depoimento-avatar {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 8px solid #f48c1e;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-meta {
    font-size: 16px;
    color: #1f3a60;
    line-height: 1.2;
    text-align: left;
}

.depoimento-meta p {
    margin: 2px 0;
}

.depoimento-meta strong {
    color: #f48c1e;
    font-weight: 800;
}

.depoimento-content {
    flex: 1;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quote-image {
    width: 40px !important;
    max-width: 40px !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
}

.quote-image.top {
    margin-bottom: 10px !important;
}

.quote-image.bottom {
    margin-top: 10px !important;
    align-self: flex-end;
}

.quote-text {
    font-size: 22px;
    color: #1f3a60;
    line-height: 1.4;
    font-weight: 500;
}

.quote-text p {
    margin-bottom: 15px;
}

.new-depoimentos-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-veja-mais {
    background: linear-gradient(to right, #f48c1e, #e67e22);
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(244, 140, 30, 0.4);
    transition: all 0.3s ease;
}

.btn-veja-mais:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(244, 140, 30, 0.5);
    background: linear-gradient(to right, #e67e22, #f48c1e);
}

/* Expanded View */
.new-depoimentos-container.is-expanded .swiper {
    overflow: visible;
}

.new-depoimentos-container.is-expanded .swiper-wrapper {
    display: flex;
    flex-direction: column;
    height: auto !important;
    transform: none !important;
}

.new-depoimentos-container.is-expanded .swiper-slide {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 40px;
}

.new-depoimentos-container.is-expanded .swiper-button-next,
.new-depoimentos-container.is-expanded .swiper-button-prev,
.new-depoimentos-container.is-expanded .swiper-pagination {
    display: none !important;
}

/* Slider Navigation Styles */
.testimonialSwiper {
    padding: 0 60px 60px 60px !important;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    color: #f48c1e;
    top: 50%;
    transform: translateY(-50%);
    background: #f2f2f2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
    background: #e6e6e6;
}

.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.testimonialSwiper .swiper-pagination {
    bottom: 10px !important;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #f48c1e;
}

/* Specific Static Mobile Testimonials */
.section-testimonials-mobile {
    padding: 60px 0;
    background-color: #fff;
}

.mobile-depoimentos-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.1;
    text-transform: none;
}

.mobile-depoimentos-title .orange {
    color: #f48c1e;
    font-size: 34px;
    font-weight: 800;
    display: block;
}

.mobile-depoimentos-title .blue {
    color: #1f3a60;
    font-size: 34px;
    font-weight: 800;
    display: block;
}

.mobile-depoimentos-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 0 25px;
}

.mobile-depoimento-card {
    display: flex;
    flex-direction: column;
}

.mobile-avatar-frame {
    width: 320px;
    height: 320px;
    border: 10px solid #f48c1e;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 40px auto;
}

.mobile-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-meta {
    text-align: left;
    margin-bottom: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-meta p {
    margin: 8px 0;
    font-size: 20px;
    color: #1f3a60;
    font-weight: bold;
}

.mobile-meta .label {
    color: #f48c1e;
}

.mobile-quote-box {
    text-align: left;
    display: block;
}

.mobile-quote-icon {
    width: 50px !important;
    display: block;
}

.mobile-quote-icon.top {
    margin-bottom: 15px;
}

.mobile-quote-icon.bottom {
    margin-top: 15px;
    margin-left: auto;
}

.mobile-quote-text {
    font-size: 21px;
    line-height: 1.4;
    color: #1f3a60;
    font-weight: 500;
}

.mobile-quote-text p {
    margin-bottom: 15px;
}

/* Footer Section */
.footer-logos {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.orange-strip {
    background-color: #f48c1e;
    height: 80px;
    width: 100%;
}

/* Mobile Adjustments (Global) */
@media (max-width: 768px) {
    .contact-info {
        font-size: 18px;
    }

    .img-canal {
        width: 100%;
    }

    .pill-title {
        font-size: 16px;
        padding: 10px 20px;
    }

    .btn-ead {
        font-size: 18px;
        padding: 12px 30px;
    }

    .img-depoimentos {
        width: 80% !important;
    }

    .video-section {
        padding: 0 20px;
    }
}