/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
  height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0b0f19;
    color: #ffffff;
}

/* CONTAINER */

.container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* HEADER */
.topo {
    background: #12182b;
    padding: 18px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 160px;    /*Distancia menu logo*/
	position: relative;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
	text-decoration: none;
	color: inherit;
}

.logo img {
    width: 40px;
    height: auto;
}

.logo-text {
    font-size: 30px;
    font-weight: 800;
    color: #FF4500;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: foxFloat 4s ease-in-out infinite;
}

@keyframes foxFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0px); }
}

/* MENU */

.menu {
    display: flex;
    gap: 22px;
}

.menu a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 2px;
    transition: color 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5b7cfa, #9aa8ff);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #9aa8ff;
}

.menu a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    position: relative;
    min-height: 90vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("../img/datacenter.webp") center/cover no-repeat;
}

.hero h2 { 
    font-size: 42px; 
	margin-bottom: 20px; 
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(11, 15, 25, 0.85),
        rgba(11, 15, 25, 0.95)
    );
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FF4500;
    letter-spacing: -1px;

    animation: foxGlow 3s ease-in-out infinite alternate,
               foxFloat 4s ease-in-out infinite;
}

/* Glow elegante */
@keyframes foxGlow {
    from {
        text-shadow: 0 0 8px rgba(255,69,0,0.4);
    }
    to {
        text-shadow: 0 0 22px rgba(255,69,0,0.85);
    }
}

/* Leve flutuação */
@keyframes foxFloat {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}

/*FIM HERO TITLE*/

.hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #cfd6ff;
    margin-bottom: 36px;
}

/* BOTÃO */
.hero-btn {
    display: flex;
    justify-content: center;
}

.hero-btn-main {
    position: relative;
    padding: 18px 52px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #5b7cfa, #7f8dff);
    box-shadow: 0 10px 35px rgba(91,124,250,0.45);
    transition: all 0.35s ease;
}

.hero-btn-main::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #5b7cfa, #9aa8ff);
    opacity: 0.6;
    z-index: -1;
    filter: blur(12px);
}

.hero-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(91,124,250,0.75);
}

.card {
    background: #12182b;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.plans {
    padding: 80px 0;
    text-align: center;
}

.title {
    font-size: 38px;
    margin-bottom: 10px;
}

.subtitle {
    color: #bfc7ff;
    margin-bottom: 50px;
}

/* =========================
   PLANOS COM FUNDO HERO
========================= */

.hero-plans {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 100px;
    background: url("../img/datacenter.webp") center/cover no-repeat;
}

.hero-plans .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(11, 15, 25, 0.88),
        rgba(11, 15, 25, 0.95)
    );
}

.plans-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #12182b;
    padding: 40px 30px;
    border-radius: 18px;
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-8px);
}

.plan-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.plan-list {
    width: 100%;
    margin-bottom: 30px;
}

.plan-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
}

.btn-plan {
    margin-top: auto;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #5b7cfa, #7f8dff);
    box-shadow: 0 10px 35px rgba(91,124,250,0.45);
    transition: 0.3s;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(91,124,250,0.75);
}

/* =========================
   WHATSAPP CENTRAL
========================= */

.whatsapp-box {
    margin-top: 70px;
    text-align: center;
}

.whatsapp-box p {
    font-size: 18px;
    color: #cfd6ff;
    margin-bottom: 18px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    box-shadow: 0 10px 35px rgba(37,211,102,0.45);
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(37,211,102,0.7);
}

.price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.price span {
    font-size: 16px;
    color: #bfc7ff;
}

.plan-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-card ul li {
    margin-bottom: 12px;
}

.full {
    display: block;
    width: 100%;
}

.highlight {
    border: 2px solid #5b7cfa;
    transform: scale(1.00);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #5b7cfa;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.features { 
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 25px; 
   margin-bottom: 80px; 
}

.btn { 
   background: #5b7cfa; 
   padding: 10px 20px; 
   border-radius: 6px; 
} 

.btn.big { 
   padding: 14px 30px;
   font-size: 18px; 
}

/* =========================
   RESPONSIVO
========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
}

/* TABLET */
@media (max-width: 1024px) {
    .header-flex {
        gap: 20px;
    }

    .hero-title {
        font-size: 38px;
    }
}

/* MOBILE */
@media (max-width: 900px) {

    .header-flex {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }
	
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0b0f19;
        display: none;
        flex-direction: column;
        padding: 20px 0;
        z-index: 1000;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        padding: 14px 24px;
        width: 100%;
        margin: 0;
        font-size: 16px;
        color: #fff;
    }
	
	.menu a:hover {
        background: rgba(91,124,250,0.15);
        color: #9aa8ff;
    }
	
	/* remove animação da linha no mobile (opcional) */
    .menu a::after {
        display: none;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 16px;
    }
}

/* CELULAR PEQUENO */

@media (max-width: 480px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .logo-text {
    font-size: 22px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-btn-main {
    padding: 14px 36px;
    font-size: 15px;
  }
}

/* =========================
   REVENDA
========================= */

.revenda .revenda-text {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.revenda .revenda-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #d7ddff;
    margin-bottom: 22px;
}

.revenda .revenda-text strong {
    color: #ffffff;
}

/* =========================
   TESTE
========================= */

.teste-actions {
    margin-top: 50px;
    text-align: center;
}

.teste-actions .btn.big {
    margin-bottom: 40px;
}

/* =========================
   DIFERENCIAIS SEM CARDS
========================= */

.features-list {
    max-width: 900px;
    margin: 30px auto 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    text-align: center;
}

.features-list div {
    font-size: 16px;
    color: #ffffff;
    background: rgba(255,255,255,0.03);
    padding: 14px 18px;
    border-radius: 10px;
}

/* =========================
   TEXTO LINHAS CSP
========================= */

.centered-text {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.centered-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #cfd6ff;
    margin-bottom: 26px;
}

.centered-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.whatsapp-icon {
    font-size: 22px;
    line-height: 1;
}

.whatsapp-text {
    white-space: nowrap;
}

.footer {
    width: 100%;
    padding: 15px 10px;
    margin-top: auto;
    text-align: center;
    background-color: #0b0f1a; /* ajuste se quiser */
}

.footer p {
    margin: 0;
    font-size: 13px; /* diminui o texto */
    color: #b0b3c0;  /* cinza elegante */
}
