* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/*a:hover {
  color: var(--cor-02);
} */

:root {
  --cor-01: #1F4A6C;
  --cor-02: #CA48D8;
  --cor-03: #8852E4;
  --cor-04: #85D7C1;
  --cor-bg: #E5E5E5;
  --sidebar: #15312d;
}

.btn-primary {
  background-color: var(--cor-03) !important; 
  border: none;
}

.btn-primary:hover {
  background-color: var(--cor-01) !important; 
}

.btn-outline-primary {
  border: 1px solid var(--cor-01);
  color: var(--cor-01);
}

.btn-outline-primary:hover {
  background-color: var(--cor-01) !important;
  border: 1px solid var(--cor-01);
}

/* ---- CONFIG NAVBAR ---- */
.navbar {
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.nav-link {
  color: #fff;
  
}

.nav-link:hover {
  color: var(--cor-03);
  font-weight: 600;
}

@media (max-width: 768px) {
  .navbar {
    background-color: var(--cor-01);
  }
}


/* ---- CONFIG HOME ---- */

.hero-section {
  background: linear-gradient(334deg, #6b97f76b, #7425e267, #f7137d65);
  background-size: 180% 180%;
  animation: gradient-animation 6s ease infinite;
  z-index: 2;
  max-height: 160vh;
  padding: 5rem 0;
  color: #fff;
}

.hero-section .small-text {
  background-color: var(--cor-03);
  font-size: 1rem;
  color: var(--cor-bg);
  /* opacity: 0.9; */
  display: inline-block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
}

.hero-section .small-text i {
  color: gold;
}

.hero-section .hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 1rem 0;
  color: var(--cor-01);
  text-transform: uppercase;
}

.hero-section .hero-buttons .btn {
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
}

@media (max-width: 768px) {
  .hero-section .hero-title {
      font-size: 2rem;
  }
  .hero-section {
      padding: 4rem 1rem;
  }
}


@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*--- CONFIG FUNÇÕES ---- */
.funcao {
  background-color: var(--cor-03);
  /* background: linear-gradient(334deg, #6b97f76b, #7425e267, #f7137d65); */
}

.feature-box {
  display: flex;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: scale(1.05);
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eaf1ff;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 24px;
  color: var(--cor-03);
  transition: color 0.3s ease;
}

.feature-box:hover .icon-box {
  background-color: var(--cor-01);
}

.feature-box:hover .icon-box i {
  color: #ffffff;
}

.text-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--cor-bg);
}

.text-box p {
  font-size: 14px;
  color: var(--cor-bg);
  margin: 0;
}

/* Garantindo responsividade e alinhamento */
.feature-box {
  align-items: center;
}

.ebook h3 {
  color: var(--cor-03);
  font-weight: 600;
}

/*--- CONFIG PORTIFOLIO ---- */

.portfolio-section {
    background: linear-gradient(to left, #f8f9fa, #ffffff);
    padding: 2rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--cor-01);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--cor-01);
    margin-bottom: 2rem;
}

/* Botões */
.filter-btn {
    margin: 0.5rem 0.5rem 1rem 0.5rem; /* Espaçamento entre botões */
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.filter-btn.active {
    background-color: var(--cor-03);
    color: #fff;
    border: none;
}

/* Imagem */
#portfolio-image {
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Texto */
#portfolio-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cor-03);
    margin-bottom: 0.5rem;
}

#portfolio-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .portfolio-section .row {
        flex-direction: column-reverse; /* Coloca o texto acima da imagem no mobile */
    }

    #portfolio-image {
        margin-bottom: 1.5rem; /* Espaçamento maior no mobile */
    }

    .filter-btn {
        display: block; /* Deixa os botões em linha única */
        width: 100%;
        margin: 0.5rem 0; /* Ajusta o espaçamento entre eles */
    }
}


.features-section {
  background: linear-gradient(to left, #f8f9fa, #ffffff);
  padding: 3rem 1rem;
  border-radius: 8px;
}

.feature-section h3 {
  font-weight: bold;
  color: var(--cor-03);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--cor-03);
  margin-bottom: 0.5rem;
}

.features-section p {
  font-size: 1rem;
  color: var(--cor-01);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


/*--- CONFIG PLANOS ---- */
.pricing-section {
  background: linear-gradient(to left, #f8f9fa, #ffffff);
  color: #333;
  padding: 3rem 1rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--cor-01);
  margin-bottom: 1rem;
}

/* Planos */
.plan-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.plan-details {
    margin-bottom: 0;
}

.plan-details-user {
    font-size: 15px;
    color: #6b25f7;
}


.plan-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4c4c4c;
}

.plan-price {
  font-size: 2rem;
  color: #6b25f7;
  font-weight: bold;
  margin: 0.5rem 0 0.2rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.plan-price .price-period {
  font-size: 0.875rem;
  color: #4c4c4c;
  margin-left: 5px;
}

/* Tabela Comparativa */
.table-container {
  background: #f9f9f9;
  border-radius: 8px;
  overflow-x: auto; /* Garante barra de rolagem horizontal */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Define largura fixa para colunas */
}

.comparison-table thead {
  background: #6b25f7;
  color: #fff;
}

.comparison-table th, .comparison-table td {
  padding: 0.75rem 1rem;
  text-align: center; /* Alinha texto das colunas de planos */
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th.comparison-col,
.comparison-table td:first-child {
  text-align: left; 
  width: 25%; /* Define largura maior para a coluna "Comparativo" */
}

.comparison-table td {
  font-size: 0.9rem;
  color: #333;
}

/* ---- FOOTER ----  */

footer {
  background-color: var(--cor-bg);
  color: var(--cor-03);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-07 .menu {
  margin-bottom: 30px;
}

.footer-07 .menu a {
  color: var(--cor-01);
  font-weight: bold;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ftco-footer-social {
  display: flex;
  justify-content: center;
  gap: 10px; /* Espaço entre os ícones */
}

.ftco-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--cor-03);
  color: var(--cor-03);
  font-size: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.ftco-footer-social a:hover {
  border: 1px solid var(--cor-03);
  color: var(--sidebar);
}

/* Estilo geral do banner de cookies */
.cookies-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho do banner (inclui o ícone e a frase) */
.cookies-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
}

.cookies-header i {
  font-size: 24px;
  color: #ff9800;
  margin-right: 10px;
}

.cookies-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Texto explicativo */
.cookies-container p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  text-align: center;
}

.cookies-options label {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cookies-options input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #007bff;
}

/* Estilo do botão de salvar */
.cookies-save {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.cookies-save:hover {
  background-color: #0056b3;
}

/* Estilo responsivo */
@media (max-width: 600px) {
  .cookies-container {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }
}
