/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--azul-textos);
}

/* CABEÇALHO */
.header {
    background: var(--azul-textos);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(51, 51, 133, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--verde-principal);
}

/* Botão Fale Conosco */
.btn-contato {
    background-color: var(--verde-principal);
    color: var(--branco);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contato:hover {
    background-color: #2bc79e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(54, 212, 181, 0.3);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background-color: var(--azul-icones);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--azul-principal);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 861px) {
    .whatsapp-float {
        display: flex;
    }
}

/* Menu Hambúrguer (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--branco);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* SEÇÃO BANNER */
.banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.0);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--azul-textos) 0%, rgba(41, 171, 226, 0.1) 100%);
    opacity: 0.95;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px; /* Para compensar o header fixo */
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

/* Quadrado Verde com Texto */
.banner-text-box {
    background-color: var(--verde-principal);
    padding: 3rem 2.5rem;
    border-radius: 0 0 20px 20px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-left: 16rem;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-textos);
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--azul-textos);
    font-weight: 700;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: var(--azul-textos);
    font-weight: 500;
    line-height: 1.4;
}



/* RESPONSIVIDADE */

/* Tablet */
@media screen and (max-width: 861px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background-color: var(--azul-textos);
        width: 100%;
        height: auto;
        min-height: fit-content;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0 2.5rem 0;
        gap: 0;
        list-style: none;
        padding-left: 0;
        margin: 0;
        align-items: center;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .banner-container {
        padding: 80px 1rem 2rem 1rem;
        align-items: flex-start;
    }

    .banner-text-box {
        margin-left: 0;
        max-width: 100%;
        border-radius: 0 0 15px 15px;
        margin-top: -80px;
    }

    .banner-title {
        font-size: 2rem;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    .btn-contato {
        padding: 0.6rem 1.2rem;
        font-size: 13px;
    }

    .banner-container {
        padding: 80px 0.5rem 2rem 0.5rem;
    }

    .banner-text-box {
        padding: 2rem 1.5rem;
        border-radius: 0 0 15px 15px;
        margin-left: 0;
        margin-top: -80px;
    }

    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }


}

/* Estado ativo do menu */
.nav-link.active {
    color: var(--verde-principal);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hover effects melhorados */
.banner-text-box {
    transition: all 0.3s ease;
}

.banner-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* SEÇÃO SERVIÇOS */
.servicos {
    padding: 1rem 0;    margin-top: 2rem;    position: relative;
    overflow: hidden;
    background-image: url('assets/MONTE SINAI - ICONE.png');
    background-size: contain;
    background-position: 150% 20%;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
}

.servicos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: 1;
}

.servicos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.servicos-content {
    max-width: 700px;
    position: relative;
    z-index: 3;
}

.servicos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-textos);
    margin-bottom: 2rem;
    position: relative;
}

.servicos-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--verde-principal);
    position: absolute;
    bottom: -10px;
    left: 0;
}

.servicos-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--azul-textos);
}

.servicos-text p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.servicos-text p:last-child {
    margin-bottom: 0;
}

/* Cards de Serviços */
.servicos-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.servico-card {
    background: rgba(255, 255, 255,0,.01);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.servico-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.servico-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.servico-card:hover .servico-icon {
    transform: scale(1.05);
}

.servico-titulo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--azul-textos);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.servico-descricao {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--azul-textos);
    opacity: 0.8;
}

/* RESPONSIVIDADE - SERVIÇOS */
@media screen and (max-width: 768px) {
    .servicos {
        padding: 3rem 0;
    }

    .servicos-container {
        padding: 0 1rem;
    }

    .servicos-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .servicos-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .servicos-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .servico-card {
        padding: 1.5rem;
    }

    .servico-titulo {
        font-size: 1.3rem;
    }

    .servico-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 1rem;
    }

    .servico-icon img {
        width: 65px;
        height: 65px;
    }
}

@media screen and (max-width: 480px) {
    .servicos {
        padding: 2.5rem 0;
    }

    .servicos-container {
        padding: 0 0.5rem;
    }

    .servicos-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .servicos-text {
        font-size: 0.95rem;
    }

    .servicos-cards {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .servico-card {
        padding: 1.2rem;
    }

    .servico-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }

    .servico-icon img {
        width: 70px;
        height: 70px;
    }

    .servico-titulo {
        font-size: 1.2rem;
    }

    .servico-descricao {
        font-size: 0.9rem;
    }
}

