* {
    box-sizing: border-box;
    /* Garante que o padding e border sejam incluídos no tamanho total */
    max-width: 100vw;
    /* Impede que elementos ultrapassem a largura da tela */
    overflow-x: visible;
    /* Evita rolagem horizontal */
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
}

body,
html {
    height: auto;
    overflow: visible;
}

header {
    background-color: white; /* Define o fundo branco */
    padding: 10px 20px; /* Adiciona espaço interno para melhor aparência */
    text-align: center; /* Centraliza o conteúdo horizontalmente */
}

header .logo img {
    width: 100%; /* Faz a imagem ocupar o máximo do contêiner */
    max-width: 150px; /* Limita a largura máxima da imagem */
    height: auto; /* Mantém a proporção da altura */
    display: block; /* Remove espaços indesejados ao redor da imagem */
    margin: 0 auto; /* Centraliza a imagem dentro do contêiner */
    object-fit: contain; /* Evita distorção da imagem */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1em;
}

.gradient-bg {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

#quiz-container {
    width: 90%;
    /* Ajusta o tamanho para ser responsivo */
    max-width: 1200px;
    margin: 50px auto;
    /* Mantém espaçamento geral do contêiner */
    padding: 20px 20px 40px;
    /* Adiciona espaçamento interno, incluindo no topo */
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#quiz-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
}

.progress-bar {
    width: 100%;
    background-color: #444;
    height: 5px;
    margin-bottom: 15px;
    border-radius: 3px;
}

#progress {
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
}

#quiz-content {
    margin-top: 20px;
    /* Espaçamento entre o título/descrição e os cards */
    display: flex;
    flex-wrap: wrap;
    /* Permite quebra de linha para dispositivos menores */
    gap: 15px;
    /* Espaço entre os cards */
    justify-content: center;
    /* Centraliza os cards no contêiner */
}

.quiz-option {
    color: #fff;
    /* Garante que todo texto dentro do card seja branco */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px;
    background-color: #2e2e2e;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quiz-option:hover {
    background-color: #6a11cb;
}

.quiz-option.selected {
    background-color: #6a11cb;
    border: 2px solid #fff;
}

.quiz-option .option-icon {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-option .option-icon img {
    width: 100px;
    height: 100px;
}

.quiz-option h4 {
    margin: 0;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    /* Reforçar a cor branca se necessário */
}

.quiz-option p {
    font-size: 0.9em;
    color: #bbb;
    /* Descrição um pouco mais clara */
    margin: 0;
    line-height: 1.4;
}

#quiz-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin-top: 20px;
    /* Espaço entre os cards e os botões */
    padding-bottom: 20px;/
}


#prev-button,
#next-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #6a11cb;
    cursor: pointer;
}

#prev-button:disabled {
    background-color: #444;
    cursor: not-allowed;
}

#formulario h2 {
    text-align: center;
}

#formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#formulario h2 {
    margin: 0;
}

/* Estilos para o formulário final */
#quiz-container h3 {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    font-size: 1.5em;
}

/* Transformando o formulário em um "card" coerente com o restante do design */
#quiz-container form {
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 20px;
    /* Espaço lateral interno */
}

#quiz-container form label {
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 5px;
    color: #fff;
    display: block;
    /* Garante que label fique acima do input */
}

#quiz-container form input[type="text"],
#quiz-container form input[type="email"],
#quiz-container form textarea {
    width: 100%;
    padding: 12px;
    background-color: #1e1e1e;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    transition: border 0.3s ease;
}

#quiz-container form input[type="text"]:focus,
#quiz-container form input[type="email"]:focus,
#quiz-container form textarea:focus {
    border-color: #6a11cb;
    outline: none;
}

#quiz-container form textarea {
    resize: vertical;
}

#quiz-container form button[type="submit"] {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #6a11cb;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: 10px;
}

#quiz-container form button[type="submit"]:hover {
    background-color: #7a21db;
}

/* // inicio da pagina inicio */
#inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    color: #fff;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    min-height: 450px;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(120% 100% at center top);
    /* Recorte elegante no topo */
}

