/* Alinhamento mobile/tablet: rodapé e textos à esquerda */
@media (max-width: 900px) {

    .footer-container,
    .footer-brand,
    .footer-brand-text,
    .footer-links,
    .footer-links ul,
    .footer-links ul li,
    .footer-links ul li a,
    .footer-contact,
    .footer-contact ul,
    .footer-contact ul li,
    .footer-contact ul li a,
    .footer-social,
    .footer-social h4,
    .footer-copy,
    .footer-social .social-icons {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .footer-brand img.logo-img {
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
    }

    .footer-links ul,
    .footer-contact ul {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .footer-social .social-icons {
        display: flex;
        gap: 1rem;
        justify-content: flex-start !important;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-social h4 {
        text-align: left !important;
        margin-left: 0 !important;
    }

    .footer-copy p {
        text-align: left !important;
        margin-left: 0 !important;
    }

    .about-content,
    .hero-content,
    .cta {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .about-content h2,
    .about-content h3,
    .about-content p,
    .hero-content h1,
    .hero-content p,
    .cta h2,
    .cta p {
        text-align: center !important;
        margin-left: 0 !important;
    }
}

/* Paleta EUA (cores sólidas) */
:root {
    --azul-usa: #1e3a8a;
    --azul-usa-claro: #2563eb;
    --vermelho-usa: #dc2626;
    --branco: #fff;
    --dourado: #facc15;
    --cinza-claro: #f1f5f9;
    --cinza-medio: #e5e7eb;
}

body {
    background: var(--cinza-claro);
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
}

@media (max-width: 900px) {
    body {
        padding-top: 56px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
}

main>section,
.about-content,
.hero-content,
.footer-container,
.footer-copy {
    text-align: left;
}

main p,
main ul,
main ol,
.about-content p,
.about-content ul,
.about-content ol {
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 5px solid var(--vermelho-usa);
    padding-left: 0.7rem;
}

.hero {
    background: var(--azul-usa);
    color: var(--branco);
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.10);
    margin-bottom: 2rem;
}

.hero-text h1 {
    color: var(--branco);
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(30, 58, 138, 0.10);
}

.hero-text p {
    color: var(--cinza-medio);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: #e53935;
    /* vermelho destacado */
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    margin: 0 auto;
    display: inline-block;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.hero-cta .btn-primary {
    margin: 0 auto;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--azul-usa);
    color: #fff;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #e53935;
    color: #fff;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.about-card {
    background: var(--branco);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(30, 58, 138, 0.10);
    padding: 2rem 1.5rem;
    min-width: 180px;
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
    border-top: 5px solid var(--azul-usa);
    border-bottom: 3px solid var(--vermelho-usa);
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 1rem;
}

.about-card:hover {
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.13);
    transform: translateY(-4px) scale(1.03);
    border-top: 5px solid var(--vermelho-usa);
    border-bottom: 3px solid var(--azul-usa);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    color: var(--vermelho-usa);
}

ul,
ol {
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.menu li a,
.footer-links ul li a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.menu li a:hover,
.footer-links ul li a:hover {
    color: var(--dourado);
    text-shadow: 0 2px 8px rgba(30, 58, 138, 0.10);
}

.submenu-list {
    background: var(--branco);
    color: var(--azul-usa);
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.10);
}

.submenu-list li a {
    color: var(--azul-usa);
    border-bottom: 1px solid var(--cinza-medio);
}

.submenu-list li a:hover {
    background: var(--azul-usa-claro);
    color: var(--branco);
}

.footer {
    background: var(--azul-usa);
    color: var(--branco);
    box-shadow: 0 -2px 16px rgba(30, 58, 138, 0.08);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--dourado);
}

.footer-copy {
    color: #e5e7eb;
}

/* Seções alternadas */
.about,
.cta {
    background: var(--branco);
    border-radius: 1.5rem;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.06);
    margin: 2rem 0;
    padding: 2rem 1.5rem;
}

.cta {
    background: var(--vermelho-usa);
    color: var(--branco);
    text-align: center;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
}

input,
select,
textarea {
    border: 1.5px solid var(--azul-usa-claro);
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border: 1.5px solid var(--vermelho-usa);
}

/* HEADER E FOOTER - PADRÃO EUA E CORREÇÃO DE BUGS */
:root {
    --azul-usa: #1e3a8a;
    --azul-usa-claro: #2563eb;
    --vermelho-usa: #dc2626;
    --branco: #fff;
    --dourado: #facc15;
    --cinza-claro: #f1f5f9;
    --cinza-medio: #e5e7eb;
}

body {
    background: var(--cinza-claro);
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
}

@media (max-width: 900px) {
    body {
        padding-top: 56px;
    }
}

.header {
    background: var(--azul-usa);
    color: var(--branco);
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 48px;
    max-width: 180px;
    width: auto;
    vertical-align: middle;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    justify-content: flex-end;
    background: none;
    position: static;
    width: auto;
    box-shadow: none;
}

.menu li {
    position: relative;
    margin: 0;
}

.menu li a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: 0.4rem;
    transition: background 0.2s, color 0.2s;
    display: block;
    background: none;
}

