/* ===== FONT ===== */
@font-face {
    font-family: 'NexaHeavy';
    src: url('https://pontosat.com.br/Content/img/lp/Nexa-Heavy.woff2') format('woff2'),
         url('https://pontosat.com.br/Content/img/lp/Nexa-Heavy.woff') format('woff'),
         url('https://pontosat.com.br/Content/img/lp/Nexa-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET / BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

a {
    color: #05417A;
    text-decoration: none;
    transition: 0.5s;
}

a:hover, a:active, a:focus {
    color: #05417A;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    animation: fadeOutPreloader 0.5s ease 1.2s forwards;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #05417A;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeOutPreloader {
    to { opacity: 0; visibility: hidden; }
}

/* ===== SECTION BG-TOP ===== */
#bg-top {
    background-image: url('https://pontosat.com.br/Content/img/lp/bg-top.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

#bg-top p {
    color: #fff;
}

#bg-top .img-logo {
    max-width: 300px;
    width: 100%;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PLANOS TEXT ===== */
.pPlanos {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}

/* ===== PRICE LIST ===== */
.ulPrices {
    font-family: NexaHeavy, 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ulPrices p {
    font-family: NexaHeavy, 'Montserrat', sans-serif;
}

.ulPrices li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1e7a2f, #5ea647);
    color: #fff;
    padding: 10px;
    margin: 15px 0;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
}

.ulPrices li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.ulPrices li.selected {
    border: 3px solid #f5811e !important;
}

.ulPrices .top-align {
    position: absolute;
    left: 0;
    right: 0;
    background: #f5811e;
    font-weight: bold;
    padding: 0px 20px;
    color: #fff !important;
    top: -11px;
    max-width: fit-content;
    border-radius: 25px;
    font-size: 13px;
    margin: auto;
}

.left-align,
.right-align {
    flex: 1;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: right;
}

p.maior {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
}

font.menor,
.menor {
    font-size: 10px;
    font-weight: normal;
    opacity: 1;
    margin-left: 5px;
    text-align: left;
}

.menor .cima {
    font-weight: bold;
}

.menor .baixo {
    font-size: 10px;
}

.right-align p {
    justify-content: right;
}

.left-align .menor {
    font-weight: bold !important;
}

/* ===== WHATSAPP BUTTON ===== */
.btn-wpp-effect {
    display: inline-block;
    background: #25D366;
    color: white !important;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseWpp 1.3s infinite ease-in-out;
}

.btn-wpp-effect i {
    margin-right: 8px;
    font-size: 22px;
}

.btn-wpp-effect:hover {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

@keyframes pulseWpp {
    0%   { transform: scale(1);    box-shadow: 0 0 18px rgba(37, 211, 102, 0.6); }
    50%  { transform: scale(1.07); box-shadow: 0 0 28px rgba(37, 211, 102, 0.9); }
    100% { transform: scale(1);    box-shadow: 0 0 18px rgba(37, 211, 102, 0.6); }
}

/* ===== SECTION TWO ===== */
.section-two {
    padding: 60px 0;
    background: #fff;
}

.section-two h2 {
    text-align: center;
    font-weight: bold;
    color: #000;
    font-size: 26px;
}

/* ===== SERVICES LIST ===== */
.ulServices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ulServices li {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ulServices img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-left: 10px;
    margin-right: 10px;
}

/* ===== ORANGE BADGE ===== */
.bg-orange {
    background: #f5811e;
    color: #fff;
    max-width: fit-content;
    padding: 5px 20px;
    border-radius: 10px;
    font-family: NexaHeavy, 'Montserrat', sans-serif;
    text-align: center;
    margin: 30px auto 50px auto;
    font-size: 26px;
}

/* ===== ROW 800 ===== */
.row-800 {
    max-width: 800px;
    margin: 0 auto !important;
}

.row-800 img {
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

/* ===== FLOAT WHATSAPP ===== */
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 47px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    z-index: 9999;
    animation: pulse 1.6s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    transition: transform 0.2s;
    border: 2px solid #fff;
    text-decoration: none;
}

.float:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(37, 211, 102, 1);
}

@keyframes pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
    50%  { transform: scale(1.12); box-shadow: 0 0 25px rgba(37, 211, 102, 0.9); }
    100% { transform: scale(1);    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
}

/* ===== FOOTER ===== */
#footer {
    background: #373435;
    color: #eee;
    font-size: 14px;
    padding: 0 0 30px 0;
}

#footer .footer-top {
    background: #3f3f41;
    padding: 60px 0 30px 0;
}

#footer p {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #eee;
}

#footer a {
    color: #fff;
    transition: 0.3s;
}

#footer a:hover {
    opacity: 0.7;
    color: #fff;
}

.ulFooter {
    list-style: none;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.ulFooter li {
    display: inline-flex;
    padding: 5px;
}

.ulFooter li:hover {
    opacity: 0.7;
}

.ulFooter img {
    height: 35px;
    width: auto;
}

#footer .titulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 0;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #eee;
    margin: 0 !important;
}

#footer .containerCopyright {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    #bg-top .img-logo {
        margin: auto;
        display: block;
        margin-bottom: 30px;
    }

    .pPlanos {
        text-align: center !important;
    }

    p.maior {
        font-size: 15px !important;
    }

    .bg-orange {
        font-size: 18px;
    }

    .row-800 {
        width: 100% !important;
    }

    .row-800 img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px !important;
    }

    .ulServices img {
        margin-bottom: 15px;
    }

    .float {
        width: 45px;
        height: 45px;
        line-height: 42px;
        font-size: 25px;
        bottom: 25px;
        right: 20px;
    }

    .centralizar-mobile {
        text-align: center;
    }

    .centralizar-mobile .ulFooter {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .centralizar-mobile .ulFooter li {
        margin-bottom: 12px;
    }

    #footer p {
        text-align: center;
    }

    #footer .titulo {
        margin-top: 20px !important;
    }
}

@media (max-width: 767px) {
    .section-two {
        padding: 40px 0;
    }

    .bg-orange {
        font-size: 16px;
        padding: 5px 15px;
    }
}

/* ===== HELPERS ===== */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}
