/* ===========================
   RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:focus {
  outline: 2px solid #ff9900;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}



/* ================= HEADER ================= */
.Topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: flex-start; /* logo no canto esquerdo */
    align-items: center;

    padding: 10px 20px;

    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.Topo img {
    height: 55px;
    width: auto;
}

.Topo img:hover {
    transform: scale(1.05);
}

.logowbros img {
      height: 55px; /* mesmo tamanho visual do menu */
    width: auto;
     margin-right: 15px;
}

/* ===========================
   ÁREA PRINCIPAL
=========================== */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}
body {
    display: block;
}

/* ===========================
   MENU FIXO (FUNDO SÓLIDO)
=========================== */
.menu-fixo {
    position: fixed;
    top: 95px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 999;
}
.menu {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 00px;

    padding: 0 !important;
    margin: 0;

    background: #ffffff;
    border: none;
    border-radius: 40px;
}

.menu li {
    padding: 0;  /* SEM espaço interno */
    margin: 0;   /* SEM margem */
}

.menu a {
    display: block;    /* hover preenche tudo */
    padding: 12px 14px;
    border-radius: 6px;

    text-decoration: none;
    color: #03A9F4;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* TRIÂNGULO – não mexemos! */
.menu a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #03A9F4;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
}


.menu a:hover {
    background: #03A9F4;
    color: #fff;
    border-radius: 6px;

    margin-left: -14px; /* estende o fundo azul para a esquerda */
    padding-left: 20px; /* mantém o texto na posição correta */
}



/* ===========================
   LINKS COM TRIÂNGULO
=========================== */
.triangulo {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.triangulo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #03A9F4;
    transition: border-left-color 0.2s ease;
}

.triangulo:hover::before {
    border-left-color: white;
}

.triangulo:hover {
    background: #03A9F4;
    color: white;
    border-radius: 4px;
}

/* ===========================
   GRADIENTES
=========================== */
.gradiente {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#03A9F4, #ffffff);
}

.gradiente2 {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#ffffff, #03A9F4);
}

/* ===========================
   HERO (IMAGEM DE FUNDO)
=========================== */
.hero {
    width: 100%;
    min-height: 600px;  /* em vez de height */
    background-image: url("imagens/sua-imagem.jpg");
    background-size: cover;
    background-position: center;
    padding-top: 150px;
}


/* ===========================
   GRID SERVIÇOS
=========================== */
.servico {
    max-width: 1200px;
    margin: 18px auto;
    padding: 0 12px;
    font-family: "Inter", system-ui, Arial, sans-serif;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}


.lista_servico {
    flex: 1;
    min-width: 240px;
    padding: 16px;
    border-radius: 10px;
 display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    
}

.lista_servico summary {
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
    margin-bottom: 10px;
}

.lista_servico summary::-webkit-details-marker {
    display: none;
}

.lista_servico summary::before {
    content: "▾";
    display: inline-block;
    margin-right: 8px;
    font-size: 1rem;
    color: #007bff;
}

.lista_servico ul {
    list-style: none;
    padding-left: 0;
}

.lista_servico li {
    margin-bottom: 6px;
    font-size: 0.97rem;
    line-height: 1.4;
}

/* ===========================
   GALERIA / CARDS
=========================== */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.card h3 {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;   /* 🔥 GARANTE QUE A FAIXA CUBRA TODA A IMAGEM */
    padding: 10px;

    background: rgba(0, 0, 0, 0.40); /* cinza translúcido */
    color: #fff;
    text-align: center;

    font-size: 20px;
    font-weight: 700;

    margin: 0;
    box-sizing: border-box;
}


footer {
    margin-top: auto; /* Empurra o footer para o final da página */
    padding: 20px;
    text-align: center;
    background: #f1f1f1; /* opcional */
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================================
   SEÇÃO CONTATO - LAYOUT COMPLETO
   ============================================================ */

/* Área inteira */
#contato {
    padding: 40px 20px;
    
}

/* Container principal */
#contatos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    box-sizing: border-box;

    /* FLEX - 3 colunas responsivas */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* Título ocupando linha inteira */
#contatos h2 {
    flex: 0 0 100%;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Cada bloco interno (form, endereço, mapa) */
#contatos .formulario,
#contatos .endereco,
#contatos .mapa {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    box-sizing: border-box;
}

/* ---------------------------
   FORMULÁRIO
---------------------------- */
#contatos form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contatos form label {
    font-weight: 600;
}

#contatos form input,
#contatos form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* Textarea */
#contatos form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Botão de envio */
#contatos form input[type="submit"] {
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 5px;
    transition: transform .18s ease, background .18s ease;
    align-self: flex-start;
}

#contatos form input[type="submit"]:hover {
    background: #555;
    transform: translateY(-2px);
}

/* ---------------------------
   ENDEREÇO
---------------------------- */
#contatos address {
    margin-top: 0;
    text-align: left;
    font-style: normal;
    color: #555;
    line-height: 1.4;
    font-size: 16px;
}

