html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    color: #111;
    background: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    padding-top: 70px;
}

header {
    background: white;
    color: black;
    position: fixed;
    left: 0;
    top: 0;
    border-bottom: grey 1px solid;
    z-index: 1000;
    padding: 0px;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

nav div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    color: black;
    margin-left: 20px;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #0a3d91;
    border-radius: 999px;
    transition: width 0.2s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 350px;
    margin-top: -40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    filter: brightness(0.75);
}


.hero>*:not(.hero-bg) {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 16px;
    margin-top: 120px;
    letter-spacing: 0.02em;
}

.hero p {
    font-size: 21px;
    max-width: 760px;
    margin: auto;
    margin-bottom: 30px;
}

.hero .btn {
    display: inline-block;
    margin: 20px auto 0 auto;
}

@media (max-width: 660px) {
    .hero h1 {
        margin-top: 20px;
    }
    .hero {
        min-height: 250px;
    }
}

.sem-borda-sup {
    border-top: none !important;
}

#fundoGeral {
    background-color: #f4f6f9;
}

.btn {
    background: #0a3d91;
    color: #fff;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    max-width: 100%;
}

.btn:hover {
    background: #082c6a;
    cursor: pointer;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.section {
    padding: 70px 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.subtitulo {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
    margin-bottom: 24px;
}

h2 {
    font-size: 34px;
    margin-bottom: 6px;
}

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

.card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #e3e8f0;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
    border-color: #c7d2eb;
}

.card h3 {
    font-size: 24px;
}

.card p {
    font-size: 18px;
}

.destaque {
    background-image: linear-gradient(135deg, #042661, #4681e0);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}


.form {
    max-width: 100%;
    margin: 0 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
}

@media (max-width: 900px) {
    .form {
        margin: 0 8px;
    }
}

input,
textarea,
select {
    width: 100%;
    padding: 15px;
    margin: 8px 0;
    border: 1px solid #727272;
    border-radius: 6px;
    font-size: 18px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

select {
    color: gray;
}

textarea {
    resize: none;
    height: 125px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0a3d91;
    box-shadow: 0 0 0 2px rgba(10, 61, 145, 0.12);
    background-color: #f8fbff;
}

.badge {
    background: #e8eef9;
    color: #0a3d91;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 16px;
    margin: 4px;
    display: inline-block;
    font-weight: 600;
}

.badge i {
    font-size: 18px !important;
}

i {
    font-size: 30px;
    font-weight: 900;
}

#requisicao {
    border: none;
    width: 100%;
    text-align: center;
}

#personalizado {
    background-color: white;
    color: #0a3d91;
}

#personalizado:hover {
    background-color: #0a3d91;
    color: white;
}

.opcoes {
    font-size: 20px;
    white-space: nowrap;
}

.opcoes:hover {
    color: #0a3d91;
    cursor: pointer;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
}

#epson .grid {
    margin-top: 18px;
}

#epson ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.7;
    font-size: 18px;
}

#epson .card {
    margin-top: 22px;
}

#epson .card:last-child .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

#epson .card:last-child .grid div {
    background: #f8fafd;
    border: 1px solid #e3e8f0;
    border-radius: 10px;
    padding: 14px;
}

#epson .card:last-child .grid div:hover {
    border-color: #b3c4e8;
    box-shadow: 0 4px 16px rgba(10, 61, 145, 0.08);
}

#epson .btn[style*="#25D366"] {
    background: #25D366;
}

#whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #1db354;
    color: #fff;
    padding: 15px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border: none;
}

@media (max-width: 520px) {
    #whatsapp-button {
        padding: 12px !important;
        font-size: 16px !important;
    }
}

#whatsapp-button:hover {
    cursor: pointer;
    background-color: #199446;
}

.center {
    text-align: center;
}

#whatsapp-button-header,
#whatsapp-button-mapa {
    background: #1db354;
    border: none;
    font-size: 18px;
    height: 55px;
    font-weight: 700;
}

#whatsapp-button-header:hover,
#whatsapp-button-mapa:hover {
    background-color: #199446;
}

footer {
    background: #000;
    color: #fff;
    padding: 35px;
    margin-top: 40px;
    font-size: 16px;
}


.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.footer-container a {
    color: white;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}

.footer-container i {
    font-size: 18px !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

#mensagem-alerta {
    position: fixed;
    top: 140px;
    right: 20px;
    background: #d9534f;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    display: none;
    z-index: 1100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#section-mapa {
    background-image: linear-gradient(135deg, #042661, #4681e0);
    padding: 80px 0;
    color: white;

    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;

    margin-bottom: -39px !important;
}

#section-mapa .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
}

