/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header-principal {
  background: #0d1b2a; /* fundo principal do topo */
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-principal {
  background: #001f3f; /* azul mais claro pra diferenciar */
  width: 100%;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* sombra suave */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* borda sutil */
  z-index: 999;
  position: sticky;
  top: 0;
}

.menu-principal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-principal ul li {
  display: inline-block;
  margin: 0 20px;
}

.menu-principal ul li a {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-principal ul li a:hover {
  color: #00c896; /* Verde claro no hover */
}

.logo img {
  height: 180px;
  width: auto;
  margin-top: 20px;
}

.menu-principal.menu-compacto {
  padding: 8px 0; /* reduz o espaço vertical */
  background: #001b39; /* escurece um pouco pra mostrar que está em "modo rolagem" */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* sombra um pouquinho mais forte */
  transition: all 0.3s ease;
}

.menu-principal.menu-compacto ul li a {
  font-size: 15px; /* diminui um pouco o tamanho da fonte */
}

/* Hero Section */
.hero {
  background: #002244;
  color: white;
  padding: 100px 20px 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

.hero .cta-button {
  margin-top: 25px;
  padding: 15px 30px;
  background: #00c853;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero .cta-button:hover {
  background: #00b94f;
}

/* Pacotes de Cibersegurança - Versão Premium */
.packages {
  padding: 80px 20px;
  background: #f9fbfd;
}

.packages-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  position: relative;
}

.packages-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00b894;
  margin: 15px auto 0 auto;
  border-radius: 5px;
}

.package-card.destaque {
  border: 2px solid #00b894;
}

.package-card h3 {
  font-size: 22px;
  background: #f1f3f5;
  padding: 8px 20px;
  border-radius: 30px;
  margin: 0 auto 20px auto;
  font-weight: 700;
  text-align: center;
}

.badge-popular {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #00b894;
  color: #ffffff;
  padding: 5px 14px;
  font-size: 12px;
  border: 2px solid #ffffff;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
}

.package-price {
  font-size: 22px;
  font-weight: 600;
  color: #2d3436;
  margin: 20px auto;
  text-align: center;
  width: 100%;
}



.package-features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.package-features li::before {
  content: "✔️";
  color: #00b894;
  font-weight: 600;
  font-size: 14px;
  min-width: 16px;
}

/* REMOVE o ícone apenas da linha de destaque */
.feature-highlight::before {
  content: "";
  display: none;
}

.feature-highlight {
  background: #eafaf1;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}





/* Consultoria em Cibersegurança */
.consultoria {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  text-align: center;
}

.consultoria-overlay {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.consultoria h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
}

.consultoria p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #334155;
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.btn-whatsapp img {
  width: 20px;
  margin-right: 10px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

/* Formulário de Contato */
.contact {
  padding: 100px 20px;
  background: #f7f9fc;
}

.contact h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.submit-button {
  background: #00c853;
  color: white;
  font-size: 18px;
  padding: 15px;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #00b347;
}

.cf-turnstile {
  margin-top: 20px;
}

.footer-logo img {
  width: 150px;
}

/* Tag Mais Popular */
.popular-tag {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #00c853;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* WhatsApp CTA */
.whatsapp-cta {
  padding: 60px 20px;
  background: #e0f7fa;
  text-align: center;
}

.whatsapp-button {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 25px;
  background: #25D366;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background: #1ebe5d;
}

/* Casos reais */
.cases {
  padding: 60px 20px 60px 20px;
  background: #f9fbfd;
  text-align: center;
}

.cases-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.cases-title {
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 28px; /* Altura e largura equilibradas */
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
  line-height: 1;
  text-align: center;
}

.cases-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #e63946;
  margin: 15px auto 0 auto;
  border-radius: 5px;
}

.cases-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cases-grid {
    grid-template-columns: 1fr; /* mobile */
  }
}

.case-card {
  background: #ffffff;
  border: 2px solid #e63946;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease; /* Smooth transition para borda e sombra */
  position: relative;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px; /* Tamanho da borda animada */
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.case-card:hover::before {
  opacity: 1;
}

.case-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  background: #f1f1f1;
  padding: 10px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.case-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-content h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #333;
  text-align: left;
}

.case-content p {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #555;
  text-align: left;
}

.case-source {
  font-size: 12px;
  color: #777;
  margin-top: auto;
  text-align: left;
}

.cases-title-wrapper-alt {
  text-align: center;
  margin-bottom: 50px;
}

.cases-title-alt {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  position: relative;
  display: inline-block;
}

.cases-title-label {
  display: inline-block;
  padding: 8px 20px;
  background-color: #e63946; /* vermelho */
  color: #fff; /* texto branco */
  border: 2px solid #e63946;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.15);
  transition: all 0.3s ease;
}

.cases-title-label:hover {
  background-color: #fff;
  color: #e63946;
}

/* Conteúdo do Card */
.case-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-content h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}

.case-content p {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #333;
}

.case-source {
  font-size: 12px;
  color: #777;
  margin-top: auto;
}

/* Consultoria */
.consultoria {
  padding: 100px 20px;
  text-align: center;
  background: #ffffff;
}

.consultoria h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.consultoria p {
  max-width: 800px;
  margin: 0 auto 25px auto;
  font-size: 18px;
  line-height: 1.5;
}

.consultoria-button {
  margin-top: 15px;
  padding: 15px 30px;
  background: #0066cc;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.consultoria-button:hover {
  background: #004c99;
}

/* Diferenciais */
.differentials {
  padding: 100px 20px;
  background: #e0f7fa;
}

.differentials h2 {
  font-size: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.differential-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: center;
}

.differential-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.differential-item .icon {
  font-size: 36px;
  margin-bottom: 15px;
}

/* Contato */
.contact {
  padding: 60px 20px;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

form input, form select, form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

form textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  background: #00c853;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.submit-button:hover {
  background: #00b94f;
}

/* Footer */
footer {
  background: #001833;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 14px;
  margin: 5px 0;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
}

/* Texto "Fale conosco" acima do botão */
.whatsapp-popup {
  margin-bottom: 8px;
  font-size: 13px;
  color: #25d366;
  background: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: 600;
  white-space: nowrap;
}

/* Contêiner redondo do ícone */
.whatsapp-icon-container {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

/* Hover: leve aumento no ícone */
.whatsapp-float:hover .whatsapp-icon-container {
  transform: scale(1.05);
}

/* Ícone do WhatsApp */
.whatsapp-icon {
  width: 32px;
  height: 32px;
}


.info-icon {
  margin-left: 8px;
  cursor: pointer;
  font-weight: bold;
  color: #00b894;
}






.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}






.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}


