body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

header {
    background: #ff6600;
    padding: 10px 0;
    color: white;
    text-align: center;
    position: relative;
    /* Garante que o header seja uma camada independente */
    z-index: 1000;
    /* Mantém o menu acima de outros elementos */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 140px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('fachada.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    animation: trocaFachada 10s infinite alternate;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@keyframes trocaFachada {
    0% {
        background: url('fachada.jpg') no-repeat center center/cover;
    }

    50% {
        background: url('fachada_coworking.jpg') no-repeat center center/cover;
    }
}

.hero h1 {
    font-size: 2.8rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.cta {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta:hover {
    background: #cc5500;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.carousel {
    position: relative;
    max-width: 80%;
    margin: 40px auto;
    overflow: hidden;
    height: 500px;
    /* Altura ajustada */
    border-radius: 12px;
    /* Arredonda os cantos do carrossel */
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slide img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Setas estilizadas */
button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    /* Sem fundo */
    color: #333;
    /* Apenas cor no texto */
    border: none;
    /* Sem bordas */
    cursor: pointer;
    font-size: 32px;
    /* Tamanho maior */
    font-weight: bold;
    /* Para destacar as setas */
    z-index: 10;
    transition: transform 0.3s ease, color 0.3s ease;
}

button.prev {
    left: 15px;
}

button.next {
    right: 15px;
}

button.prev:hover,
button.next:hover {
    color: #ff6600;
    /* Laranja ao passar o mouse */
    transform: scale(1.2);
    /* Leve aumento no hover */
}

.sobre {
    background-color: #f9f9f9;
    /* Fundo suave para destacar a seção */
    padding: 40px 20px;
    border-radius: 10px;
    /* Bordas arredondadas */
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.sobre h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.sobre .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Adaptação responsiva */
    gap: 20px;
    /* Espaçamento entre os cards */
    max-width: 1000px;
    margin: 0 auto;
}

.sobre .item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Sombra para destacar os cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.sobre .item:hover {
    transform: translateY(-5px);
    /* Efeito de leve movimento no hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    /* Sombra mais forte no hover */
}

.sobre .item h3 {
    font-size: 1.4rem;
    color: #ff6600;
    /* Destaque na cor do título */
    margin-bottom: 10px;
    text-align: center;
    /* Alinha o título ao centro */
}

.sobre .item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    /* Melhor espaçamento entre linhas */
    text-align: center;
    /* Opcional: também centraliza o texto do parágrafo */
}

.recepcao {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.recepcao .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.recepcao-item {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recepcao-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.text-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.recepcao-item:hover .text-overlay {
    background: rgba(255, 102, 0, 0.8);
}

.text-overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.text-overlay p {
    font-size: 1rem;
    line-height: 1.5;
}


.precos {
    background-color: #f9f9f9;
    /* Fundo suave */
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Sombra para destacar */
    max-width: 700px;
    margin: 40px auto;
}

.precos h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.precos p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    /* Melhor espaçamento entre linhas */
}

.precos p strong {
    color: #ff6600;
    /* Destaque para o preço */
    font-weight: bold;
}

.precos .cta {
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.precos .cta:hover {
    background-color: #cc5500;
    /* Cor mais escura no hover */
    transform: scale(1.05);
    /* Leve aumento no hover */
}

.precos .cta:active {
    transform: scale(0.95);
    /* Leve redução ao clicar */
}


.contato {
    background-color: #f9f9f9;
    /* Fundo suave para destacar a seção */
    padding: 40px 20px;
    border-radius: 10px;
    /* Bordas arredondadas */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Sombra para destaque */
    max-width: 600px;
    margin: 40px auto;
    box-sizing: border-box;
    /* Garante que padding e largura sejam calculados corretamente */
}

.contato h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.contato p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.contato form {
    display: flex;
    flex-direction: column;
    /* Alinha os campos verticalmente */
    gap: 15px;
    /* Espaçamento entre os campos */
    max-width: 100%;
    /* Garante que os campos não ultrapassem o contêiner */
}

.contato input,
.contato textarea {
    width: 100%;
    /* Largura total */
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Sombra interna para profundidade */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    /* Garante que o padding não ultrapasse a largura */
}

.contato input:focus,
.contato textarea:focus {
    border-color: #ff6600;
    /* Destaque ao focar */
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
    /* Glow suave */
    outline: none;
    /* Remove a borda padrão */
}

.contato textarea {
    resize: none;
    /* Impede o redimensionamento */
    height: 120px;
    /* Altura padrão */
}

.contato button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    /* Garante que o botão também respeite a largura do contêiner */
    box-sizing: border-box;
    /* Inclui o padding no tamanho total */
}

.contato button:hover {
    background-color: #cc5500;
    /* Cor mais escura no hover */
    transform: scale(1.05);
    /* Leve aumento no hover */
}

.contato button:active {
    transform: scale(0.95);
    /* Leve redução ao clicar */
}


.copa {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #ddd;
}

.copa .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.copa-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copa-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.copa-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.copa-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.copa-text ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #666;
}

.copa-text ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.copa-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.copa-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.copa-image img:hover {
    transform: scale(1.05);
}


/* Indicadores */
.indicators {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ff6600;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
}

footer .heart {
    color: #ff6600; /* Coração laranja */
    font-size: 1.2rem;
}

footer .custom-link,
footer .custom-link:visited { 
    color: #ff6600 !important; /* Cor laranja, mesmo se já tiver sido clicado */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer .custom-link:hover {
    color: #ffffff !important; /* Branco ao passar o mouse */
}


/* Estilo do botão menu hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    z-index: 1100;
    /* Garante que o botão sempre estará acima */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.popup-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.popup-content button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsividade para navegação */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ff6600;
        display: none;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        font-size: 20px;
        /* Reduz o tamanho geral */
    }

    .menu-toggle span {
        width: 25px;
        /* Reduz a largura das barras */
        height: 2px;
        /* Reduz a espessura das barras */
    }

    .logo img {
        height: 60px;
        /* Ajusta a altura da logo */
        max-width: 100%;
        /* Garante que ela não ultrapasse os limites */
    }

    header .container {
        justify-content: space-between;
        /* Ajusta o espaço entre os elementos */
    }

    .copa-content {
        flex-direction: column;
        /* Alinha verticalmente */
    }

    .copa-text {
        text-align: center;
        /* Centraliza o texto */
        margin-bottom: 20px;
    }

    .copa-text h2 {
        font-size: 1.8rem;
        /* Reduz tamanho do título */
    }

    .copa-text p {
        font-size: 1rem;
        /* Ajusta o tamanho do texto */
    }

    .copa-text ul {
        text-align: left;
        /* Alinha a lista à esquerda */
        margin: 0 auto;
    }

    .copa-image img {
        max-width: 100%;
        /* Garante que a imagem ocupe toda a largura disponível */
    }
}

