
/* Header */

header {
    width: 100%;
    padding: 10px 2%;
    position: fixed;
    top: 0;
    left: 0;
    transition: 1s;
    background-color: white;
    z-index: 1;
}

header .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

header.scrolling {
    padding: 10px 2%;
    background-color: #fff;
}

header.scrolling a {
    color: black;
    font-weight: 500;
}


.s-menu {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 6rem;
}

.s-menu ul {
    display: flex;
    flex-direction: row;
    margin-right: 100px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo_imagem {
    width: 300px;
    height: 80px;
}

.nav-list {
    display: flex; /* Exibe os itens em linha */
    align-items: center;
    margin-right: 10rem; /* Centraliza os itens verticalmente */
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    font-size: 1.15rem;
    color: #000;
    font-weight: 400;
}

.login-button {
    display: flex;
    align-items: center;
    width: 150px;
}

.login-button button {
    border: none;
    background-color: #250C80;
    padding: 15px;
    border-radius: 5px;
}

.login-button button a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: .9rem;
  }

.mobile-menu {
    display: none;
}

.mobile-menu-icon {
    display: none;
}


.containers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 150px;
    gap: 20px;
}

/* Preco */
.form-container {
    width: 820px;
    background: linear-gradient(180deg, rgba(37, 12, 128, 0.5) 0%, rgba(93, 79, 141, 0.25) 100%);    
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 10px;
}

h2 {
    font-size: 32px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    color: #250C80;
    margin-bottom: 20px;
    justify-content: center;
    display: flex;

}



.form-container label {
    display: block;
    font-size: 14px;
    color: #3a215a;
    text-align: left;
    margin-bottom: 5px;
    
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle; /* Alinha o checkbox verticalmente com o texto */
    margin-right: 5px;
}

.checkbox-group {
    text-align: left;
    color: #3a215a;
    font-size: 14px;
}

.checkbox-item {
    display: flex;  /* Flexbox para alinhar o checkbox e o texto horizontalmente */
    align-items: center;  /* Alinha o checkbox e o texto verticalmente */
    margin-bottom: 8px;  /* Espaçamento entre os itens */
}

.form-container input[type="checkbox"] {
    margin-right: 2px;
    
}

.form-container .submit-btn {
    background-color: #6c4b9e;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.form-container .submit-btn:hover {
    background-color: #5a3d7d;
}

.form-container .phone-group {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.form-container .phone-group span {
    background-color: #d3c5f7;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    border-right: none;
    color: #3a215a;
    font-size: 14px;
}

.form-container .phone-group input[type="tel"] {
    border-radius: 0 5px 5px 0;
    width: 100%;
    border-left: none;
    padding: 8px;
}

/* FOOTER */
.roda-pe {
    background-color: #250C80;
    height: 40vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    position: relative; /* Define position como relative */ /* Z-index menor que o header, para garantir que ele fique por baixo */
}

.contato {
    margin-left: 400px;
    margin-right: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
}

.titulo {
    margin-bottom: 10px;
    color: white;
}

.endereco {
    font-size: 1rem;
}

.numero {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.politica {
    font-weight: 600;
    text-decoration: underline white;
    text-decoration-thickness: .1rem;
    margin-bottom: 30px;
}

.redes-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    
}

.redes-footer h2{
    display: flex;
    flex-direction: column;
    margin-left: 7px;
    margin-bottom: 5px;
    color: white;
}

.redes-sociais {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fa-brands {
    margin-right: 1rem;
    color: white;
}

.button-footer-item {
    border:3px solid white;
    border-radius: 25px;
    padding: 15px;
    font-weight: bold;
    color: white;
}

.copyright {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

dialog::backdrop {
    background-color: rgb(0 0 0 / .5);
}

dialog {
    border: none;
    border-radius: .5rem;
    box-shadow: 0 0 1em rgb(0 0 0 / .3);
    width: 80%;
}

/* Design do site em diferentes tamanhos de tela*/
@media screen and (max-width: 600px) {

    .content {
        display: none;
    }
  
    .content.show {
        display: flex;
    }
    
    #container {
        display: flex;
        flex-direction:column;
        align-items:normal;
        padding: 20px;
        
    }
  
    header.scrolling {
        padding: 10px 2%;
        background-color: #fff;
    }
    
  
    .icon {
        width: 40px;
        height: 40px;
        transition: .1s ease-in-out;
        
    }

  
    .nav-item {
        display: none;
        
    }
  
    .nav-link {
        color: black;
        font-weight: 500;
        
    }
  
    .login-button {
        display: none;
    }
  
    .mobile-menu-icon {
        display: block;
    }
  
    .mobile-menu-icon button{
        background-color: transparent;
        border: none;
        cursor: pointer;
    }
  
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
        
    }
  
    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
        
    }
  
    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
        
    }
  
  
  
    .mobile-menu .login-button {
        display: block;
        padding: 1rem 2rem;
    }
  
    .mobile-menu .login-button button {
        width: 100%;
    }
    
    .open {
        display: block;
        background-color: white;
        transition: .0s ease;
        
    }
  
    .logo_imagem {
        width: 150px;
        height: 50px;
    }
  
    /* main */
    .price-title {
        margin-top: 10rem;
    }

    main {
        margin-bottom: 10rem;
        padding-bottom: 0px;
    }
  
    .containers {
        height: 0;
        width: 100%;
        height: 100%;
        margin: auto;
    }

    .form-container {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
  
    .cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
        padding: 20px;
    }
    
    
    .card-img {
        height: 200px;
        width: 200px;
    }
  
    
    .title-card {
        font-size: 40px;
        color: #250C80;
    }
  
  
    .text-left {
        text-align: center;
        font-size: 10px;
    }
  
    .text-center {
        text-align: center;
        font-size: 1rem;
    }
  
    .roda-pe {
        width: 100%;
        height: 50vh;
        display: flex;
        flex-direction: column;
    }
  
    .contato {
        width: 100%;
        margin: 0;
        align-items: center;
    }

    .redes-footer {
        width: 100%;
        margin: 0;
        align-items: center;
    }

    .redes-footer h2 {
        margin-top: 20px;
    }

    .redes-sociais {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-left: 15px;
    }

    .copyright p {
        font-size: .9rem;
    }

    
    .fa-brands {
        margin-right: 1rem;
        color: white;
    }
  
  }