/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.material-button {
    background-color: #245262;
    /* Material Purple 500 */
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16pt;
    font-family: 'Open Sans';
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
        0px 2px 2px 0px rgba(0, 0, 0, 0.14),
        0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.material-button:hover {
    background-color: #2c3e50;
    /* Darker shade on hover */
}

.material-button:active {
    box-shadow: none;
}

.custom-row {
    display: flex;
    gap: 10rem;
}

/* Coluna esquerda: 60% com mínimo de 300px */
.col-60 {
    flex: 6 1 300px;
    /* flex: grow 6, shrink 1, basis 300px */
    text-align: center;
    align-content: center;
}

/* Coluna direita: 40% com mínimo de 300px */
.col-40 {
    flex: 4 1 300px;
    /* flex: grow 4, shrink 1, basis 300px */
    display: flex;
    justify-content: center;
    /* centraliza o vídeo dentro da coluna */
}

.col-50 {
    flex: 5 1 300px;
    /* flex: grow 6, shrink 1, basis 300px */
    text-align: center;
    align-content: center;
}


@media (max-width: 1000px) {

    .left-col-50,
    .right-col-50 {
        flex: 1 1 100%;
    }

    .left-col-60,
    .right-col-40 {
        flex: 1 1 100%;
    }
}

/* bloco logo + texto */
.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
}

/* logo */
.logo-page {
    width: 360px;
    height: auto;
    position: initial !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.logo-clock {
    width: 80px;
    height: auto;
    position: initial !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.logo-price {
    width: 180px;
    height: auto;
    position: initial !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* sinal de + */
.plus-sign {
    font-family: Inter, sans-serif;
    font-size: 36px;
    line-height: 1;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
}

/* IRIUS */
.brand-name {
    font-family: Kanit, sans-serif;
    font-size: 64pt;
    line-height: 1;
    font-weight: 200;
    vertical-align: middle;
}

.model-name {
    font-family: Kanit, sans-serif;
    font-size: 40pt;
    line-height: 1;
    font-weight: 200;
    vertical-align: middle;
}

.pricing-model-name {
    font-size: 24pt;
}

.plan-name {
    font-family: Open Sans, sans-serif;
    font-size: 4rem !important;
    font-weight: 600;
    color: #2c3e50;
    vertical-align: middle;
    margin: unset !important;
    margin-left: 12px !important;
}

/* texto informativo */
.info-text-main {
    padding-top: 32px;
    font-size: 16pt !important;
    font-weight: 600;
    color: white;
}

.info-text-secondary {
    font-size: 14pt !important;
    color: white;
    font-weight: 400;
}

.info-text-secondary.default {
    color: #777777
}


/* vídeo responsivo (100% da largura da coluna) */
.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: auto;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.price-description {
    font-size: 8pt;
    max-lines: 1;
}

.pricing-table.right {
    border-right: 2px solid rgba(35, 35, 35, 0.2);
}

.pricing-table.right.rounded {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 10px !important;
}

.pricing-table.left {
    border-left: 2px solid rgba(35, 35, 35, 0.2);
}

.pricing-table.left.rounded {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 10px;
}


.row.responsive-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

p.footer {
    margin: 0px;
    line-height: 20px;
    font-size: 8pt;
    text-align: left;
}

p.pricing-header {
    display: block;
    background-color: #245262;
    border-radius: 10px 10px 0px 0px;
    font-size: 14pt;
    color: white;
    font-family: Open Sans;
    padding: 8px 0px 8px 0px;
    margin-bottom: unset;
}

.pricing-tables {
    padding-bottom: 1rem;
}

.pricing-tables.header {
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
    padding-bottom: unset;
}

.row.pricing-tables.pre {
    display: flex;
    width: 60%;
    justify-self: center;
}

.row.pricing-tables.flex {
    display: flex;
    width: 70%;
    justify-self: center;
}

img.plan-image {
    width: 10%;
    height: 10%;
    border-radius: 8px;
    object-fit: cover;
    object-position: 51%;
}

p.footer:last-child {
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .pricing-tables {
        justify-content: start !important;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    img.plan-image {
        width: 30%;
    }

    .custom-row {
        gap: 1rem;
    }

    .logo-page {
        width: 180px !important;
    }

    .logo-clock {
        width: 40px !important;
    }

    .brand-name {
        font-size: 32pt !important;
    }

    .brand-name.commercial {
        font-size: 48pt !important;
    }

    .model-name {
        font-size: 32pt;
        vertical-align: middle;
    }

    .plus-sign {
        vertical-align: middle;
    }

    .video-responsive {
        width: 70%;
        height: auto;
    }

    .info-text-main {
        max-width: 80%;
    }

    .info-text-secondary {
        font-size: 13pt !important;
    }

    .row.responsive-centered {
        justify-items: center;
    }

    .mobile-text-centered {
        text-align: center;
    }

    .row.pricing-tables.pre {
        display: flex;
        width: 120%;
        justify-self: center;
    }

    .row.pricing-tables.flex {
        display: flex;
        width: 200%;
        justify-self: center;
    }
}

@media (max-width: 1400px) {
    .logo-page {
        width: 270px;
    }

    img.plan-image {
        width: 15%;
    }

    .logo-clock {
        width: 60px;
    }

    .brand-name {
        font-size: 48pt;
    }

    .model-name {
        font-size: 24pt;
    }

    .row.pricing-tables.pre {
        display: flex;
        width: 80%;
        justify-self: center;
    }

    .row.pricing-tables.flex {
        display: flex;
        width: 90%;
        justify-self: center;
    }

}

@media (max-width: 992px) {
    .custom-row {
        gap: 1rem;
        display: block;
    }

    .video-responsive {
        width: 80%;
        height: auto;
    }

    img.plan-image {
        width: 20%;
    }

    .info-text-main {
        max-width: 80%;
    }

    .info-text-secondary {
        font-size: 13pt !important;
    }

    .logo-text {
        text-align: center;
        line-height: 64px;
    }

    .row.pricing-tables.pre {
        display: flex;
        width: 100%;
        justify-self: center;
    }

    .row.pricing-tables.flex {
        display: flex;
        width: 110%;
        justify-self: center;
    }
}