.info-local {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-local>button {
    max-width: 220px;
}

.info-local h2 {
    font-size: 32px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.info-local h2::after {
    content: "";
    height: 1px;
    background-color: white;
    flex-grow: 1;
}

.info-local .endereco {
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mapa-container {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 520px) {
    .mapa-container {
        height: 150px !important;
    }
}

.mapa-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mapa-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.link-mapa {
    align-self: center;
    display: inline-block;
    margin-top: 12px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.link-mapa i {
    font-size: 14px !important;
}

.link-mapa:hover {
    text-decoration: underline;
}

#logo {
    border: none;
    width: 195px !important;
    height: 130px !important;
}

.bg-white {
    background-color: #ffffff;
    border-top: 2px solid gray;
    border-bottom: 2px solid gray;
}

.total {
    padding: 70px 20px;
    width: 100%;
    max-width: none !important;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.menu {
    display: none;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
}

#honeypot {
    display: none;
}

.card-img-container img {
    width: 100%;
    max-width: 209px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

.img-card {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px;
    margin-bottom: 10px;
}

.catalogo {
    max-width: 100% !important;
    height: auto !important;
}

.formato-info i, .material-card i, #epson .fa-circle-check, .aplicacao-card i {
    color: #1db354;
    font-size: 18px !important;
    margin-right: 10px;
}

.rapido {
    color: rgb(102, 102, 102);
}

.grid-divisao {
    max-width: 98.5% !important;
    display: grid;
    grid-template-columns: 50% 50%;
}

.formatos-header,
.material-header {
    margin-bottom: 20px;
}

.formatos-header h3,
.material-header h3 {
    margin-bottom: 4px;
}

.formatos-header p,
.material-header p {
    color: #555;
    font-size: 16px;
    margin: 0;
}

.formatos-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formato-card {
    border: 1px solid #e3e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafd;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.formato-card:hover {
    border-color: #b3c4e8;
    box-shadow: 0 4px 16px rgba(10, 61, 145, 0.08);
}

.formato-img-wrap {
    background: #eef1f7;
    width: 110px;
    min-width: 110px;
    height: 88px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formato-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.formato-info {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.formato-info strong {
    font-size: 18px;
    line-height: 1.35;
    color: #111;
}

.formato-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0a3d91;
    background: #e8eef9;
    border-radius: 999px;
    padding: 3px 10px;
    width: fit-content;
}

@media (max-width: 520px) {
    .formato-img-wrap {
        aspect-ratio: auto;
        width: 110px;
        min-width: 110px;
        height: 100%;
    }

    .formato-info strong .material-card {
        font-size: 14px;
    }
}

.material-card {
    border: 1px solid #e3e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafd;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    height: 87px;
}

.material-card::before {
    content: "";
    width: 100px;
    height: 100px;
    margin-right: 15px;
    flex-shrink: 0;
    border-right: 1px solid #eee;
}

.bopp-brilho::before {
    background: linear-gradient(135deg, #ffffff 0%, #e7e7e7 50%, #ffffff 100%);
}

.bopp-fosco::before {
    background: #f0f0f0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.bopp-transparente::before {
    background-color: #ffffff;
    background-image: linear-gradient(45deg, #f9f9f9 25%, transparent 25%),
        linear-gradient(-45deg, #f9f9f9 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f9f9f9 75%),
        linear-gradient(-45deg, transparent 75%, #f9f9f9 75%);
    background-size: 10px 10px;
}

.bopp-metalizado::before {
    background: linear-gradient(90deg, #cccccc 0%, #fff 45%, #fff 55%, #cccccc 100%);
}

.papel-brilho::before {
    background: radial-gradient(circle at top left, #fff, #e0e0e0);
}

.papel-fosco::before {
    background: #fafafa;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.material-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.material-container>div {
    flex: 1;
}

.material-card:hover {
    border-color: #b3c4e8;
    box-shadow: 0 4px 16px rgba(10, 61, 145, 0.08);
}

@media (max-width: 1100px) {
    .grid-divisao {
        display: flex !important;
        flex-direction: column !important;
    }
}

@media (max-width: 550px) {
    .material-container {
        flex-direction: column;
        gap: 0;
    }
}

.aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.aplicacao-card {
    border: 1px solid #e3e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.aplicacao-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
    border-color: #c7d2eb;
}

.aplicacao-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.aplicacao-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.aplicacao-info {
    padding: 14px 16px;
}

.aplicacao-info strong {
    font-size: 16px;
    line-height: 1.35;
    color: #111;
}

@media (max-width: 660px) {
    .aplicacoes-grid {
        grid-template-columns: 1fr;
    }

    .aplicacao-card {
        flex-direction: row;
        align-items: center;
        height: 90px;
    }

    .aplicacao-img-wrap {
        aspect-ratio: auto;
        width: 110px;
        min-width: 110px;
        height: 100%;
        margin: none;
    }

    .aplicacao-img-wrap img {
        height: 90px !important;
    }
}

#exemplo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#dimensoes {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

#espacamentos {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.campo-grupo {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#campos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

#campos>div {
    flex: 1;
}

.btn-enviar {
    display: none;
    max-width: 390px;
    margin-top: 30px;
}

.btn-enviar.visivel {
    display: inline-block;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.form-navigation .btn {
    width: auto;
    max-width: none;
}

.form-navigation .btn-secondary {
    width: auto;
    max-width: none;
    border: none;
}

.form-navigation .btn {
    border: none;
}

@media (max-width: 900px) {

    .form-navigation .btn,
    .form-navigation .btn-secondary {
        width: auto;
        max-width: none;
    }
}

.btn-secondary {
    background: #e0e4ec;
    color: #0a3d91;
}

.btn-secondary:hover {
    background: #c6ccd9;
}

.erro {
    border-color: #d9534f !important;
}

.erro-msg {
    display: block;
    color: #d9534f;
    font-size: 14px;
    margin-top: -4px;
    margin-bottom: 8px;
    text-align: left;
}

#exemplo-container {
    position: relative;
    width: 100%;
    max-width: 330px;
    aspect-ratio: 709 / 1036;
    overflow: visible;
}

#etiqueta-dinamica {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#txt-largura,
#txt-altura,
#txt-rolo {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    font-size: 14px;
    font-weight: bold;
    color: #0a3d91;
    border: 1px solid #0a3d91;
    border-radius: 4px;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
}

#txt-largura {
    top: 7%;
    left: 35%;
    transform: translateX(-50%);
}

#txt-altura {
    left: -10%;
    top: 52%;
    transform: translateY(-50%) rotate(270deg);
}

#txt-rolo {
    bottom: 4%;
    left: 35%;
    transform: translateX(-50%);
}

#grade-colunas {
    position: absolute;
    top: 40%;
    left: 16%;
    display: grid;
    gap: 7px;
    justify-items: center;
    align-items: center;
    min-width: 20px;
    min-height: 20px;
    max-width: 100%;
    max-height: 100%;
}

.quadrado-coluna {
    border: 1px solid #0a3d91;
    background: white;
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.corPreta {
    color: black;
}

#exemplo-visual {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#produtos>.grid>.card {
    max-width: 500px;
    height: 200px;
}

@media (max-width: 900px) {
    #produtos>.grid>.card {
        height: auto;
        min-height: 120px;
    }
}

#modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

#modal.ativo {
    display: flex;
}

#modal-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

#modal-container i {
    color: #1db354;
    font-size: 60px;
    margin-bottom: 16px;
}

#btn-modal {
    border: none;
    width: 120px;
}

