/* Reset */
:root {
  --bg-light: #f0f0f0;
  --bg-dark: #0a0a0a;
  --text-light: #111;
  --text-dark: #eee;
  --accent: #00f2fe;

   --cor-principal: #f7f7f7;
    --cor-secundaria: #00f2fe;
     --borda: 4px solid #00f2fe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
  transition:all .2s linear ease-in-out;
}

::-webkit-scrollbar-track{
    background: transparent;
}

::-webkit-scrollbar-thumb{
    background: #59B2F4;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover{
    background: #798EC8;
}

body.light-mode {
  background: var(--bg-light);
  color: var(--text-light);
}

body.dark-mode {
  background: var(--bg-dark);
  color: var(--text-dark);
}

body {
  transition: 0.4s ease-in-out;
  font-family: 'Segoe UI', sans-serif;
  transition: background 0.5s, color 0.5s;
}

.toggle-theme {
  position: fixed;
  top: 10px;
  right: 10px;
}

.toggle-theme #themeToggle{
  background: transparent;
  font-size: 1.3rem;
}


/* Botão tema */
.theme-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--highlight);
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
}



.botao-circular {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #59B2F4;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    border: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out;
    animation: imagemFlutuante 4s ease-in-out infinite;
    box-shadow: 0 1px 20px  #cf62a5; 
    z-index: 999;
}

.botao-circular:hover {
    background-color: #FEBBE4;
    box-shadow: 0 8px 12px #FEBBE4;
}

/* Responsividade */
@media (max-width: 768px) {
    .botao-circular {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}



h1 {
    text-align: center;
    padding: 20px 0;
    font-size: 2.2rem;
    background: linear-gradient(to right, #00d4ff, #07a4c3, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px;
}
.plan {
    background: linear-gradient(135deg, #0a2540, #00b4ff);
    border-radius: 15px;
    box-shadow: 0 0 20px #00b4ff44;
    width: 300px;
    padding: 25px;
    transition: transform 0.4s ease;
    position: relative;
}
.plan:hover {
    transform: scale(1.05);
}
.plan h2 {
    margin-top: 0;
    color: #ffffff;
}
.price {
    font-size: 28px;
    margin: 10px 0;
    font-weight: bold;
    color: #00ffff;
}
.features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.btn {
    display: block;
    text-align: center;
    background: #00ffff;
    color: #000;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.btn:hover {
    background: #00d4ff;
}

@media (max-width: 768px) {
    .pricing-table {
    flex-direction: column;
    align-items: center;
    }
}