/* Conteúdo central */
.intro-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    animation: fade-in 1.5s ease-out;
}

/* Título */
.intro-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: slide-in 1.5s ease-out;
}

/* Decoração no título */
.title-decor {
    color: #ffcb00;
    text-shadow: 0px 0px 10px rgba(255, 203, 0, 0.7);
}

.title-highlight {
    background: linear-gradient(to right, #ffcb00, #f03e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Texto */
.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    animation: fade-in-text 2s ease-out;
}

/* Destaques */
.highlight {
    font-weight: 700;
    color: #ffcb00;
    text-shadow: 0 0 15px rgba(255, 203, 0, 0.7);
    animation: glow-highlight 3s infinite alternate;
}

/* Botão de Call-to-Action */
.cta-button {
    margin-top: 30px;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to right, #ff7a18, #af002d);
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #af002d, #ff7a18);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

/* Bolhas decorativas */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.bubble-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    opacity: 0.6;
    animation: bubble-motion-1 8s infinite alternate;
}

.bubble-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 15%;
    opacity: 0.4;
    animation: bubble-motion-2 10s infinite alternate-reverse;
}

.bubble-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation: bubble-motion-3 12s infinite alternate;
}

/* Animações */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-text {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-highlight {
    0% {
        color: #ffcb00;
        text-shadow: 0 0 10px #ffcb00, 0 0 20px #ffcb00;
    }

    100% {
        color: #f03e3e;
        text-shadow: 0 0 10px #f03e3e, 0 0 20px #f03e3e;
    }
}

@keyframes bubble-motion-1 {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.3);
    }
}

@keyframes bubble-motion-2 {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(30px) scale(1.9);
    }
}

@keyframes bubble-motion-3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-60%, -60%) scale(1.5);
    }
}



/* fim inicio */

.final-form-container {
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    max-width: 500px;
    /* Limita a largura para evitar campos saindo */
    margin: 0 auto;
    /* Centraliza no contêiner */
    width: 100%;
    box-sizing: border-box;
}

.final-form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-form-container label {
    font-weight: bold;
    font-size: 1em;
    color: #fff;
    margin-bottom: 5px;
}

.final-form-container input[type="text"],
.final-form-container input[type="email"],
.final-form-container input[type="tel"],
.final-form-container textarea {
    width: 100%;
    padding: 12px;
    background-color: #1e1e1e;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    box-sizing: border-box;
}

.final-form-container input[type="text"]:focus,
.final-form-container input[type="email"]:focus,
.final-form-container input[type="tel"]:focus,
.final-form-container textarea:focus {
    border-color: #6a11cb;
    outline: none;
}

.final-form-container textarea {
    resize: vertical;
}

.final-form-container button[type="submit"] {
    padding: 12px;
    background-color: #6a11cb;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background 0.3s ease;
}

.final-form-container button[type="submit"]:hover {
    background-color: #7a21db;
}

/* //metodologia */
#metodologia {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
}

#metodologia h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    overflow: hidden;
    position: relative;
    color: #fff;
    animation: fade-in-title 1s ease-out;
}

#metodologia h2 span {
    display: inline-block;
    position: relative;
    opacity: 0;
    animation: drop-in 0.5s forwards;
}

