
:root {
  --blue: #0071BC;
  --blue-dark: #003366;
  --accent: #FFCC00;
  --bg: #FFFFFF;
  --muted: #F6F7F9;
  --text: #333;
  --radius: 10px;
  --container: 1200px;
    --backfriday: #040404;
}


 * {
     box-sizing: border-box
 }

 body {
     font-family: 'Open Sans', system-ui, Arial, sans-serif;
     margin: 0;
     color: var(--text);
     background: var(--bg)
 }

 a {
     color: inherit;
     text-decoration: none
 }

 .wrap {
     max-width: var(--container);
     margin: 0 auto;
     padding: 0 20px
 }

 header {
     background: linear-gradient(180deg, var(--bg), #f8fbff);
     border-bottom: 1px solid #e9eef6
 }

 .topbar {
     background: var(--backfriday);
     color: #fff;
     padding: 6px 0;
     font-size: 13px;
     text-align: center
 }

 .header-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 0
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 12px
 }

 .logo {
     display: inline-grid;
     place-items: center;
     width: 64px;
     height: 64px;
     border-radius: 8px;
     background: none;
     color: #fff;
     font-weight: 700
 }

 .brand h1 {
     font-size: 18px;
     margin: 0;
     color: var(--blue-dark)
 }

 nav {
     display: flex;
     gap: 20px;
     align-items: center
 }

 .menu a {
     color: var(--text);
     font-weight: 600
 }

  .menu {
    display: flex;
    align-items: center;
    gap: 32px; /* mais espaçamento entre links */
  }

 .btn-login {
     background: var(--blue);
     color: #fff;
     padding: 10px 14px;
     border-radius: 8px;
     font-weight: 700
 }

 /* Slider */
 .swiper {
     width: 100%;
     height: 480px;
     margin-top: 0
 }

 .swiper-slide {
     position: relative;
     background: #000;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden
 }

 .swiper-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: brightness(70%)
 }

 .swiper-slide .content {
     position: absolute;
     z-index: 2;
     text-align: center;
     color: #fff
 }

 .swiper-slide h2 {
     font-size: 42px;
     margin: 0;
     color: #fff;
     text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6)
 }

 .swiper-slide p {
     font-size: 18px;
     margin-top: 10px;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6)
 }

 /* Features */
 .features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 18px;
     padding: 36px 0
 }

 .card {
     background: #fff;
     border: 1px dashed #e7eef7;
     padding: 18px;
     border-radius: 10px;
     text-align: center
 }

 .card .icon {
     width: 100%;
     height: 56px;
     border-radius: 12px;
     display: inline-grid;
     place-items: center;
     margin-bottom: 12px;
     background: var(--muted)
 }

 /* Planos */
 .planos {
     padding: 50px 0;
     background: var(--muted);
     text-align: center
 }

 .plano ul li {
     margin: 6px 0;
     font-size: 15px;
 }

 .planos h2 {
     color: var(--blue-dark);
     font-size: 32px;
     margin-bottom: 30px
 }

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

 .plan {
     background: #fff;
     border-radius: 12px;
     padding: 28px;
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05)
 }

 .plan h3 {
     margin: 0 0 10px;
     color: var(--blue-dark)
 }

 .price {
     font-size: 26px;
     font-weight: 800;
     color: var(--blue);
     margin: 10px 0
 }

 .plan ul {
     list-style: none;
     padding: 0;
     margin: 0;
     color: #555;
     text-align: left;
     line-height: 1.6
 }



/* Itens que o plano oferece */
.item-ok::before {
  content: "✔";
  color: green;
  font-weight: bold;
  margin-right: 6px;
}

/* Itens que o plano NÃO oferece */
.item-no::before {
  content: "✖";
  color: red;
  font-weight: bold;
  margin-right: 6px;
}

 .contact-band {
     background: var(--blue);
     color: #fff;
     padding: 28px;
     border-radius: 8px;
     text-align: center;
     margin: 18px 0
 }

 .contact-band .btn-whats {
     background: var(--accent);
     color: #0b0b0b;
     padding: 12px 18px;
     border-radius: 8px;
     font-weight: 800;
     border: none
 }

 footer {
     background: var(--blue-dark);
     color: #cde5ff;
     padding: 28px 0;
     margin-top: -2px
 }

 footer small {
     display: block;
     color: #b6d9ff
 }

 

 .plan.destaque {
  border: 2px solid var(--accent);
  position: relative;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plan.destaque .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(45deg, #ff0000, #ff9900);
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-transform: uppercase;
}

.price .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  margin-right: 6px;
}

.btn-assinar {
    display: block;
    width: 100%;
    background: #007bff;
    color: #fff;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.2s;
}

.btn-assinar:hover {
    background: #0056b3;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slide img {
    transition: transform 0.3s;
}

.slide img:hover {
    transform: scale(1.1);
}

/* --- Tema Natal --- */
body {
    background-image: url('https://i.imgur.com/xQyqQyK.png');
    background-size: cover;
    background-attachment: fixed;
}

/* Borda natalina no topo */
header {
    border-bottom: 6px solid #c40000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Destaque Natal */
.badge {
    background: #c40000 !important;
    color: #fff !important;
    border-radius: 5px;
    font-weight: bold;
}

/* Efeito de neve (os flocos) */
.snowflake {
    position: fixed;
    top: -10px;
    color: #fff;
    font-size: 1em;
    user-select: none;
    pointer-events: none;
    animation: fall linear infinite;
    z-index: 9999;
}

@keyframes fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0.4;
    }
}

.whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
background:#ffffff;
color:#07bd43;
display:flex;
align-items:center;
gap:10px;
padding:12px 18px;
border-radius:30px;
font-weight:600;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.25);
transition:0.2s;
}

.whatsapp-btn:hover{
transform:scale(1.05);
}

.whatsapp-icon{
width:22px;
height:22px;
object-fit:contain;
}

body {
    background-image: none !important;
    background: #fff !important;
    /* ou a cor original do seu site */
    background-size: cover !important;
}