/* SEÇÃO AGENDAMENTO */
.agendamento {
    background-color: var(--azul-textos);
    padding: 5rem 0;
}

.agendamento-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.agendamento-texto {
    flex: 1;
}

.agendamento-titulo {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--branco);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.agendamento-subtitulo {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.agendamento-card {
    flex: 0 0 380px;
    background-color: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.agendamento-card-header {
    background-color: var(--verde-principal);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--branco);
    font-weight: 600;
    font-size: 1rem;
}

.agendamento-card-header svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.agendamento-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.agendamento-field {
    display: flex;
    flex-direction: column;
    border-bottom: 1.5px solid #d0d0d0;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.agendamento-field input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--azul-textos);
    padding: 0.4rem 0;
    background: transparent;
    width: 100%;
}

.agendamento-field input::placeholder {
    color: var(--azul-textos);
    opacity: 0.85;
    font-weight: 500;
}

.agendamento-hint {
    font-size: 0.75rem;
    color: var(--verde-principal);
    margin-top: 0.2rem;
}

.agendamento-btn {
    margin-top: 0.5rem;
    background-color: var(--azul-icones);
    color: var(--branco);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.agendamento-btn:hover {
    background-color: var(--azul-principal);
    transform: translateY(-1px);
}

/* RESPONSIVIDADE - AGENDAMENTO */
@media screen and (max-width: 861px) {
    .agendamento-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .agendamento-card {
        flex: none;
        width: 100%;
        max-width: 460px;
    }

    .agendamento-titulo {
        font-size: 2rem;
        text-align: center;
    }

    .agendamento-subtitulo {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .agendamento {
        padding: 3rem 0;
    }

    .agendamento-container {
        padding: 0 1rem;
    }

    .agendamento-titulo {
        font-size: 1.7rem;
    }
}

/* SEÇÃO NOSSA ESTRUTURA */
.estrutura {
    background-color: var(--branco);
    padding: 4rem 0;
    border-top: 3px solid var(--branco);
}

.estrutura-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.estrutura-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--azul-principal);
    margin-bottom: 1.5rem;
}

.estrutura-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--preto);
    max-width: 780px;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.estrutura-galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.estrutura-foto {
    overflow: hidden;
    border-radius: 8px;
}

.estrutura-foto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.estrutura-foto:hover img {
    transform: scale(1.05);
}

/* RESPONSIVIDADE - ESTRUTURA */
@media screen and (max-width: 768px) {
    .estrutura {
        padding: 3rem 0;
    }

    .estrutura-container {
        padding: 0 1rem;
    }

    .estrutura-galeria {
        grid-template-columns: repeat(2, 1fr);
    }

    .estrutura-foto img {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .estrutura-title {
        font-size: 1.6rem;
    }

    .estrutura-galeria {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .estrutura-foto img {
        height: 140px;
    }
}

/* SEÇÃO LOCALIZAÇÃO */
.localizacao {
    background-color: var(--azul-textos);
    padding: 4rem 0;
    border-top: 3px solid var(--branco);
}

.localizacao-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.localizacao-info {
    flex: 1;
}

.localizacao-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 2.5rem;
}

.localizacao-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.localizacao-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--branco);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.localizacao-icone {
    width: 28px;
    height: 28px;
    border: 2px solid var(--verde-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--verde-principal);
    margin-top: 2px;
    padding: 4px;
}

.localizacao-icone svg {
    width: 100%;
    height: 100%;
}

.localizacao-imagem {
    flex: 0 0 auto;
    width: 340px;
}

.localizacao-imagem img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 10px solid var(--branco);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVIDADE - LOCALIZAÇÃO */
@media screen and (max-width: 900px) {
    .localizacao-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .localizacao-imagem {
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .localizacao {
        padding: 3rem 0;
    }

    .localizacao-container {
        padding: 0 1rem;
    }

    .localizacao-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .localizacao-item {
        font-size: 0.95rem;
    }
}

/* RODAPÉ */
.footer {
    background-color: var(--branco);
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--cinza-medio);
    flex: 1;
}

.footer-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-social {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background-color: var(--azul-icones);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: var(--azul-principal);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* RESPONSIVIDADE - RODAPÉ */
@media screen and (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-copyright {
        order: 3;
    }

    .footer-logo {
        order: 1;
    }

    .footer-social {
        order: 2;
    }
}