/* ---------------------------
   MAPA
---------------------------- */
#contatos .mapa {
    min-height: 350px;
    position: relative;
}

#contatos .mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    display: block;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* Tela média – 2 colunas */
@media (max-width: 980px) {
    #contatos .formulario,
    #contatos .endereco,
    #contatos .mapa {
        flex: 1 1 48%;
    }
}

/* Celular – 1 coluna */
@media (max-width: 640px) {
    #contatos {
        padding: 16px;
    }

    #contatos .formulario,
    #contatos .endereco,
    #contatos .mapa {
        flex: 1 1 100%;
        min-width: 0;
    }

    #contatos h2 {
        font-size: 20px;
    }
}

/* ============================================================
   WHATSAPP BUTTONS (mantidos do seu CSS original)
   ============================================================ */

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #25D366;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-circle {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-circle img {
    width: 32px;
    height: 32px;
}

.whatsapp-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   SEÇÃO FLIPERAMA (mantida e limpa)
   ============================================================ */

#fliperama {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.fliperamas {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
}

.texto-fliperama {
    flex: 1;
}

.texto-fliperama p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
}

.maquina img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
}

/* Responsivo */
@media (max-width: 900px) {
    .fliperamas {
        flex-direction: column;
        text-align: center;
    }

    .texto-fliperama p {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }

    .maquina img {
        width: 90%;
        margin: 20px auto;
    }
}

footer {
    background-color: #03A9F4;    /* cor de fundo */
    padding: 30px 0;
    text-align: center;
}

footer .logowbros img {
    width: 180px;   /* ajuste o tamanho se quiser */
    height: auto;
}

.social-icons img {
    width: 42px;
    height: 42px;
    transition: transform .2s ease;
}


.social-icons img {
    width: 42px;
    height: 42px;
    transition: transform .2s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}
.social-icons a {
    text-decoration: none;
}

a, button {
  padding: 10px;
}
/* Menu padrão (em linha) */


/* Quando a tela for 324px ou menor */
@media (max-width: 500px) {
    .menu {
        flex-wrap: wrap; /* permite quebrar em linhas */
        justify-content: space-between; /* espaço entre itens da mesma linha */
    }
    .menu li {
        width: 50%; /* cada item ocupa metade da linha */
        text-align: center;
        margin: 0; /* remove margens extras */
        padding: 5px 0; /* ajuste de espaçamento vertical */
    }
}
.texto-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 25px;
    line-height: 1.7;
}

body, p, li {
    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    color: #1A1A1A;
}

p, li {
    text-shadow: 0 0 1px rgba(0,0,0,0.18);
}
h2, h3, h1 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}
.texto-limitado {
    max-width: 1000px;  /* mesma largura dos blocos */
    margin: 0 auto;     /* centraliza */
    padding: 0 20px;    /* dá respiro lateral */
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
    font-size: 18px;
}
.imagem_arcade {
    max-width: 350px;
    width: 100%;
}
.container-padrao {
    max-width: 1200px;     /* → pode usar 1000 ou 1200, você escolhe */
    margin: 0 auto;        /* → centraliza */
    padding: 0 20px;       /* → respiro lateral igual para todos */
}
.texto-sobre {
    margin: 20px 0;                /* espaço entre blocos */
    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;

    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#qualificacao {
    max-width: 1200px;
    margin: 0 auto;
}

#qualificacao .galeria {
    max-width: 1400px;   /* ou 100% */
    margin: 0 auto;
}
#servicos {
    max-width: 1200px;
    margin: 0 auto;     /* centraliza no meio da página */
    padding: 0 20px;    /* respiro lateral igual às outras seções */
}
/* ===========================
   ALINHAMENTO GLOBAL DAS SEÇÕES
=========================== */

#servicos,
#qualificacao,
#wbros,
#fliperama {
    max-width: 1200px;   /* todas com a mesma largura */
    margin: 0 auto;      /* centraliza */
    padding: 0 20px;     /* mesmo respiro lateral */
    box-sizing: border-box;
}

#fliperama .fliperamas {
    max-width: 1200px !important; /* fliperama estava em 1000px → corrigido */
    margin: 0 auto;
    padding: 40px 20px;
}

#wbros .texto-sobre {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
#wbros, #servicos, #qualificacao, #fliperama, #contato {
    scroll-margin-top: 120px; /* ajuste conforme necessário */
}
/* ====== MENU MOBILE COM FUNDO MAIS FINO ====== */
@media (max-width: 500px) {

    .menu {
        padding: 4px 8px !important; /* 🔥 reduz drasticamente a altura */
        border-radius: 20px;         /* 🔥 antes era 40px, muito grande */
    }

    .menu li {
        padding: 2px 0;              /* 🔥 era 5px → reduz o espaço vertical */
    }

    .menu a {
        padding: 6px 0;              /* 🔥 diminui a altura dos botões */
        font-size: 17px;              /* opcional: fonte levemente menor */
    }
}
