@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

body.light-theme {
    background-color: #f4f4f9;
    color: #333;
}

body.light-theme .container,
body.light-theme .navbar,
body.light-theme footer,
body.light-theme header {
    background-color: #fff;
    color: #333;
}

body.light-theme .nav-links a {
    color: #333;
}

body.light-theme .nav-links a:hover {
    color: #f5b700;
}

body.light-theme footer {
    background-color: #fff;
    color: #333;
}

body.light-theme header {
    background-color: #fff;
    color: #333;
}

body.dark-theme {
    background-color: #111;
    color: #e0e0e0;
}

body.dark-theme .container,
body.dark-theme .navbar,
body.dark-theme footer,
body.dark-theme header {
    background-color: #111;
    color: #e0e0e0;
}

body.dark-theme .nav-links a {
    color: #e0e0e0;
}

body.dark-theme .nav-links a:hover {
    color: #f5b700;
}

body.dark-theme footer {
    background-color: #111;
    color: #f4f4f4;
}

body.dark-theme header {
    background-color: #111;
    color: #f4f4f4;
}

header {
    background-color: #f4f4f4;
    padding: 15px 0;
    transition: background-color 0.3s;
}

.navbar {
    display: flex;
    background-color: #f4f4f4;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    transition: background-color 0.3s;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.8em;
    font-weight: bold;
    color: #f5b700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f5b700;
}

.theme-toggle {
    font-size: 1.2em;
    cursor: pointer;
}

.login-btn {
    background-color: #f5a623;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #f39c12;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: transparent;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s, color 0.3s;
}

h2 {
    color: #ffd900;
    border-bottom: 2px solid #ffd900;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

p {
    font-size: 1em;
    line-height: 1.8;
    transition: color 0.3s;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #ffd900;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
}

footer {
    background-color: #1f1f1f;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
    position: relative;
    width: 100%;
    transition: color 0.3s;
}

footer p {
    margin-bottom: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.footer-btn {
    background-color: transparent;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.footer-btn:hover {
    background-color: transparent;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .container {
        padding: 20px;
    }

    .section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .left,
    .right {
        width: 100%;
        text-align: center;
    }
}

.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
}

.left,
.right {
    width: 48%;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 220px;
    align-items: center;
    text-align: center;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 220px;
    align-items: center;
    text-align: center;
}

.left img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.right img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.right p {
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.left p {
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.section .right h2, 
.section .left h2 {
    font-family: 'Poppins';
    font-size: 32px;
    font-weight: 700;
    margin-bottom: -10px;
    color: #f5b700;
    text-align: center;
    text-decoration: none;
    border-bottom: none;
}

.buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn, .btn1 {
    font-family: Arial;
    font-weight: bold;
    color: white;
    border: none;
    padding: 5px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    height: 50px;
    width: 145px;
    transition: background-color 0.3s;
    text-align: center;
}

.btn1 {
    background-color: #cb0101;
}

.btn {
    background-color: #f5b700;
}

.buttons-container .btn:nth-child(2) {
    background-color: #00bfff;
    color: white;
}

.buttons-container .btn:nth-child(2):hover {
    background-color: #005bbc;
}


.btn:hover {
    background-color: rgb(229, 153, 31);
}

.btn1:hover {
    background-color: #a60000
}

/* Estilo geral para os planos */
.plan-section .container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .plan-section .plan-card {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
    border: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
  }
  
  .plan-section .plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Cores dos planos no modo claro */
  body.light-theme .plan-section .plan-card {
    color: #000; /* Define uma cor padrão para o texto */
  }
  body.light-theme .plan-section .plan-card.quartz { border-color: #a0d8ef; background-color: rgba(160, 216, 239, 0.2); }
  body.light-theme .plan-section .plan-card.ouro { border-color: #f5c000; background-color: rgba(245, 192, 0, 0.2); }
  body.light-theme .plan-section .plan-card.ametista { border-color: #cda4de; background-color: rgba(205, 164, 222, 0.2); }
  body.light-theme .plan-section .plan-card.topazio { border-color: #58b3f7; background-color: rgba(88, 179, 247, 0.2); }
  body.light-theme .plan-section .plan-card.esmeralda { border-color: #67d367; background-color: rgba(103, 211, 103, 0.2); }
  body.light-theme .plan-section .plan-card.rubi { border-color: #e74c3c; background-color: rgba(231, 76, 60, 0.2); }
  body.light-theme .plan-section .plan-card.diamante { border-color: #a3d4f7; background-color: rgba(163, 212, 247, 0.2); }
  body.light-theme .plan-section .plan-card.obsidiana { border-color: #5e548e; background-color: rgba(94, 84, 142, 0.2); }
  
  /* Cores dos planos no modo escuro */
  body.dark-theme .plan-section .plan-card {
    color: #fff; /* Define uma cor padrão para o texto */
  }
  body.dark-theme .plan-section .plan-card.quartz { border-color: #8cc7e8; background-color: rgba(140, 199, 232, 0.15); }
  body.dark-theme .plan-section .plan-card.ouro { border-color: #d1a700; background-color: rgba(209, 167, 0, 0.15); }
  body.dark-theme .plan-section .plan-card.ametista { border-color: #b58bcf; background-color: rgba(181, 139, 207, 0.15); }
  body.dark-theme .plan-section .plan-card.topazio { border-color: #499fc9; background-color: rgba(73, 159, 201, 0.15); }
  body.dark-theme .plan-section .plan-card.esmeralda { border-color: #56b856; background-color: rgba(86, 184, 86, 0.15); }
  body.dark-theme .plan-section .plan-card.rubi { border-color: #c74433; background-color: rgba(199, 68, 51, 0.15); }
  body.dark-theme .plan-section .plan-card.diamante { border-color: #91bfe3; background-color: rgba(145, 191, 227, 0.15); }
  body.dark-theme .plan-section .plan-card.obsidiana { border-color: #51497c; background-color: rgba(81, 73, 124, 0.15); }
  
  /* Texto e botões */
  .plan-section .plan-card h2 { margin: 0; font-size: 1.5rem; }
  .plan-section .plan-card .price { font-size: 1.2rem; margin: 10px 0; }
  .plan-section .plan-card ul { list-style: none; padding: 0; margin: 0; }
  .plan-section .plan-card ul li { margin: 5px 0; font-size: 0.9rem; }
  
  .plan-section .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .plan-section .btn:hover {
    background-color: #555;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .plan-section .container {
      flex-direction: column;
      align-items: center;
    }
  
    .plan-section .plan-card {
      width: 90%;
      margin-bottom: 20px;
    }
  }
  