* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #F1F5F9;
    margin: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 40px; /* altura fixa para impedir que o logo estique a barra */
    overflow: hidden;
}

.btn-entrar {
    padding: 0.5rem 1rem;
    background-color: #cdd3d8;
    color: rgb(46, 44, 44);
    border-radius: 999px;
    border: 2px solid rgb(46, 44, 44);
    text-decoration: none;
    font-weight: bold;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.btn-entrar:hover {
    background-color: rgb(46, 44, 44);
    color: #cdd3d8;
    border: 2px solid #cdd3d8; /* garante que a largura e cor fiquem visíveis */
}

.home {
    background: #1e293b; /* ou qualquer cor clara que você queira */
    color: #fff;
    display: flex;       /* usa o flexbox */
    flex-direction: column; /* empilha tudo em coluna */
    justify-content: center; /* centraliza verticalmente */
    align-items: center;     /* centraliza horizontalmente */
    text-align: center;      /* centraliza o texto */
    min-height: 100vh;       /* ocupa a altura total da tela */
    padding: 2rem 2rem;
}

.instagram-text {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}


.logo {
    display: flex;
    align-items: center; /* alinha a imagem verticalmente dentro da div */
    height: 100%;
}

.home-section img {
  width: 1400px;  /* Ajuste conforme quiser */
  height: auto;
  display: block;
  margin: 0 auto;
}

.menu-container {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 2rem;
}

.menu li {
    margin-left: 1.5rem;
}


.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;

}

.menu a:hover {
    text-decoration: underline;
}

.home-section {
    background-color: #2c3e50;
    color: #f8fafc;
    padding: 10rem 2rem;
    text-align: center;
}

.home-section  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-button {
    margin: 1.5rem;
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 999px;
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, background 0.3s;
}

.home button:hover {
    background-color: #1da851;
    transform: scale(1.05);
}

.features-section {
    background-color: #f8fafc;
    color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
}

.features-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.features-section h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature-icon {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza horizontalmente */
  text-align: center;
}

.feature-icon i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0078d7;
}

.feature-icon p {
  margin: 0.5rem 0 0;
  font-weight: bold;
  font-size: 1rem;
}

.feature-icon small {
  display: block;
  font-weight: normal;
  font-size: 0.85rem;
  color: #555;
}

.feature-icon:hover {
  transform: translateY(-5px);
}


.typing-carousel {
    position: relative;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#typing-text {
    margin: 0;
    padding: 0;
    text-align: center;
}

.cursor {
    animation: blink 0.7s infinite;
    font-weight: 100;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.typing-transition {
    transition: opacity 0.3s ease; /* Adicione isso para melhorar a transição entre frases */
}

.pricing-section {
  background: #1e293b;
  padding: 4rem 2rem;
  text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.period-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.period-selector label {
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 500;
  border: 1px solid #ccc;
}

.period-selector input[type="radio"] {
  display: none;             /* Esconde o input nativo */
}

.period-selector input[type="radio"]:checked + label {
  background-color: #4CAF50; /* Cor de destaque quando selecionado */
  color: white;
  border-color: #4CAF50;
}

.period-selector label:hover {
  background-color: #e0e0e0;  /* Sutil ao passar o mouse */
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap; /* permite quebra de linha para responsividade */
  justify-content: center; /* centraliza os cards */
  gap: 0.5rem; /* controla o espaçamento horizontal e vertical (moderno) */
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #7f8c8d;
    text-align: center;
}

.pricing-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-column {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    transition: transform 0.3s ease;
}

.pricing-column:hover {
    transform: translateY(-10px);
}

.pricing-header {
    margin-bottom: 20px;
}

.price-setup-container {
  background-color: #5d6d7e;
  padding: 10px;
  border-radius: 8px;
  margin: 20px auto 0 auto;
  text-align: center;
  width: 80%;
}

.price-setup-container h4 {
  margin: 5px 0;
}

.plan-card {
  background-color: #34495e;
  color: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  max-width: 350px;
  margin: 0.25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible; /* <- aqui está o ponto chave! */
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.plan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajustável e responsivo */
  gap: 20px;
  justify-items: center; /* Centraliza os cards no eixo horizontal */
}

.plan-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.plan-price-month {
  font-size: 2rem; /* aumenta o preço por mês */
  font-weight: bold;
  color: whitesmoke;
  margin-bottom: 10px;
}

.plan-price-small {
    font-size: 1rem; /* para o 'R$' e ',00' */
}

.plan-price {
  font-size: 1rem;
  color: whitesmoke;
  margin-bottom: 10px;
}

.plan-period {
    font-size: 1.0rem;
    color: whitesmoke;
}

.plan-features {
    margin: 30px 0;
    text-align: left;
}
                
.plan-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    list-style-type: none;
}

.plan-features li:before {
    content: "\f00c"; /* Ícone de check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2ecc71;
    position: absolute;
    left: 0;
    top: 0;
}

.plan-features li.fire-feature:before {
    content: "\f06d"; /* Ícone de fogo */
    color: #ff6b35;
}

.plan-features li.magic-feature:before {
    content: "\f3a5"; /* Ícone de fogo */
    color: #2515ad;
}

.plan-features li.gears-feature:before {
    content: "\f085"; /* Ícone de fogo */
    color: #8a898f;
}

.plan-button {
    display: inline-block;
    background: #3498db;
    color: white;
    border-width: 2px 2px;
    border-style: solid;
    border-color: #3498db;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.plan-button:hover {
    background: #2980b9;
}

.popular-plan {
    position: relative;
    overflow: visible;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    opacity: 1;
    transition: none;
}

.btn-contrate-agora {
  background-color: #25D366;  /* Verde WhatsApp */
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-contrate-agora:hover {
  background-color: #1ebe5d;  /* tom um pouquinho mais escuro no hover */
  transform: translateY(-2px);
}

.footer {
  background-color: #0a0a0a;
  color: #f8f8f8;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 10px auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-contact strong {
  display: block;
  margin-top: 10px;
}

.footer-contact a {
  color: #f8f8f8;
  text-decoration: none;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  color: #f8f8f8;
  margin-right: 10px;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #ff6b35;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #9b9b9b;
  border-bottom: 1px dotted #444;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #f8f8f8;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #ff6b35;
}

.footer-bottom {
  background-color: #000;  /* ajuste para a cor desejada */
  color: #fff;
  padding: 1rem 2rem;
}

.footer-col a {
  color: #fff;  /* mantém a cor branca ou ajuste conforme desejar */
  text-decoration: none;  /* remove o sublinhado */
}

.footer-col a:hover {
  text-decoration: underline;  /* adiciona sublinhado ao passar o mouse, opcional */
}