/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Cores do tema */
:root {
    --primary-color: #ff5a1f; /* Laranja vibrante */
    --secondary-color: #1e1e2f; /* Azul escuro/preto */
    --dark-color: #0d0d14; /* Preto mais profundo */
    --light-color: #ffffff; /* Branco */
    --text-color: #ffffff;
}

/* Estilo geral */
body {
    color: var(--text-color);
    background-color: var(--dark-color);
    line-height: 1.6;
}

/* Cabeçalho */
.header {
    background: var(--secondary-color);
    color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img{
    border-radius: 50%;
    width: 220px;
    height: 220px;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    
}

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

.nav-links li a {
    color: var(--light-color);
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s, color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 5px;
}

.mobile-menu {
    display: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner */
.banner {
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8),
            rgba(30, 30, 47, 0.8)
        ),
        url('assets/banner.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    padding: 20px;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #000;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--light-color);
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary {
    background: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-secondary {
    background: var(--dark-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

.exp{
    color: #fd8e25;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Seções principais */
.section {
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8),
            rgba(30, 30, 47, 0.8)
        ),
        url('assets/banner.jpg') no-repeat center center/cover;
    padding: 40px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section p {
    margin-bottom: 20px;
    color: var(--text-color);
}


/* Formulário de contato */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--light-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    background: var(--dark-color);
    color: var(--light-color);
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    border: none;
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

.support-message {
    background-color: #1e1e1e;
    border: 2.5px solid #ff5722;
    padding: 20px;
    max-width: 100%;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Estilo do Título */
.support-message h2 {
    color: #ff5722;
    margin-bottom: 10px;
}

/* Parágrafos */
.support-message p {
    line-height: 1.6;
}

/* Links */
.support-message a {
    color: #ff5722;
    text-decoration: none;
}

.support-message a:hover {
    text-decoration: underline;
}

/* Estilos gerais para a seção */
#services {
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 2 colunas responsivas */
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background-color: #ff820d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5em;
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: #ffffff;
    font-weight: bold;
}


/*Depoimentos*/
.depoiment{
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8),
            rgba(30, 30, 47, 0.8)
        ),
        url('assets/banner.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.testimonial-container {
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8),
            rgba(30, 30, 47, 0.8)
        );
    
    width: 100%;
    box-shadow: 0 8px 15px rgb(25, 25, 51);
    border-radius: 20px;
    max-width: 800px;
    padding: 20px;
    overflow: hidden;
    position: relative;

}

.testimonial-header {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ff5a1f;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none;
}

.testimonial {
    background: #1e1e2f;
    border: 1px solid #ff3300;
    border-radius: 15px;
    flex: 0 0 80%;
    max-width: 80%;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.testimonial img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-content {
    display: flex;
    align-items: center;
}

.testimonial p {
    margin: 10px 0 0;
    font-size: 1em;
}

.testimonial-name {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.1em;
    color: #ff5a1f;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff5a1f;
    border: none;
    color: #000;
    font-size: 1.5em;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/*whatsapp*/
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Rodapé */
.footer {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 20px;
    text-align: center;
}

.footer .social-links {
    margin-top: 10px;
}

.footer .social-links a {
    color: var(--light-color);
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: var(--primary-color);
}

.copy{
    color: var(--primary-color);
    text-decoration: none;
}

/*privacidade*/
.privacy-policy {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #1e1e2f;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.privacy-policy h1 {
    color: #ff5a1f;
    text-align: center;
    margin-bottom: 15px;
}

.privacy-policy h2 {
    color: #ff5722;
    margin-top: 20px;
}

.privacy-policy p, .privacy-policy ul {
    line-height: 1.6;
}

.privacy-policy ul {
    margin-left: 20px;
}

.privacy-policy strong {
    color: #fd8e25;
}


/* Estilos gerais do banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #2e2e2e;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;  /* Centraliza o conteúdo */
    flex-direction: column;
    text-align: center;
}

/* Link da Política de Privacidade */
.cookie-banner a {
    color: #ff5722;
    text-decoration: underline;
}

/* Botão de aceitar cookies */
.cookie-banner button {
    background-color: #ff5722;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease-in-out;
    margin-top: 10px; /* Adiciona espaçamento entre o texto e o botão */
}

.cookie-banner button:hover {
    background-color: #e64a19;
}

.cookie-banner button:hover {
    background-color: #e64a19;
}

/* Container Obrigado */
.thank-you-container {
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8),
            rgba(30, 30, 47, 0.8)
        ),
        url('assets/banner.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

/* Conteúdo */
.thank-you-content {
    text-align: center;
    background: rgb(0, 0, 0);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.thank-you-content i {
    font-size: 4rem;
    color: #36db04;
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Botão */
.btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    background: #ff3300;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e7e5e5;
}

/* Responsividade */
@media only screen and (max-width: 850px){
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: var(--secondary-color);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .banner {
        height: 40vh;
    }

    .banner-content h1 {
        font-size: 1.5rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .header {
        flex-direction: column;
        padding: 10px;
    }

    .banner {
        height: auto;
        padding: 10%;
    }

    .banner-content h1 {
        font-size: 1.2rem;
    }

    .banner-content p {
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
        
    }

    .clientes-card {
        padding: 10px;
    }

        .testimonial-container {
            width: 100%; /* Ocupa toda a largura */
            max-width: 350px; /* Remove restrição de largura máxima */
            padding: 10px; /* Reduz o padding */
            border-radius: 10px; /* Menos arredondamento */
        }

        .testimonial-header {
            font-size: 1.5rem; /* Texto menor */
            margin-bottom: 15px;
        }
    
        .testimonial-slider {
            gap: 10px; /* Reduz espaço entre os elementos */
            padding: 5px; /* Padding menor */
        }
    
        .testimonial {
            flex: 0 0 90%; /* Ajusta para quase toda a largura */
            max-width: 95%;
            padding: 10px; /* Reduz padding interno */
            border-radius: 10px; /* Menos arredondamento */
        }
    
        .testimonial img {
            width: 40px; /* Imagem menor */
            height: 40px;
            margin-right: 10px;
        }
    
        .testimonial-content {
            flex-direction: column; /* Layout vertical */
            align-items: flex-start; /* Alinha ao início */
        }
    
        .testimonial p {
            font-size: 0.9em; /* Texto menor */
        }
    
        .testimonial-name {
            font-size: 1em; /* Texto menor */
            margin-top: 5px;
        }
    
        .arrow {
            width: 30px; /* Botões menores */
            height: 30px;
            font-size: 1.2em;
        }
    
        .arrow-left {
            left: 5px; /* Reposiciona */
        }
    
        .arrow-right {
            right: 5px; /* Reposiciona */
        }

        .support-message h2 {
            color: #ff5722;
            margin-bottom: 10px;
            font-size: 1.8rem;
        }
        
        /* Parágrafos */
        .support-message p {
            line-height: 1.6;
            font-size: 1rem;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            body {
                height: auto;
                padding: 40px 20px;
                text-align: center;
            }
        
            .support-message {
                padding: 15px;
                border-radius: 5px;
            }
        
            .support-message h2 {
                font-size: 1.5rem;
            }
        
            .support-message p {
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 480px) {
            .support-message {
                padding: 12px;
            }
        
            .support-message h2 {
                font-size: 1.3rem;
            }
        
            .support-message p {
                font-size: 0.9rem;
            }
        }

        .cookie-banner {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
    
        .cookie-banner button {
            width: 100%;
            margin-top: 10px;
        }
    }
    
    @media (max-width: 480px) {
        .cookie-banner {
            width: 95%;
            bottom: 10px;
            padding: 15px;
        }
    
        .cookie-banner button {
            font-size: 13px;
            padding: 8px 15px;
        }
    }


    

