/* Landing Page Promo - Conect Telecom */

:root {
    --azul-primario: #0066CC;
    --azul-escuro: #003D7A;
    --amarelo-destaque: #FFD100;
    --amarelo-hover: #FFC107;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --cinza-texto: #333333;
    --azul-gradiente: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
}

/* HIDE GLOBAL HEADER AND FOOTER */
header,
footer,
#header,
#footer,
.site-header,
.site-footer {
    display: none !important;
}

.lp-promocao-container {
    font-family: 'Outfit', sans-serif;
    color: var(--cinza-texto);
    margin: 0;
    padding: 0;
}

/* HERO SECTION */
.hero-lp {
    background: url('https://coneect.com.br/wp-content/uploads/2026/02/bg-lp-campanha.jpg') no-repeat center center !important;
    background-size: cover !important;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-lp .container {
    display: flex;
    justify-content: flex-end;
}

.plan-card-white {
    background: white;
    max-width: 450px;
    margin: 0;
    border-radius: 20px;
    padding: 0 0 30px 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: #333;
    text-align: center;
}

.plan-card-white .top-label-blue {
    background: #0060A9;
    color: white;
    padding: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-card-white .plan-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: #0060A9;
    line-height: 0.8;
    margin: 30px 0 15px;
}

.plan-card-white .main-benefits {
    font-weight: 700;
    font-size: 0.9rem;
    margin: 15px 0;
    padding: 0 20px;
}

.plan-card-white .wifi6-badge img {
    max-width: 120px;
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 50px;
}

.plan-card-white .streamings-box {
    background: #E89122;
    padding: 15px;
    border-radius: 12px;
    max-width: 90%;
    margin: 20px auto;
}

.plan-card-white .streamings-box .box-title {
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 10px;
}

.plan-card-white .stream-card {
    background: white;
    padding: 8px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card-white .stream-card img {
    max-height: 25px;
    margin-bottom: 5px;
    width: 50px;
}

.plan-card-white .price-box .value {
    color: #0060A9;
    font-size: 3.5rem;
    font-weight: 900;
}

/* FORM GRID */
.section-form {
    padding: 40px 0;
}

.form-box {
    max-width: 800px;
    margin: -80px auto 0;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.form-lp input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
}

/* VALUE PROPS */
.cards-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.card-servico {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* ANIMATION SUPPORT */
.btn-city:hover svg path {
    stroke-dashoffset: 0 !important;
}

svg path#btn-icon {
    stroke: #fff;
    stroke-width: 2px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.8s ease;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-lp .container {
        justify-content: center;
    }

    .plan-card-white {
        max-width: 100%;
    }

    .form-box {
        margin-top: -50px;
        padding: 20px;
    }

    .form-lp .col-md-6,
    .form-lp .col-md-8,
    .form-lp .col-md-4 {
        margin-bottom: 15px;
    }
}