@media (max-width: 500px) {
    #modal-container {
        padding: 20px;
    }

    #modal-container {
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    #modal-container {
        max-width: 250px;
    }
}

@media (max-width: 900px) {
    .menu {
        display: block;
        margin-right: 40px;
    }

    nav {
        min-height: 110px;
    }

    #header {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid grey;
        border-top: 1px solid grey;
        position: fixed;
        left: 0;
        color: black;
        padding-right: 0;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
        top: 110px;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    #header.active {
        display: flex;
    }

    .opcoes {
        width: 100%;
        padding: 14px 0;
    }

    .opcoes:hover {
        background-color: #0a3d91;
        color: white;
    }

    main section {
        scroll-margin-top: 160px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 18px;
        line-height: 1.45;
    }

    h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .section {
        padding: 56px 16px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 14px 18px;
    }

    .btn-enviar {
        width: 100%;
        max-width: 100%;
    }

    .btn-secondary {
        width: 100%;
        max-width: 100%;
    }

    .card {
        padding: 18px;
        border-radius: 12px;
    }

    .grid {
        gap: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #btns-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        text-align: center;
    }

    .texto-apresentacao {
        width: 100%;
        max-width: 900px;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal;
        font-size: 1rem;
        margin: 20px auto;
        text-align: center;
        line-height: 1.6;
    }

    #section-mapa .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 26px;
        padding: 0 16px;
    }

    .info-local h2::after {
        display: none;
    }

    .info-local h2,
    .info-local .endereco {
        justify-content: center;
    }

    .info-local .btn.whats {
        display: block;
        margin: 0 auto;
        width: fit-content;
        max-width: 100%;
    }

    .mapa-container {
        width: 90vw;
        height: 280px;
    }

    .mapa-container {
        border-radius: 12px;
    }

    .link-mapa {
        font-size: 16px;
    }

    .endereco {
        text-align: start;
    }

    #logo {
        width: 165px !important;
        height: 110px !important;
    }

    #mensagem-alerta {
        left: 16px;
        right: 16px;
        top: 150px;
        width: auto;
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 1100px) {
    #campos {
        width: 100%;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #campos>div {
        width: 100%;
    }
}

