body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f6f8fa;
    color: #222;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0px;
    padding-left: 0.5em;
}

.logo-wolves img {
    height: 40px;
    margin-right: 0em;
}

header {
    padding: 0px 0 0px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding-right: 5px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 17px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    list-style: none;
    padding-left: 0.5em;
}

.menu li {
    display: flex;
    align-items: center;
}

.nav-item {
    padding: 3px 6px;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.nav-item:hover {
    background-color: #000;
    color: #fff;
}

.logo-menu {
    display: flex;
    align-items: center;
    gap: 0rem;
    margin-left: 0em;
}

.icon-link {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.icon-link:hover {
    transform: scale(1.1);
    /* leve zoom no hover */
}

.logo-menu img {
    height: 35px;
}

.icon-circle {
    width: 38px;
    padding: 4px;
    background-color: #FC732E;
    /* Laranja */
    border-radius: 50%;
    border: 2px solid white;
    object-fit: contain;
    transition: box-shadow 0.2s ease-in-out;
}

.icon-circle:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    /* brilho suave */
}

h2 {
    font-weight: 900;
    font-size: 3.1em;
    letter-spacing: -3px;
    margin-top: 0.2em;
    margin-bottom: 0em;
}

h3 {
    font-weight: 900;
    font-size: 0.99em;
    letter-spacing: -1px;
    margin-top: 0em;
    margin-bottom: 0em;
    color: #FC732E;
    font-style: oblique;
}

p {
    font-size: 1.1em;
    line-height: 1.2;
    margin-top: 0em;
}

.negrito {
    font-weight: bold;
    margin-bottom: 0em;
}

.container {
    width: 92%;
    max-width: 500px;
    margin: 0 auto;
}

.hero,
footer {
    padding: 0px 0 0px 0;
    text-align: center;
}

.galeria {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.galeria img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Primeira linha: imagem única, altura média */
.linha-1 img {
    height: 15em;
}

/* Segunda linha: duas imagens lado a lado (70% e 30%) */
.linha-2 {
    display: flex;
    gap: 1px;
}

.linha-2 img:first-child {
    width: 70%;
    height: 15em;
}

.linha-2 img:last-child {
    width: 30%;
    height: 15em;
}

/* Terceira linha: imagem única, altura mais alta */
.linha-3 img {
    height: 15em;
}

section.duvidas {
    position: relative;
    min-height: 30px;
    padding: 50px 0 60px 0;
    margin-top: 0px;
    background-color: #FC732E;
    color: #EDF0F1;
}

.titulo-duvidas h3 {
    flex-grow: 1;
    padding: 0px 0px;
    font-size: 2em;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.perguntas {
    display: flex;
    flex-direction: column;
    padding-top: 2em;
    width: 20em;
    margin-left: auto;
    margin-right: auto;
    gap: 0.4em;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    display: flex;
    background-color: #EDF0F1;
    color: #000000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    transition: 0.4s;
    line-height: 15px;
    font-size: 20px;
    padding-left: 25px;
    outline-style: solid;
    outline-width: 1px;
    Line-height: 25px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
    background-color: #c7cbcc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 10px 10px;
    background-color: white;
    display: none;
    overflow: hidden;
    width: 89%;
    color: #494c4e;
    text-align: justify;
    padding-left: 17px;
    padding-right: 17px;
}

.feedbacks-section h3 {
    flex-grow: 1;
    padding: 20px 10px;
    font-size: 2em;
    text-align: center;
    font-weight: bold;
    color: #000;
}

.feedbacks-section {
    padding: 1rem;
    text-align: center;
}

.feedbacks-carousel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Permite que os cards quebrem linha, mas será um só no mobile */
    gap: 2rem;
    /* Espaçamento entre os cards no desktop */
    overflow: hidden;
    /* Importante para esconder cards que não estão no grupo atual */
}

.feedback-card {
    width: 300px;
    /* Largura padrão para desktop (3 cards) */
    padding: 0rem 1rem 0rem;
    /* color: #fff;  - Este 'color' aqui pode ser um problema se o fundo da imagem for claro.
                     O '.client-name' já está com color: #000, o que é bom.
                     Se houver outro texto direto dentro do card, considere ajustá-lo. */
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: none;
    /* Controlado pelo JavaScript */
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Ajustes específicos para as miniaturas do feedback */
.depoimento-img {
    width: 100%;
    max-height: 400px;
    /* Ajuste conforme necessário */
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    bottom: 0px;
    left: 16px;
    border: 3px solid #000;
    display: block;
    /* Visível por padrão no desktop */
}

.client-name {
    position: absolute;
    bottom: 17px;
    left: 80px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #000;
    display: block;
    /* Visível por padrão no desktop */
}

/* NOVO: Esconde a imagem combinada do mobile por padrão (no desktop) */
.depoimento-mobile-img {
    display: none;
}

.feedbacks-bars {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.bar {
    width: 30px;
    height: 6px;
    border-radius: 3px;
    background-color: #ccc;
    display: inline-block;
}

.bar.active {
    background-color: #f97316;
}

.contato {
    background-color: #FC732E;
    margin-bottom: 2em;
}

.contato h2 {
    color: #fff;
    margin-left: 1em;
    font-weight: 900;
    font-size: 2.1em;
    letter-spacing: -3px;
    margin-top: 0.2em;
    margin-bottom: 1em;
}

.contato h3 {
    color: #fff;
    margin-top: 1em;
    margin-bottom: 1rem;
}

.titulo-contato {
    display: flex;
    ;
    align-items: left;
    font-size: 2em;
    font-weight: bold;
    margin-left: 1em;
}

.contato p {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.2;
    margin-top: -1em;
    margin-left: 2em;
    margin-bottom: 1rem;
}

.form-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    /* Empilha os campos de input verticalmente */
    gap: 1em;
    /* Espaçamento entre campos empilhados */
    align-items: center;
}

.form-group input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

#details {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    min-height: 70px;
    /* Altura mínima */
    max-height: 300px;
    /* Altura máxima (opcional) */
    resize: vertical;
    /* Permite redimensionar apenas verticalmente */
    font-family: inherit;
    /* Herda a fonte do elemento pai */
    line-height: 1.4;
    /* Espaçamento entre linhas */
    overflow-wrap: break-word;
    /* Quebra palavras longas */
    white-space: pre-wrap;
    /* Preserva quebras de linha */

    /* Estilo de foco (opcional) */
    transition: box-shadow 0.3s ease;
}

#details:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-button {
    width: fit-content;
    padding: 0.25rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Estilos para upload de arquivos */
.upload-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /* Empilha as caixas de upload */
    gap: 0.8rem;
}

.upload-box {
    flex: 1;
    position: relative;
    min-width: unset;
    /* Remove min-width para permitir largura total */
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 2px dashed #ff4444;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem;
}

.upload-label:hover {
    border-color: #ff6666;
    background-color: rgba(255, 68, 68, 0.1);
}

.upload-icon {
    color: #ff4444;
    margin-bottom: 0.25rem;
}

/* Ícone menor para economizar espaço */
.upload-icon svg {
    width: 30px;
    /* REDUZIDO de 40px para 30px */
    height: 30px;
    /* REDUZIDO de 40px para 30px */
}

.upload-text {
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
}

.file-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 2px solid #fff;
    border-radius: 8px;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 0.5rem;
    position: relative;
}

