/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #222; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
    background: #0d1b2a;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.navbar {
    position: relative;
}

.navbar-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-list > li {
    position: relative; /* IMPORTANTE */
}

.submenu {
    position: absolute;
    top: 100%;          /* Gruda o submenu exatamente abaixo */
    left: 0;
    background: #131212;
    padding: 10px 0;
    list-style: none;
    display: none;      /* escondido por padrão */
    min-width: 180px;
    z-index: 1000;
}

.navbar-list > li:hover > .submenu {
    display: block;     /* mostra quando passa o mouse */
}

.submenu li {
    padding: 8px 15px;
}

.submenu li a {
    display: block;
    white-space: nowrap;
}

/* Botão orçamento */
.btn-orcamento {
    background: #f6c90e;
    color: #0d1b2a;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-orcamento:hover { background: #e0b30b; }

/* MAIN */
.main-content { padding: 60px 0; text-align: center; }

.services { padding: 60px 0; }
.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    transition: 0.3s;
}

.card i { font-size: 2rem; margin-bottom: 15px; color: #0d1b2a; }

.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.planos-container {
    padding: 40px 20px;
    text-align: center;
}

.titulo-planos {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
}

.planos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.plano-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden; /* importante para bordas arredondadas da imagem */
    width: 300px; /* ajuste conforme necessário */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    margin-top: 15px;
}

.plano-card:hover {
    transform: translateY(-5px);
}
/* Aplica a todos os links <a> */
.plano-card .botao-card.detalhes-card {
    background-color: #FFA500; /* laranja/amarelo */
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 12px;
}


.plano-imagem {
    width: 100%;
    height: 180px; /* altura fixa para todos os cards */
    object-fit: cover; /* cobre o espaço mantendo proporção */
    display: block;
}
.plano-detalhe-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.plano-detalhe-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.plano-detalhe-main {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.plano-detalhe-imagem-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plano-detalhe-imagem {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.facebook-share-container {
    text-align: left;
}

.plano-detalhe-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
 
}

.plano-detalhe-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.valor {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.promocional {
    color: #e53935;
    font-weight: bold;
    margin-right: 8px;
}

.original {
    text-decoration: line-through;
    color: #999;
}

.descricao {
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
}

.botao-card {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.botao-card:hover {
    background-color: #45a049;
}

/* ===== SERVIÇOS – LISTAGEM ===== */

.servicos-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.titulo-pagina {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1f2933;
}

/* GRID */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.servico-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGEM */
.servico-imagem {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f3f4f6;
}

/* CONTEÚDO */
.servico-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 10px;
    color: #111827;
}

.servico-descricao {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0 20px 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.servico-valor {
    font-size: 1rem;
    margin: 0 20px 20px;
    color: #111827;
}

/* BOTÃO */
.botao-card {
    margin: 0 20px 20px;
    padding: 12px;
    text-align: center;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.botao-card:hover {
    background: #1e40af;
    transform: scale(1.02);
}

/* SEM SERVIÇOS */
.sem-servicos {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 40px;
}

/* ===== SERVIÇO – DETALHE ===== */

.servico-detalhe-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.servico-detalhe-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.servico-detalhe-titulo {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #111827;
}

.servico-detalhe-valor {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.servico-detalhe-descricao {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.servico-detalhe-empresa p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #374151;
}

.servico-detalhe-acoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.botao-voltar {
    padding: 12px 18px;
    background: #e5e7eb;
    color: #111827;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.botao-voltar:hover {
    background: #d1d5db;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .titulo-pagina {
        font-size: 1.9rem;
    }

    .servico-imagem {
        height: 160px;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .plano-detalhe-main {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .plano-detalhe-imagem {
        width: 100%;
        height: auto;
    }

    .plano-detalhe-info {
        width: 100%;
    }

    .facebook-share-container {
        text-align: center;
    }
}

.valor {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.promocional {
    color: #e53935;
    font-weight: bold;
    margin-right: 8px;
}

.original {
    text-decoration: line-through;
    color: #999;
}

.descricao {
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
}

.facebook-share-container {
    margin-top: 20px;
    text-align: center;
}

.botao-card {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.botao-card:hover {
    background-color: #45a049;
}

/* Responsivo */
@media (max-width: 768px) {
    .plano-detalhe-main {
        flex-direction: column;
        align-items: center;
    }

    .plano-detalhe-imagem {
        width: 100%;
        height: auto;
    }

    .plano-detalhe-info {
        width: 100%;
    }
}

.valor .normal {
    font-size: 26px;
    color: #111;
    font-weight: bold;
}

.valor .promocional {
    font-size: 26px;
    color: #d60000;
    font-weight: bold;
}

.valor .original {
    text-decoration: line-through;
    color: #777;
    margin-left: 8px;
}

.descricao {
    margin: 10px 0 20px 0;
    color: #444;
    font-size: 15px;
}

.botao-card {
    display: inline-block;
    padding: 12px 20px;
    background: #007bff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.botao-card:hover {
    background: #0056b3;
}
.botao-facebook {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    border-radius: 8px;
    background-color: #3b5998; /* azul claro do Facebook */
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* FOOTER */
.site-footer {
    background: #0d1b2a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand { max-width: 300px; }

.footer-brand p { margin: 10px 0; font-size: 0.9rem; }

.social-list { display: flex; gap: 10px; margin-top: 10px; }
.social-list li a { color: #fff; font-size: 1.2rem; transition: 0.3s; }
.social-list li a:hover { color: #f6c90e; }

.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-title { font-weight: 600; margin-bottom: 10px; }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .navbar-list { display: none; flex-direction: column; background: #0d1b2a; position: absolute; top: 60px; right: 0; width: 250px; padding: 20px; border-radius: 5px; }
    .navbar-list.active { display: flex; }
    .nav-toggle { display: block; background: none; border: none; color: #fff; font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; align-items: flex-start; gap: 15px; }
    .service-cards { flex-direction: column; gap: 20px; }
    .footer-container { flex-direction: column; gap: 30px; }
}