@import url('https://fonts.googleapis.com/css2?family=Birthstone&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

a:link {
	color: inherit;
	text-decoration: none;
}
a:visited {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: none;
    color: #F48034;
}
a:active {
    text-decoration: none;
    color: inherit;
}

body{
    font-size: 1vw;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	padding: 0;
	margin: 0;
    background-color: #121212;
}

/* Estilo do header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

#topo {
    width: 98%;
    padding: 1%;
    height: 7vh;
    background: rgba(51, 51, 51, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9vw;
    font-weight: 300;
}

/* Logo e imagem centralizada */
.logo {
    width: 18%;
    margin-left: 2%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.logo img {
    width: 50%;
}

/* Menu horizontal */
.menu {
    width: 78%;
    margin-right: 2%;
    text-align: right;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1vw;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #F48034;
}

/* Estilo do submenu */
.submenu {
    display: none;
    position: absolute;
    background: rgba(51, 51, 51, 0.9);
    padding: 10px;
    z-index: 1000;
    text-align: left;
}

.submenu li {
    white-space: nowrap;
}

.submenu li a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    transition: background-color 0.3s;
}

.submenu li a:hover {
    color: #F48034;
}

/* Estilos para telas menores que 600px */
#menuToggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 3vw;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/*MODAL*/
#loginModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-content h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 1rem;
}

.modal-content label {
    color: #666;
    font-weight: bold;
    font-size: 0.9em;
    display: block;
    text-align: left;
    margin-top: 1rem;
}

.modal-content input[type="email"],
.modal-content input[type="password"] {
    width: 96%;
    padding: 2%;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    background-color: #f9f9f9;
    margin-top: 0.5rem;
    transition: border-color 0.3s;
}

.modal-content input[type="email"]:focus,
.modal-content input[type="password"]:focus {
    border-color: #f48034;
    outline: none;
}

.modal-content button {
    background-color: #f48034;
    color: #fff;
    font-size: 1.1em;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.modal-content button:hover {
    background-color: #d9692a;
}

#clientLink {
    display: block;
    color: #f48034;
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 1.5rem;
    text-decoration: none;
    padding: 0.5rem;
    border: 2px solid #f48034;
    border-radius: 8px;
    transition: color 0.3s, background-color 0.3s;
}

#clientLink:hover {
    color: #fff;
    background-color: #f48034;
}

#closeModal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #bbb;
    cursor: pointer;
    transition: color 0.3s;
}

#closeModal:hover {
    color: #333;
}

/* Inputs e botão */
input {
    padding: 1%;
    width: 98%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2vw;
}

button {
    background-color: #F48034;
    color: white;
    border: none;
    padding: 3%;
    font-size: 1.2vw;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

button:hover {
    background-color: #F45034;
}

/* Mensagem de erro ou deslogado */
p {
    text-align: center;
    color: red;
    font-size: 1.2vw;
}

/* Responsividade para dispositivos menores */
@media (max-width: 600px) {
    .modal-content {
        width: 60%;
        padding: 1%;
        font-size: 2vw;
    }

    input {
        font-size: 2vw;
        padding: 1%;
        width: 98%;
    }

    button {
        width: 100%;
        font-size: 2vw;
    }

    #closeModal {
        font-size: 3vw;
    }
}

@media (max-height: 500px) {
    .modal-content {
        width: 60%;
        padding: 1%;
        overflow-y: auto;
        font-size: 2vw;
    }
}

#conteudo{
    margin: 0;
    width: 100%;
    padding: 0%;
}

/*RODAPE*/
footer {
    font-size: 1rem;
    background-color: #121212;
    border-top: 2px solid #F48034;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 2%;
}

/* Estilos específicos para cada coluna */
.social-section {
    width: 27%;
    font-size: 0.9rem;
    font-weight: 300;
}

.location-section {
    width: 33%;
    font-size: 0.9rem;
    font-weight: 300;
}

.menu-section {
    width: 10%;
    font-size: 0.9rem;
    font-weight: 300;
}

.newsletter-section {
    width: 30%;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-content {
    display: block;  /* Ajustando o conteúdo para bloco para facilitar o alinhamento */
    text-align: left;
}

.footer-content h3 {
    color: #F48034;
    margin-bottom: 1%;
    text-transform: uppercase;
}

.footer-content p, .footer-content a {
    color: #fff;
    display: flex;
    text-align: left;
    width: 98%;
    font-size: 1vw;
}

.footer-content i {
    color: #F48034;
    margin-right: 2%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #fff;
}

.footer-section ul li {
    margin-bottom: 2%;
}

.footer-section a {
    text-decoration: none;
    color: #fff;
}

.footer-section a:hover {
    color: #F48034;
}

.social-icons {
    margin-top: 2%;
    color: #F48034;
    font-size: 1.5rem;
}

.social-icons a {
    color: #F48034;
    margin-right: 2%;
    display: inline-block;
}

.social-icons a:hover {
    color: #fff;
}

.footer-section form input {
    padding: 2%;
    width: 96%;
    margin-bottom: 2%;
    border: none;
    border-radius: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    border: 1px solid #F48034;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.3s;
    width: 96%;
}

.newsletter-form input[type="email"]:focus {
    border-color: #F48034;
}

.newsletter-form button {
    padding: 2%;
    background-color: #F48034;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #d96a2b;
}

.popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Fica acima de outros elementos */
}
.overlay {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Fica abaixo do popup */
}
.close {
    cursor: pointer;
    color: #aaa;
    float: right;
    font-size: 20px;
}
.close:hover {
    color: #000;
}
