html, body {
    font-size: 12px; /* ou 12px, conforme desejar */
}
.btn i {
    font-size: .8rem;
}
/* Gira o sino suavemente */
.Title{
    text-align: center;

}
.sino-giratorio {
    height: 50px;
    /* animation: girar 2s linear infinite; */
    transform: rotate(40deg);  /* rotaciona 45 graus */
    display: inline-block;      /* garante que a rotação funcione bem no inline */
}

@keyframes girar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Exemplo de outras customizações */
.navbar-brand {
    font-weight: bold;
    font-size: 1.0rem;
    padding-top: 10px;
    padding-bottom: 5px;
}

.texto-logo {
    font-family: Verdana, Geneva, Tahoma, sans-serif; /* substitua pela fonte que quiser */
    font-weight: bold;                 /* negrito */
    font-size: 1.2rem;                 /* tamanho da fonte */
    color: #73490d;                        /* cor do texto */
    text-decoration: none;
}

.titulo-principal{
    padding-top: 80px;
    color: #261804;
    font-weight: bold;
}
/* Container do formulário */
.warp {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

/* Área do formulário */
#form-contato {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 500px; /* 🔹 limita a largura */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
/* Título */
.footer-title {
    font-weight: bold;
    font-size: 1.3rem;
    color: #261804;
    text-align: center;
    margin-bottom: 20px;
}
/* Botão */


#form-contato button {
    background-color: white;
    font-weight: 600;
    border-radius: 8px;
    color: #0d6efd !important;
    border: 2px solid #0d6efd;
    transition: all 0.3s ease;
}

/* Efeito hover */
#form-contato button:hover {
    background-color: #0d6efd;
    color: #fff !important;
    border-color: #0d6efd;
}

/* Labels */
#form-contato .form-label {
    font-weight: 500;
    color: #333;
}
/* Rolagem suave */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
}
/* .navbar {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 30;
}
.navbar-brand {
    font-weight: bold;
    color: #2b4c7e !important;
    text-decoration: none;
} */

footer {
    text-align: center;
    margin-top: 40px;
    padding: 40px 20px;
    color: #666;
    font-size: 0.9em;
    background-color: #f1f1f1;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #261804;
}

.footer-section {
    margin-bottom: 20px;
}
.footer-section {
    transition: all 0.3s ease;
}
footer a {
    color: #2b4c7e;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.form-label {
    font-weight: 500;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.btn-outline-primary{
    box-shadow: #261804 !important;
    color: #261804 !important;
    border-color: #261804 !important;
}

.btn-outline-primary:hover {
    background-color: #261804 !important;
    color: #fff !important; /* texto branco ao passar o mouse */
    box-shadow: 0 0 8px #261804 !important;
} 

.btn-primary{
    box-shadow: #261804;
    color: #000;
    border-color: #000;
    background-color: white;
}

.btn:hover{
    /* box-shadow: #261804; */
    color: #fff;
    border-color: #000;
    background-color:#261804 
}

.btn-primary:hover{
    box-shadow: #261804;
    color: #fff;
    border-color: #000;
    background-color:#261804 
}

.text-primary{
    color: #c8790a  !important;
}

a {
    color: #c8790a;
    text-decoration:underline;
}
.text-decoration-none{
    text-decoration: underline !important;
}


/* Layout principal */
#plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    list-style: none;
    margin: 0;
}
  
/* Cada card de plano */
.plan {
background: #fff;
border-radius: 1.5rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
width: 260px;
transition: all 0.3s ease;
border: 1px solid #f0f0f0;
}

.plan:hover {
transform: translateY(-8px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
border-color: #0d6efd;
}

/* Container interno */
.planContainer {
display: flex;
flex-direction: column;
align-items: center;
padding: 1.8rem 1.2rem;
height: 100%;
}

/* Título do plano */
.plan .title h2 {
font-size: 1.4rem;
color: #0d6efd;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 0.5rem;
}

/* Preço */
.plan .price p {
font-size: 1.6rem;
font-weight: 700;
color: #212529;
margin-bottom: 1rem;
}

.plan .p1 {
color: #198754;
}

.plan .p2 {
color: #0d6efd;
}

/* Opções (lista de recursos) */
.plan .options {
list-style: none;
padding: 0;
margin: 1rem 0;
text-align: center;
}

/* .plan .options li {
font-size: 0.95rem;
color: #555;
line-height: 1.6;
} */

/* Botão Comprar */
.plan .button2 a {
display: inline-block;
background: #0d6efd;
color: #fff;
text-decoration: none;
padding: 0.6rem 1.2rem;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}

.plan .button2 a:hover {
background: #0b5ed7;
transform: scale(1.05);
}
#plans li::marker {
    content: none;
  }
  
/* Responsividade */
@media (max-width: 768px) {
#plans {
    flex-direction: column;
    align-items: center;
}

.plan {
    width: 100%;
    max-width: 350px;
}

}

.licenca{
    text-align: center;
    font-weight: bold; 
}

.parti{
    text-align: center;
}


/* Layout geral */
.gerador-layout {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Sidebar fixa */
.gerador-sidenav {
    position: fixed;
    top: 80px; /* altura do navbar */
    left: 0;
    width: 220px;
    height: calc(100vh - 60px);
    background: #ffffff;
    border-right: 1px solid #e9ecef;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Conteúdo principal */
.gerador-content {
    margin-left: 90px !important; /* reserva espaço para sidebar */
    padding: 20px;
    padding-top: 60px; /* reserva espaço navbar */
    flex: 1;
    box-sizing: border-box;
}

/* Cards responsivos */
#plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.planContainer .title h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.planContainer .price p {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.planContainer .options li {
    margin-bottom: 8px;
}

.button2 a {
    display: inline-block;
    padding: 8px 16px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

.button2 a:hover {
    background: #084298;
}

/* Ajustes responsivos */
@media (max-width: 991px) {
    .gerador-sidenav {
        width: 200px;
    }
    .gerador-content {
        margin-left: 200px;
    }
}

@media (max-width: 768px) {
    .gerador-sidenav {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        border-right: none;
    }
    .gerador-content {
        margin-left: 420px;
        padding-top: 20px;
    }
}

/* Estilo normal */
.submenu a {
    display: block;
    padding: 6px 20px;
    color: #ddd;
    text-decoration: none;
    transition: 0.2s;
  }
  
  /* Hover */
  .submenu a:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  /* Destaque quando clicado */
  .submenu a.active {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 6px;
  }
  