.menu li a:hover {
    background: var(--dourado);
    color: var(--azul-usa);
}

.submenu-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--branco);
    color: var(--azul-usa);
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.13);
    z-index: 200;
    padding: 0.5rem 0;
    text-align: left;
}

.submenu:hover>.submenu-list,
.submenu.open>.submenu-list {
    display: block;
}

.submenu-list li a {
    color: var(--azul-usa);
    border-bottom: 1px solid var(--cinza-medio);
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    font-weight: 500;
}

.submenu-list li:last-child a {
    border-bottom: none;
}

.submenu-list li a:hover {
    background: var(--azul-usa-claro);
    color: var(--branco);
}

@media (max-width: 900px) {
    .header {
        height: 64px;
        min-height: 64px;
        padding: 0;
    }

    .nav {
        height: 64px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        height: 64px;
        display: flex;
        align-items: center;
    }

    .logo-img {
        max-width: 110px;
        height: 44px;
        margin: 0;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 44px;
        width: 48px;
        margin-left: 12px;
        margin-right: 16px;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        z-index: 1201;
    }

    .mobile-menu-btn span {
        display: block;
        width: 28px;
        height: 4px;
        background: var(--dourado);
        margin: 4px 0;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav {
        flex-direction: row;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100vw;
        background: var(--azul-usa);
        z-index: 999;
        display: none;
        padding: 1rem 0;
        box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
        gap: 0.5rem;
        justify-content: center;
    }

    .menu.menu-open {
        display: flex;
    }

    .menu li {
        width: 100%;
        margin: 0.2rem 0;
        text-align: center;
    }

    .menu li a {
        color: var(--branco) !important;
        background: none;
        font-weight: 600;
        padding: 0.7rem 1.2rem;
        border-radius: 0.4rem;
        transition: background 0.2s, color 0.2s;
        display: block;
        text-align: center;
    }

    .menu li a:hover {
        color: var(--dourado) !important;
        background: none;
    }

    .submenu-list {
        position: static;
        min-width: 0;
        width: 100vw;
        left: 0;
        background: var(--branco);
        color: var(--azul-usa);
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0.5rem 0;
        z-index: 2100;
        text-align: center;
    }

    .submenu-list li a {
        color: var(--azul-usa) !important;
        background: none;
        padding: 0.7rem 1.2rem;
        border-radius: 0.4rem;
        font-weight: 600;
        transition: background 0.2s, color 0.2s;
        display: block;
        text-align: center;
    }

    .submenu-list li a:hover {
        color: var(--dourado) !important;
        background: none;
    }
}

@media (min-width: 901px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-menu-btn span {
        display: none !important;
    }
}

/* FOOTER - TEXTOS E ÍCONES BRANCOS, HOVER AMARELO */
.footer {
    background: var(--azul-usa);
    color: var(--branco);
    width: 100vw;
    box-shadow: 0 -2px 16px rgba(30, 58, 138, 0.08);
    margin: 0;
    padding: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1rem 1.5rem;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1 1 180px;
    min-width: 160px;
    margin-bottom: 1.2rem;
}

.footer-links ul,
.footer-contact ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--dourado);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.footer-links ul li a,
.footer-contact ul li a,
.footer-brand p,
.footer-copy {
    color: var(--branco) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--dourado) !important;
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.footer-social .social-icons a img {
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}