.hero {
    background: url('fachada.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    animation: trocaFachada 10s infinite alternate;
    position: relative;
    z-index: 0;
    min-height: 100vh; /* ocupar a tela inteira */
    display: flex;
    align-items: flex-start; /* antes: center */
    padding-top: 60px;       /* espaço do topo */
    min-height: 100vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* NOVO LAYOUT EM DUAS COLUNAS NA HERO */
.grid-hero {
    display: flex;
    justify-content: space-between;
    align-items: center; /* antes estava flex-start */
    flex-wrap: wrap;
    gap: 40px;
}

.hero-texto {
    flex: 1;
    max-width: 600px;
    color: white;
    text-align: left;
}

.hero-texto h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-texto p {
    font-size: 1.2rem;
}

/* ESTILO DO FORMULÁRIO */
.lead-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.96);
    margin-top: -1%;
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
}

.lead-form h3 {
    font-size: 1.05rem;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.lead-form label {
    font-weight: bold;
    font-size: 0.95rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.radio-options label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* BOTÃO */
.lead-form {
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
}
.lead-form .cta {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.lead-form .cta:hover {
    background-color: #cc5500;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .grid-hero {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .hero-texto {
        text-align: center;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .lead-form {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin: 0 15px; /* 👈 espaçamento lateral seguro no mobile */
        box-sizing: border-box;
    }
}