.metodologia-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.metodologia-opcoes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metodologia-card {
    background-color: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.metodologia-card:hover {
    transform: translateY(-10px);
    /* Eleva o cartão */
    background-color: #6a11cb;
    /* Cor de destaque no hover */
    color: #fff;
    /* Garante contraste */
}



.card-icon {
    margin-bottom: 10px;
}


.metodologia-card h3 {
    font-size: 1.5em;
    margin: 0 0 10px;
    color: #fff;
}

.metodologia-card p {
    font-size: 1em;
    color: #bbb;
    margin: 0;
}

.metodologia-imagem {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    min-height: 300px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.metodologia-imagem img {
    max-width: 100%;
    transition: opacity 0.3s ease;
    /* Suaviza a troca de imagem */
}

/* secao cliente */

/* Seção de Clientes */
.clientes-section {
    padding: 50px 20px;
    background-color: #121212;
    color: #fff;
    text-align: center;
}

.clientes-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #6a11cb;
    animation: fade-in-title 1s ease-out;
}

.clientes-container {
    display: flex;
    justify-content: center;
}


.clientes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.cliente-card {
    display: flex;
    flex-direction: column; /* Empilha os elementos verticalmente em dispositivos menores */
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    max-width: 100%; /* Garante que o cartão não ultrapasse o limite */
    word-wrap: break-word;
}

.cliente-card img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cliente-content {
    text-align: center;
}

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

.cliente-card:hover img {
    transform: scale(1.05);
}

.cliente-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.cliente-nome {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: bold;
    color: #6a11cb;
}

.cliente-descricao {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #444;
    text-align: start;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Mostra apenas 3 linhas do texto */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cliente-item .ver-mais {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #6a11cb;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cliente-item .ver-mais:hover {
    background-color: #8b3ef3;
}

.cliente-item img {
    width: 100%;
    /* Largura total do card */
    max-width: 250px;
    /* Máximo para controle */
    height: 150px;
    /* Altura padronizada */
    object-fit: contain;
    /* Ajustar sem distorcer */
    border-radius: 5px;
    margin-bottom: 10px;
}

.cliente-item p {
    font-size: 1rem;
    margin: 0;
    color: #6a11cb;
}

.cliente-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Trabalhos Realizados */
.trabalhos-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.trabalho-item {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trabalho-item img {
    width: 100%;
    height: 200px;
    /* Altura padrão para trabalhos realizados */
    object-fit: cover;
    /* Preencher espaço mantendo proporções */
    display: block;
    transition: transform 0.3s ease;
}

.trabalho-item:hover img {
    transform: scale(1.1);
}

.trabalho-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}


/* Footer Section */
.footer {
    background-color: #1e1e1e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 1rem;
    border-top: 2px solid #6a11cb;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    color: #bbb;
}

.footer p strong {
    color: #6a11cb;
    font-weight: bold;
}

.footer-socials {
    margin-top: 10px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    color: #6a11cb;
    text-decoration: none;
    font-weight: bold;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8b3ef3;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* contato section */


/* Seção de Contato */
/* Seção de contato */
.contato-section {
    padding: 50px 20px;
    background-color: #121212;
    color: #fff;
    text-align: center;
    border-bottom: 4px solid #6a11cb;
    animation: fadeIn 1.5s ease-in-out;
}

.contato-section h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    animation: slideIn 1s ease-in-out;
}


/* Container do formulário */

#form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.final-form-container {
    background-color: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    animation: scaleUp 1.2s ease-in-out;
}

.final-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Rótulos */
.final-form-container label {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.final-form-container label:hover {
    color: #6a11cb;
}

/* Campos de entrada */
.final-form-container input[type="text"],
.final-form-container input[type="email"],
.final-form-container input[type="tel"],
.final-form-container textarea {
    width: 100%;
    padding: 15px;
    background-color: #1e1e1e;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: transform 0.2s ease, border-color 0.3s ease;
}

.final-form-container input[type="text"]:focus,
.final-form-container input[type="email"]:focus,
.final-form-container input[type="tel"]:focus,
.final-form-container textarea:focus {
    border-color: #6a11cb;
    outline: none;
    transform: scale(1.02);
}

/* Botão de envio */
.final-form-container button[type="submit"] {
    padding: 15px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.final-form-container button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Botão de WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    display: block;
}

/* .final-form-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.final-form-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.final-form-container.hidden {
    opacity: 0;
    pointer-events: none;
  
} */

/* fim sessao contato */

.success-message {
    text-align: center;
    background-color: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 16px;
    margin: 5px 0;
}

/* inicio popup clientes */
/* Botão Ver Mais */
.ver-mais {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #6a11cb;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ver-mais:hover {
    background-color: #8b3ef3;
}

/* Popup Container */
.ver-mais {
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ver-mais:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

.popup.visible {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background-color: #333;
    padding: 30px;
    border-radius: 20px;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    animation: popup-appear 0.4s ease-out;
}

.popup-content h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: #333;
}

.popup-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-popup:hover {
    transform: scale(1.2);
    color: #6a11cb;
}

#animated-title {
    text-align: center;
    font-size: 2rem; /* Tamanho da fonte ajustado para dispositivos menores */
    color: #ffffff; /* Cor vibrante */
    opacity: 0; /* Começa invisível */
    transform: translateY(20px); /* Leve deslocamento para baixo */
    animation: fadeInUp 1.5s ease-out forwards; /* Animação suave */
    max-width: 90%; /* Limita a largura máxima */
    margin: 0 auto; /* Centraliza o título */
    line-height: 1.4; /* Espaçamento entre linhas */
    word-break: break-word; /* Quebra palavras longas, se necessário */
}

/* Animação */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Começa deslocado para baixo */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Move para a posição original */
    }
}