@media (max-width: 520px) {
    body {
        font-size: 16px;
    }

    .hero {
        margin-top: 0;
        padding: 90px 16px 80px;
    }

    .hero h1 {
        margin-top: 0;
        font-size: 28px;
    }

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

    nav {
        padding: 0 10px;
    }

    nav a {
        font-size: 18px;
        margin-left: 0;
    }

    .menu {
        margin-right: 10px;
        font-size: 44px;
    }

    #campos {
        gap: 22px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
        padding: 14px;
    }

    .erro-msg {
        font-size: 13px;
    }

    #dimensoes,
    #espacamentos {
        flex-direction: column;
        gap: 0;
    }

    .campo-grupo {
        width: 100%;
    }

    #exemplo-container {
        max-width: 330px;
    }

    #whatsapp-button {
        right: 14px;
        bottom: 14px;
        padding: 14px;
        border-radius: 999px;
    }
}

.steps-bolhas {
    display: flex;
    flex-direction: row;
    margin: auto;
    max-width: 600px;
    gap: 0;
    margin-bottom: 28px;
    margin-top: 40px;
}


.step-bolha {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.bolha-circulo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: #0a3d91;
    border: solid 2px #0a3d91;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
    margin-bottom: 8px;
}

.bolha-label {
    font-size: 13px;
    color: #0a3d91;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.step-bolha.active .bolha-circulo {
    background: #0a3d91;
    color: #fff;
}

.step-bolha.active .bolha-label {
    color: #0a3d91;
}

.step-bolha.concluido .bolha-circulo {
    color: #0a3d91;
    background: #fff;
    font-size: 0;
}

.step-bolha.concluido .bolha-circulo::before {
    content: "✓";
    font-size: 18px;
}

.step-bolha.concluido .bolha-label {
    color: #0a3d91;
}

@media (max-width: 1100px) {
    .nav-container {
        padding: 0 12px;
        box-sizing: border-box;
    }

    #btns-container {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .destaque h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    li>img {
        height: 160px !important;
    }

    .materiais>ul>li {
        font-size: 17px;
    }
}

@media (max-width: 520px) {
    .destaque h2 {
        font-size: 20px;
    }

    main section {
        scroll-margin-top: 120px;
    }
}

.opcoes-card-grupo {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 8px 0 4px;
    flex-wrap: wrap;
}

.opcao-card {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    padding: 14px 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    position: relative;
    box-sizing: border-box;
}

.opcao-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.opcao-card img {
    width: 99px;
    height: 72px;
    object-fit: contain;
    border-radius: 4px;
}

.opcao-card:hover {
    border-color: #0a3d91;
    background: #f0f5ff;
}

.opcao-card--selecionado {
    border-color: #0a3d91 !important;
    background: #e8eef9 !important;
    box-shadow: 0 0 0 3px rgba(10, 61, 145, 0.15);
    color: #0a3d91;
}

.opcao-card--pequeno {
    min-width: 80px;
    flex: 0 1 calc(50% - 6px);
    max-width: 80px;
}

.opcao-card__destaque {
    font-size: 15px;
    font-weight: 700;
}

.opcao-card--selecionado .opcao-card__destaque {
    color: #0a3d91;
}

.opcao-card__descricao {
    font-size: 12px;
    color: #a3a3a3;
}

/* Formato da etiqueta — SVG icon sizing */
.opcao-card svg {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}

/* Mensagem de formato especial */
#msg-formato-especial {
    width: 100%;
    max-width: 400px;
    margin-top: 18px;
}

.aviso-especial {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0f5ff;
    border: 1.5px solid #0a3d91;
    border-radius: 12px;
    padding: 20px 22px;
    text-align: left;
}

.aviso-especial > i {
    color: #0a3d91;
    font-size: 28px !important;
    flex-shrink: 0;
    margin-top: 2px;
}

.aviso-especial strong {
    display: block;
    color: #0a3d91;
    font-size: 17px;
    margin-bottom: 6px;
}

.aviso-especial p {
    color: #444;
    font-size: 15px;
    margin: 0 0 14px;
    line-height: 1.55;
}

.btn-aviso-especial {
    padding: 10px 20px !important;
    font-size: 15px !important;
}

/* Prévia redonda — as etiquetas ficam circulares */
#grade-colunas.redondo .quadrado-coluna {
    border-radius: 50%;
}

@media (max-width: 520px) {
    .opcoes-card-grupo {
        gap: 8px;
    }

    .opcao-card img {
        width: 60px;
        height: 46px;
    }

    .opcao-card {
        font-size: 14px;
        padding: 12px 8px;
    }
}