.footer-social .social-icons a:hover img,
.footer-social .social-icons a:focus img {
    filter: brightness(1) sepia(1) hue-rotate(45deg) saturate(5) brightness(1.2);
}

.footer-copy {
    color: var(--branco);
    text-align: center;
    padding-bottom: 1rem;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0.5rem 1rem 0.5rem;
        gap: 1.2rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        min-width: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-links ul,
    .footer-contact ul {
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

.hero-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(30, 58, 138, 0.10);
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    .hero-image img {
        max-width: 320px;
    }
}

@media (max-width: 600px) {
    .hero-image img {
        max-width: 220px;
    }
}

.btn-google-review {
    background: #fff;
    color: #4285F4;
    border: 2px solid #4285F4;
    border-radius: 2rem;
    padding: 0.8rem 2.1rem;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    outline: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-google-review:hover,
.btn-google-review:focus {
    background: #e53935;
    color: #fff;
    border-color: #e53935;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.12);
}

.depoimentos-carousel-container {
    max-width: 540px;
    margin: 2.5rem auto 1.5rem auto;
    position: relative;
}

.depoimentos-carousel {
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}

.depoimento-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px rgba(30, 58, 138, 0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin: 0 auto;
    max-width: 420px;
    min-width: 220px;
    text-align: center;
    display: block;
    transition: box-shadow 0.2s, transform 0.2s;
}

.depoimento-card:hover {
    box-shadow: 0 6px 32px rgba(229, 57, 53, 0.13);
    transform: translateY(-2px) scale(1.03);
}

.depoimento-stars {
    color: #fbc02d;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.1em;
}

.depoimento-text {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 1.1rem;
    font-style: italic;
}

.depoimento-nome {
    font-weight: 700;
    color: var(--azul-usa, #1e3a8a);
    font-size: 1.05rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.10);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.prev {
    left: -1.2rem;
}

.carousel-btn.next {
    right: -1.2rem;
}

.carousel-btn:hover,
.carousel-btn:focus {
    background: var(--azul-usa, #1e3a8a);
    color: #fff;
}

@media (max-width: 600px) {
    .depoimentos-carousel-container {
        max-width: 98vw;
    }

    .depoimento-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        font-size: 0.98rem;
    }

    .carousel-btn.prev {
        left: 0;
    }

    .carousel-btn.next {
        right: 0;
    }
}

/* Equipe - Cards */
.team {
    padding: 48px 0 32px 0;
    background: #f5f5f5;
    text-align: center;
}

.team h2 {
    color: #002868;
    margin-bottom: 32px;
    font-size: 2.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 32px 20px 24px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
}

.team-photo {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #002868;
    margin-bottom: 16px;
    transition: transform 0.25s cubic-bezier(.4, 1.5, .5, 1), box-shadow 0.18s;
}

.team-card:hover .team-photo {
    transform: scale(1.13) rotate(-2deg);
    box-shadow: 0 4px 24px 0 rgba(0, 40, 104, 0.18);
    z-index: 2;
}

.team-card h3 {
    margin: 8px 0 4px 0;
    color: #c8102e;
    font-size: 1.2rem;
}

.team-card p {
    margin: 0 0 6px 0;
    color: #333;
    font-size: 1rem;
}

.team-bio {
    color: #666;
    font-size: 0.98rem;
    margin-top: 6px;
}

/* Diferenciais */
.diferenciais {
    background: #002868;
    color: #fff;
    padding: 40px 0 32px 0;
    text-align: center;
}

.diferenciais h2 {
    color: #ffd700;
    margin-bottom: 28px;
    font-size: 2rem;
}

.diferenciais-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.diferencial-item {
    background: #fff;
    color: #002868;
    border-radius: 14px;
    padding: 24px 32px;
    min-width: 180px;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}

.diferencial-item:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}

.diferencial-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

@media (max-width: 700px) {
    .team {
        padding: 32px 0 16px 0;
    }

    .team-grid {
        gap: 18px;
    }

    .diferenciais {
        padding: 28px 0 16px 0;
    }

    .diferenciais-grid {
        gap: 16px;
    }

    .diferencial-item {
        padding: 16px 12px;
        min-width: 120px;
        font-size: 0.98rem;
    }
}

/* Carrossel de Instalações */
.carousel {
    width: 750px;
    height: 550px;
    max-width: 100vw;
    max-height: 80vh;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f8fafc;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(30, 58, 138, 0.10);
    overflow: hidden;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(30, 58, 138, 0.10);
    margin: 0 auto;
    display: none;
}

.carousel-slide img.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(30, 58, 138, 0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
    transition: background 0.2s, opacity 0.2s;
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-btn:focus {
    outline: 2px solid #1d4ed8;
}

.carousel-desc {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    margin-top: 0.5rem;
    background: #2563eb;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 0 0 1.2rem 1.2rem;
    font-weight: 500;
    box-sizing: border-box;
    position: static;
}

@media (max-width: 900px) {
    .carousel {
        width: 480px;
        height: 352px;
    }

    .carousel-desc {
        max-width: 480px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .carousel {
        width: 300px;
        height: 220px;
    }

    .carousel-desc {
        max-width: 300px;
        font-size: 0.95rem;
    }
}

/* Bloco de infraestrutura (texto + vídeo) */
.infra-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    margin: 2.5rem auto 1.5rem auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.infra-text {
    flex: 1 1 320px;
    min-width: 220px;
    font-size: 1.08rem;
    color: #222;
    line-height: 1.6;
}

.infra-text p {
    margin-bottom: 1.1rem;
}

/* Proporção 16:9 para vídeo de infraestrutura */
.infra-video {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: auto;
    padding-bottom: 56.25%;
    /* 16:9 */
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infra-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 104, 0.82);
    color: #ffd700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.18rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s, opacity 0.2s;
    text-align: center;
    opacity: 0.97;
    box-sizing: border-box;
}

.video-overlay:hover,
.video-overlay:focus {
    background: rgba(200, 16, 46, 0.92);
    color: #fff;
    outline: 2px solid #ffd700;
    opacity: 1;
}

.overlay-text {
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

/* Título e subtítulo da seção de infraestrutura */
.infra-section-title {
    text-align: center;
    margin: 2.5rem 0 1.2rem 0;
}

.infra-section-title h2 {
    color: #002868;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.infra-section-sub {
    color: #c8102e;
    font-size: 1.13rem;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .infra-section-title {
        margin: 1.2rem 0 0.7rem 0;
    }

    .infra-section-title h2 {
        font-size: 1.25rem;
    }

    .infra-section-sub {
        font-size: 0.98rem;
    }
}

/* Desktop: vídeo ocupa toda a largura e fica abaixo do texto, mas com padding lateral */
@media (min-width: 901px) {
    .infra-block {
        gap: 8px;
        max-width: 900px;
        margin: 0 auto;
    }

    .infra-text {
        max-width: 900px;
        margin: 0 auto;
    }

    .infra-video {
        max-width: 900px;
        width: 100%;
        min-width: 0;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        border-radius: 0;
    }

    .infra-video iframe,
    .video-overlay {
        border-radius: 0;
    }
}

@media (max-width: 900px) {
    .infra-block {
        gap: 8px;
        max-width: 98vw;
    }

    .infra-video {
        max-width: 100vw;
        padding-left: 4vw;
        padding-right: 4vw;
        box-sizing: border-box;
        padding-bottom: 56.25%;
        min-width: 0;
    }

    .infra-video iframe,
    .video-overlay {
        border-radius: 1rem;
    }
}

@media (max-width: 600px) {
    .infra-block {
        margin: 1.2rem 0 1rem 0;
        gap: 6px;
    }

    .infra-text {
        font-size: 0.98rem;
    }

    .infra-video {
        padding-bottom: 56.25%;
        min-width: 0;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .video-overlay {
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
    }
}

/* Matrícula - Card visual do formulário */
.pre-matricula-form {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0, 40, 104, 0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin: 2.5rem auto 1.5rem auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.pre-matricula-form label {
    font-weight: 500;
    color: #002868;
    font-size: 1.05rem;
}

.pre-matricula-form input,
.pre-matricula-form select {
    margin-top: 0.3rem;
    border: 1.5px solid #cfd8dc;
    border-radius: 0.5rem;
    padding: 0.55rem 0.8rem;
    font-size: 1.05rem;
    background: #f7fafd;
    color: #222;
    transition: border 0.2s;
}

.pre-matricula-form input:focus,
.pre-matricula-form select:focus {
    border: 1.5px solid #002868;
    outline: none;
}

.input-erro {
    border: 1.5px solid #c8102e !important;
    background: #fff0f3 !important;
}

.matricula-instrucao {
    text-align: center;
    color: #222;
    font-size: 1.13rem;
    margin-bottom: 0.7rem;
    margin-top: 0.5rem;
}

.matricula-passos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 0 0 1.2rem 0;
    padding: 0;
    list-style: decimal inside;
    color: #002868;
    font-size: 1.08rem;
}

.matricula-passos li {
    font-weight: 500;
}

.matricula-sucesso {
    display: none;
    margin: 1.2rem auto 0.5rem auto;
    padding: 1.1rem 1.5rem;
    background: #22c55e;
    color: #fff;
    border-radius: 0.85rem;
    font-size: 1.18rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.13);
    max-width: 500px;
    z-index: 10;
    opacity: 1;
    transform: none;
    transition: none;
}

.matricula-sucesso.show {
    display: block;
    opacity: 1;
    transform: none;
}

@media (max-width: 600px) {
    .matricula-sucesso {
        font-size: 1rem;
        padding: 0.8rem 0.5rem;
        max-width: 98vw;
    }
}

.matricula-faq {
    background: #f5f5f5;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 40, 104, 0.07);
    max-width: 500px;
    margin: 2.5rem auto 1.5rem auto;
    padding: 1.5rem 1.2rem;
}

.matricula-faq h3 {
    color: #002868;
    font-size: 1.18rem;
    margin-bottom: 1rem;
    text-align: center;
}

.matricula-faq details {
    margin-bottom: 0.7rem;
    background: #fff;
    border-radius: 0.6rem;
    padding: 0.7rem 1rem;
    box-shadow: 0 1px 4px rgba(0, 40, 104, 0.04);
    font-size: 1.05rem;
    color: #222;
    cursor: pointer;
}

.matricula-faq summary {
    font-weight: 600;
    color: #c8102e;
    outline: none;
}

.matricula-faq details[open] summary {
    color: #002868;
}

@media (max-width: 600px) {

    .pre-matricula-form,
    .matricula-faq {
        padding: 1.1rem 0.5rem;
        max-width: 98vw;
    }

    .matricula-passos {
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.98rem;
    }

    .matricula-instrucao {
        font-size: 1rem;
    }
}

/* Seção Teste de Nivelamento */
.nivelamento-section {
    background: #002868;
    padding: 3.2rem 0 2.5rem 0;
    text-align: center;
    margin: 0;
}

.nivelamento-container {
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0, 40, 104, 0.10);
    padding: 2.2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nivelamento-container h2 {
    color: #c8102e;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}

.nivelamento-desc {
    color: #222;
    font-size: 1.13rem;
    margin-bottom: 1.5rem;
}

.btn-nivelamento {
    background: #c8102e;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.95rem 2.2rem;
    border-radius: 0.7rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(200, 16, 46, 0.13);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-nivelamento:hover,
.btn-nivelamento:focus {
    background: #002868;
    color: #ffd700;
    transform: scale(1.04);
    outline: 2px solid #ffd700;
}

@media (max-width: 600px) {
    .nivelamento-container {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }

    .nivelamento-container h2 {
        font-size: 1.25rem;
    }

    .nivelamento-desc {
        font-size: 0.98rem;
    }

    .btn-nivelamento {
        font-size: 1rem;
        padding: 0.7rem 1.1rem;
    }
}

/* Parcerias - Benefícios */
.parcerias-beneficios {
    background: #f5f5f5;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
}

.parcerias-beneficios h2 {
    color: #002868;
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
}

.beneficios-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 1.13rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 520px;
}

.beneficios-list li {
    background: #fff;
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px rgba(0, 40, 104, 0.07);
    padding: 0.7rem 1.2rem;
    width: 100%;
    text-align: left;
}

/* Grid de Parceiros */
.parceiros-grid-section {
    background: #fff;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
}

.parceiros-grid-section h2 {
    color: #c8102e;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.parceiros-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 900px;
}

.parceiro-logo {
    background: #f7fafd;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 40, 104, 0.07);
    padding: 1.2rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s, box-shadow 0.18s;
    min-width: 120px;
    min-height: 80px;
    max-width: 220px;
    max-height: 100px;
}

.parceiro-logo img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(0.1);
    transition: filter 0.2s, transform 0.2s;
}

.parceiro-logo:hover,
.parceiro-logo:focus {
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(0, 40, 104, 0.13);
    background: #fffbe7;
}

.parceiro-logo:hover img,
.parceiro-logo:focus img {
    filter: grayscale(0) drop-shadow(0 2px 8px #ffd700);
    transform: scale(1.08);
}

/* Depoimentos */
.parcerias-depoimentos {
    background: #002868;
    color: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.parcerias-depoimentos h2 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.depoimentos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.depoimento-card {
    background: #fff;
    color: #002868;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 40, 104, 0.10);
    padding: 1.3rem 1.2rem 1.1rem 1.2rem;
    min-width: 220px;
    max-width: 320px;
    font-size: 1.08rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.depoimento-card span {
    color: #c8102e;
    font-weight: 600;
    margin-top: 0.7rem;
    font-size: 1rem;
}

/* CTA já estilizado pelo site */
@media (max-width: 700px) {

    .parceiros-grid,
    .depoimentos-grid {
        flex-direction: column;
        gap: 1.1rem;
    }

    .parceiro-logo {
        max-width: 98vw;
        min-width: 0;
        padding: 1rem 0.5rem;
    }

    .depoimento-card {
        min-width: 0;
        max-width: 98vw;
        font-size: 0.98rem;
    }

    .parcerias-beneficios,
    .parceiros-grid-section,
    .parcerias-depoimentos {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 900px) {
    .submenu-list {
        display: none;
        position: static;
        width: 100vw;
        left: 0;
        background: var(--azul-usa-claro);
        color: var(--branco);
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0.5rem 0;
        z-index: 2100;
    }

    .submenu.open>.submenu-list {
        display: block;
    }

    .submenu-list li {
        width: 100%;
    }

    .submenu-list li a {
        color: var(--branco);
        border-bottom: 1px solid var(--azul-usa);
        font-size: 1.05rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }

    .submenu-list li:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 900px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: flex-start;
        position: absolute;
        top: 64px;
        left: 0;
        background: var(--azul-usa);
        z-index: 999;
        display: none;
    }

    .menu.menu-open {
        display: flex;
    }

    .submenu-list {
        position: static;
        min-width: unset;
        box-shadow: none;
        border-radius: 0;
        background: var(--cinza-claro);
        display: none;
    }

    .submenu.open>.submenu-list {
        display: block;
    }

    .submenu>a:after {
        content: ' ▼';
        font-size: 0.8em;
    }
}

@media (max-width: 900px) {
    .header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .nav {
        flex: 1 1 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between !important;
        width: 100%;
        padding: 0;
    }

    .header .logo {
        margin-left: 0 !important;
        margin-right: auto !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header .logo-img {
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
    }

    .mobile-menu-btn {
        margin-left: auto;
        margin-right: 0;
        align-self: flex-start;
        position: relative;
        top: 0;
        right: 0;
    }
}

.footer-brand .logo-img {
    height: 48px !important;
    max-width: 180px !important;
    width: auto !important;
    vertical-align: middle;
    display: block;
    margin-bottom: 0.3rem;
}

.footer-brand p {
    text-align: left !important;
    margin: 0;
    color: var(--branco);
    font-size: 1rem;
    font-weight: 400;
    max-width: 320px;
    line-height: 2.5;
}

@media (max-width: 900px) {
    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        text-align: center !important;
    }
}

.footer,
.footer-links ul li a,
.footer-contact ul li a,
.footer-brand p,
.footer-copy,
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: 'Segoe UI', Arial, sans-serif !important;
    font-weight: 600 !important;
}

@media (max-width: 900px) {
    .header .logo {
        margin-left: 0 !important;
        margin-right: auto !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header .logo-img {
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
    }

    .nav {
        justify-content: flex-start !important;
    }
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn .hamburger-bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.4, 2, .6, 1);
}

.menu-open~.mobile-menu-btn .hamburger-bar,
.menu.menu-open~.mobile-menu-btn .hamburger-bar {
    background: #fff;
}

.mobile-menu-btn.menu-open .hamburger-bar {
    background: #fff;
}