/* Estilo responsivo para dispositivos menores */
@media (max-width: 600px) {
    #animated-title {
        font-size: 1.5rem; /* Fonte menor para dispositivos menores */
        line-height: 1.6; /* Maior espaçamento entre linhas para legibilidade */
    }
}

#metodologia-titulo {
    text-align: center;
    font-size: 2rem; /* Tamanho padrão da fonte */
    color: #6a11cb;
    opacity: 0; /* Começa invisível */
    transform: translateY(20px); /* Leve deslocamento para baixo */
    animation: fadeInUp 1.5s ease-out forwards; /* Animação suave */
    max-width: 90%; /* Limita a largura máxima */
    margin: 0 auto; /* Centraliza o título */
    line-height: 1.6; /* Espaçamento entre linhas */
}

/* Animação */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Começa deslocado para baixo */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Move para a posição original */
    }
}

/* Estilo para dispositivos móveis */
@media (max-width: 600px) {
    #metodologia-titulo {
        font-size: 1.8rem; /* Fonte menor para dispositivos menores */
        line-height: 1.5; /* Aumenta espaçamento entre linhas */
    }
}

/* Animação */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Começa deslocado para baixo */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Move para a posição original */
    }
}

@media (max-width: 768px) {

    .cliente-card {
        flex-direction: column; /* Coloca a imagem acima do texto */
        align-items: center;
    }

    .cliente-content {
        text-align: center; /* Centraliza o texto */
    }

    .cliente-descricao {
        font-size: 14px; /* Texto menor para dispositivos móveis */
    }

    #quiz-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background-color: #1e1e1e;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .quiz-option {
        padding: 15px;
    }

    #quiz-footer {
        display: flex;
        flex-direction: column;
        /* Empilha os botões em vez de alinhá-los lado a lado */
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    #prev-button,
    #next-button {
        width: 90%;
        /* Botões ocupam quase toda a largura no celular */
        max-width: 300px;
        /* Limita o tamanho máximo dos botões */
        padding: 12px;
        font-size: 1em;
    }

    .metodologia-container {
        flex-direction: column;
        align-items: center;
    }

    .metodologia-card {
        width: 100%;
    }

    .metodologia-imagem {
        max-width: 100%;
    }

    .clientes-list,
    .trabalhos-galeria {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .clientes-title {
        font-size: 2rem;
    }

    .cliente-item {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        max-height: 300px; /* Limita a altura do card */
        overflow: hidden; /* Esconde parte do conteúdo para manter o layout */
    }
    .trabalho-item {
        width: 150px;
        height: 150px;
    }

    .cliente-item img,
    .trabalho-item img {
        max-height: 120px;
    }
}

@keyframes fade-in-image {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sessão Desenvolvimento de Sites */
.desenvolvimento-section {
    background: linear-gradient(to right, #004aad, #003080);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.desenvolvimento-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.desenvolvimento-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffde59;
}

.desenvolvimento-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

.desenvolvimento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.desenvolvimento-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.desenvolvimento-card img {
    width: 60px;
    margin-bottom: 15px;
}

.desenvolvimento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffde59;
}

.desenvolvimento-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #f5f5f5;
}

.desenvolvimento-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.desenvolvimento-cta {
    display: inline-block;
    background: #ffde59;
    color: #004aad;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.desenvolvimento-cta:hover {
    background: #ffd233;
}