.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}
@media (max-width: 768px) {
  

  .tooltip-text::after {
    left: 20px;
    transform: none;
  }
}






.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.info-small:hover 
.package-subtitle {
  font-weight: 600;
  color: #1e9c89;
  font-size: 15px;
  display: inline-block;
}
/* Container geral */
.packages {
  padding: 60px 20px;
  background-color: #f9fbff;
}

.packages-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2d3436;
}

/* Badge no topo */
.pill-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff5c8d;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Título do card */
.package-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 12px;
}

/* Subtítulo */


.package-subtitle {
  display: inline-block;
}

/* Tooltip */






.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #2d3436 transparent;
}

.info-small:hover 

/* Lista de recursos */


/* Estilo dos selos de recurso */
/* Selos (pills) de recursos */




/* Botão CTA */





/* Responsividade */
@media (max-width: 768px) {
  
}













.titulo-clean {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}



.package-button-clean {
  display: inline-block;
  padding: 8px 20px;
  background-color: #635bff;
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
}

.package-button-clean:hover {
  background-color: #5145cd;
}







.package-features-clean li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}





.tooltip-icon:hover +

/* Estilos atualizados da seção de pacotes */
.packages {
  padding: 80px 20px;
  background: #f9fbfd;
}

.packages-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  position: relative;
}

.packages-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00b894;
  margin: 15px auto 0 auto;
  border-radius: 5px;
}

.package-card.destaque {
  border: 2px solid #00b894;
}

.package-card h3 {
  font-size: 22px;
  background: #f1f3f5;
  padding: 8px 20px;
  border-radius: 30px;
  margin: 0 auto 20px auto;
  font-weight: 700;
  text-align: center;
}

.package-price {
  font-size: 22px;
  font-weight: 600;
  color: #2d3436;
  margin: 20px auto;
  text-align: center;
  width: 100%;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
}

.package-features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.package-features li::before {
  content: "✔️";
  color: #00b894;
  font-weight: 600;
  font-size: 14px;
  min-width: 16px;
}

.feature-highlight::before {
  content: "";
  display: none;
}

.feature-highlight {
  background: #eafaf1;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package-profile {
  font-size: 15px;
  color: #2d3436;
  margin: 15px auto;
  text-align: center;
  position: relative;
}

.info-icon {
  margin-left: 8px;
  cursor: pointer;
  font-weight: bold;
  color: #00b894;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.tooltip-text::after {
    left: 20px;
    transform: none;
  }

.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.info-small:hover 
.package-subtitle {
  font-weight: 600;
  color: #1e9c89;
  font-size: 15px;
  display: inline-block;
}

.packages {
  padding: 60px 20px;
  background-color: #f9fbff;
}

.packages-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2d3436;
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.package-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 12px;
}

.package-profile {
  font-size: 14px;
  font-weight: 600;
  color: #1e3799;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  gap: 6px;
  text-align: center;
  flex-wrap: wrap;
}

.package-subtitle {
  display: inline-block;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #2d3436 transparent;
}

.info-small:hover 

/* Lista de recursos */
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.titulo-clean {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}


.package-button-clean {
  display: inline-block;
  padding: 8px 20px;
  background-color: #635bff;
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
}

.package-button-clean:hover {
  background-color: #5145cd;
}

.divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 10px 0;
}

.feature-title {
  font-weight: 600;
  font-size: 15px;
  color: #1f2937;
}

.package-features-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features-clean li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.tooltip-icon:hover + 

.package-card.clean {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  color: #1f2937;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.titulo-clean {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.package-profile-clean {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #4b5563;
  position: relative;
}

.package-profile-clean .info-small {
  position: relative;
  display: inline-block;
}

.package-profile-clean .tooltip-text {
  display: none;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 100;
  white-space: normal;
  min-width: 200px;
  max-width: 260px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.package-profile-clean .info-small:hover .tooltip-text {
  display: block;
}

.package-button-clean {
  display: inline-block;
  padding: 8px 20px;
  background-color: #635bff;
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
}

.package-button-clean:hover {
  background-color: #5145cd;
}

.divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 10px 0;
}

.feature-title {
  font-weight: 600;
  font-size: 15px;
  color: #1f2937;
}

.package-features-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features-clean li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.tooltip-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #e0e0e0;
  color: #333;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
  user-select: none;
  margin-left: 8px;
}

.tooltip-text {
  display: none;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  font-size: 12.5px;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: normal;
  min-width: 220px;
  max-width: 280px;
  z-index: 9999;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

.tooltip-icon:hover + .tooltip-text {
  display: block;
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  row-gap: 40px;
  margin-top: 40px;
}

.package-card.clean {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  color: #1f2937;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  width: 100%;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