/* Ajuste da imagem de preview para caber no espaço menor */
.file-preview img {
    max-width: 100%;
    max-height: 70px !important;
    /* REDUZIDO de 100px para 70px */
    border-radius: 4px;
    object-fit: cover;
    /* Garante que a imagem se ajuste bem */
}

.remove-file {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file:hover {
    background: #ff6666;
}

/* Campo Pinterest */
#pinterest_link {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9f9f9;
}

#pinterest_link:focus {
    outline: none;
    border-color: #ff4444;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
}


/* Barras de Progresso Discretas para Formulário de Contato */
.contact-progress-bars {
    margin-top: 0rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-bar {
    width: 30px;
    height: 6px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    transition: background-color 0.3s ease;
}

.contact-bar.active {
    background-color: #000;
    /* Cor vermelha para combinar com o tema */
}

.success-message {
    font-size: 0.8rem;
    /* Reduz fonte em cerca de 20% */
    line-height: 1.3;
    /* Espaçamento de linha mais justo */
    padding: 0.2rem;
    /* Reduz padding */
    margin-top: 0rem;
    /* Diminui margem superior */
}

.success-message h2 {
    font-size: 1.6rem;
    /* Reduz título */
}

.success-message p {
    font-size: 0.85rem;
    /* Reduz os parágrafos */
    margin-bottom: 0.3rem;
}

.success-message ul {
    padding-left: 1rem;
    font-size: 0.8rem;
}

.success-message li {
    margin-bottom: 0.2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 90%;
    /* Campos de input ocupam 100% da largura */
    box-sizing: border-box;
    /* Inclui padding e borda na largura total */
}

.send-button {
    display: flex;
    margin-top: 10px;
    flex-direction: row;
    /* Mantém os botões lado a lado se houver espaço */
    flex-wrap: wrap;
    /* Permite que os botões quebrem linha se não couberem */
    justify-content: space-between;
    width: 90%;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-left: 1.5em;
}

.send-button .form-button {
    flex-grow: 1;
    /* Permite que os botões cresçam para preencher o espaço */
    min-width: 48%;
    /* Garante que os botões não fiquem muito pequenos se quebrarem linha */
    box-sizing: border-box;
    margin-bottom: 0.5rem;
    /* Espaço entre botões quebrados */
}

.send-button .form-button:first-child {
    margin-right: 0.5rem;
    /* Espaço entre o botão "Previous" e "Next" */
}

.contact-form-location-box .location-title,
.location-details {
    color: #000;
    font-weight: 450;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1;
}

footer {
    margin-top: 2em;
    text-align: center;
    padding: 0.4rem;
    background: #222;
    color: #fff;
}

/* Botão flutuante: voltar ao topo */
#btnTop {
    display: none;
    position: fixed;
    bottom: 1em;
    right: 0.5em;
    z-index: 1000;
    background-color: #ff7900;
    /* Laranja vibrante */
    color: #fff;
    border: none;
    outline: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Flex para centralizar o SVG */
    display: flex;
}

