html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: .8em;
}

header .default-header .logo img {
    max-width: 180px !important;
    max-height: 95% !important;
}

.full-banner .item-banner-home {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
}

.wrap-content-plans .box-content .hide-content .canais .item-canal .card-canal .image img {
    max-width: 80%;
}

footer .wrap-logo .logo img {
    max-width: 180px !important;
    max-height: 95% !important;
}

.content-error {
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.content-error .detail {
    top: -100px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.content-error .container {
    position: relative;
    z-index: 100;
}

.content-error h1 {
    color: #222;
    font-size: 70px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.content-error h2 {
    color: #222;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content-error p {
    color: #989898;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 20px;
}

.content-error .box-1 {
    float: left;
    width: 100%;
    margin-bottom: 100px;
}

.content-error .box-1 h1 {
    width: 100%;
    text-align: center;
}

.content-error .box-1 h2 {
    width: 100%;
    text-align: center;
}

.content-error .box-1 p {
    width: 100%;
    text-align: center;
}

.content-error .box-1 .btn-border {
    border-color: #16B989;
    margin: 0 auto;
    margin-top: 50px
}

.content-error .box-1 .btn-border span {
    color: #16B989;
}

.content-error .box-1 .btn-border:hover span {
    color: #FFF;
}

table.table-tv {
    font-family: "Roboto Condensed", sans-serif;
    border: 1px solid #16B989;
    border-radius: 8px !important;
    width: 70%;
    text-align: center;
    border-collapse: collapse;
}

table.table-tv td,
table.table-tv th {
    padding: 3px 2px;
}

table.table-tv tbody td {
    font-size: 17px;
}

table.table-tv thead th {
    font-size: 17px;
    font-weight: bold;
    color: #273370;
    text-align: center;
}

table.table-tv tbody tr {
    font-size: 17px;
    color: #989898;
    text-align: center;
}

table.table-tv .td-first {
    width: 50%;
    text-align: left;
    padding: 0 0 0 50px
}

table.table-tv .next {
    width: 25%
}

table.table-tv .td-first .card-canal img {
    width: 30px;
    margin-right: 5px;
}


.white-btn {
    border-radius: 6px;
    border: 1px solid #16B989;
    background: #222;
    display: flex;
    width: fit-content;
    height: 50px;
    padding: 0 30px;
    color: #FFF;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
    gap: 5px;
    align-items: center;
}

.white-btn strong {
    color: #C5FA87;
    transition: .5s;
}

.white-btn:hover {
    background: #16B989;
    border-color: #222;
    color: #FFF;
}

.white-btn:hover strong {
    color: #222;
}

/* Telemedicina */

#telemedicina {

}

#telemedicina .box-title {

}

#telemedicina .box-title h2 {
    color: #222;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#telemedicina .box-title img {
    width: 200px;
    height: auto;
}

#telemedicina .box-title span {
    color: #7845D2;
}

#telemedicina .box-image .detail {
    position: absolute;
    top: calc(50% - 225px);
    left: calc(50% - 255px);
    animation: rotating 15s ease-in-out infinite;
}

#telemedicina .box-image .full {
    position: relative;
    z-index: 9;
}

#telemedicina .texto-item {
    color: #FFFFFF;
}

#telemedicina small {
    display: flex;
    justify-content: end;
    color:#fff;
}

#telemedicina .grid-items {
    display: flex;
    margin-bottom: 60px;
    gap: 15px;
}
@media(max-width: 1200px) {
    #telemedicina .grid-items {
        flex-wrap: wrap;
        justify-content: center;
    }
}
#telemedicina .grid-items .item {
    position: relative;
    background: #4A1EA7;
    width: 100%;
    padding: 32px 39px 26px 32px;
    min-height: 181px;
    max-width: 325px;
    border-radius: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

#telemedicina .grid-items .item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

#telemedicina .icone img {
    width: 40px;
    filter: brightness(0) invert(1);
    padding-bottom: 10px;
    transition: transform 0.4s ease;
}

#telemedicina .grid-items .item:hover .icone img {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        background-color: #4A1EA7;
    }
    50% {
        background-color: #4A1EA7;
    }
    100% {
        background-color: #4A1EA7;
    }
}

#telemedicina .grid-items .item:hover {
    animation: pulse 1.5s infinite;
}

#telemedicina h3 {
    font-size: 24px;
    margin: 0;
    text-wrap-mode: nowrap
}

.price-box {
    border: 1px solid #4A1EA7;
    border-radius: 8px;
    padding: 20px;
    background-color: #f8f6ff;
    text-align: center;
    width: 220px;
    margin-bottom: 60px;
}

.price-box .header {
    font-size: 16px;
    color: #666666;
    margin-bottom: 10px;
}

.price-box .price {
    font-size: 32px;
    font-weight: bold;
    color: #5c27b8;
}

.price-box .price span {
    font-size: 16px;
    font-weight: normal;
}

.price-box .conditions {
    font-size: 12px;
    color: #666666;
    margin-top: 10px;
}