#btnTop:hover {
    background-color: #ff9900;
    /* Laranja mais clara ao passar o mouse */
}

#btnTop svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
}

/* Botão estilo iMessage (azul, arredondado, gradiente, sombra) */
/* Botão fixo estilo iMessage na lateral direita */
.imessage-btn-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    height: 56px;
    min-width: 120px;
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(50, 110, 220, 0.18);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    user-select: none;
    outline: none;
    position: fixed;
    right: 6px;
    top: 360px;
    z-index: 1001;
}

.imessage-btn-fixed:hover,
.imessage-btn-fixed:focus {
    background: linear-gradient(135deg, #63b3fa 0%, #1976d2 100%);
    box-shadow: 0 4px 16px rgba(50, 110, 220, 0.22);
    transform: scale(1.035);
    text-decoration: none;
}

.imessage-btn-fixed:active {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    box-shadow: 0 1px 3px rgba(50, 110, 220, 0.10);
    transform: scale(0.98);
}

/* Responsivo */
/* Tablets em modo paisagem, notebooks pequenos, desktops pequenos. 
Tablets “deitados” (paisagem), notebooks antigos, monitores pequenos.*/
@media (min-width: 700px) {
    .container {
        width: 92%;
        /* pode manter, ou usar 90%/80% para mais espaço nas laterais */
        max-width: 850px;
    }

    header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        /* Centraliza tudo no eixo horizontal */
        padding: 12px 0;
        background-color: #fff;
    }

    .logo-container {
        justify-content: center;
        padding-left: 0;
        margin-bottom: 0em;
        /* Espaço entre logo e menu */
    }

    nav ul.menu {
        justify-content: center;
        padding-right: 0;
        gap: 2rem;
    }

    h2 {
        margin-top: 1em;
    }

    h3 {
        font-size: 1.2em;
    }

    .linha-3 {
        display: none;
    }

    .projetos {
        margin-top: 2em;
        margin-bottom: 3em;
    }

    #btnTop {
        width: 116px;
        height: 116px;
    }

    #btnTop svg {
        width: 40px;
        height: 40px;
    }

    .imessage-btn-fixed {
        font-size: 2.1rem;
    }

    .titulo-duvidas h3 {
        font-size: 3em;
    }

    .perguntas {
        width: 45em;
        gap: 0.6em;
    }

    .accordion {
        padding: 22px;
        font-size: 30px;
        Line-height: 34px;
    }

    .panel {
        width: 95.7%;
        font-size: 1.7rem;
    }

    .send-button {
        margin-left: 3.4em;
    }

    .contact-form-location-box .location-title,
    .location-details {
        font-size: 1.5rem;
    }

    footer {
        font-size: 1.5rem;
    }
}

/* Desktops e notebooks médios/grandes.
Notebooks modernos, monitores full HD, desktops, iMac, etc.*/
@media (min-width: 1000px) {
    .container {
        width: 88%;
        max-width: 1200px;
    }

    h2 {
        font-size: 4.1em;
        margin-bottom: 0.3em;
    }

    h3 {
        font-size: 1.7em;
        margin-bottom: 0em;
        color: #FC732E;
        font-style: oblique;
    }

    .titulo-duvidas h3 {
        font-size: 3.5em;
    }

    .perguntas {
        width: 65em;
        gap: 0.4em;
    }

    .accordion {
        padding: 22px;
        font-size: 30px;
        Line-height: 34px;
    }

    .panel {
        width: 96.7%;
        font-size: 1.7rem;
    }

    .upload-container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        /* Empilha as caixas de upload */
        gap: 1.8rem;
    }

    .contato h3 {
        margin-left: 0.55em;
    }

    .contato h2 {
        margin-left: 1.95em;
    }

    .contato p {
        font-size: 1.5em;
        margin-top: -0.7em;
        margin-left: 2.8em;
        margin-bottom: 2rem;
    }

    .send-button {
        margin-left: 4.3em;
    }

    #btnTop {
        width: 50px;
        height: 50px;
    }

    #btnTop svg {
        width: 30px;
        height: 30px;
    }

    .imessage-btn-fixed {
        font-size: 1.5rem;
    }
}