body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-cta-buttons-left {
    display: flex;
    align-items: center;
}

.header-cta-buttons-left .cta {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.header-cta-buttons-right {
    display: flex;
    align-items: center;
}

.header-cta-buttons-right .client-text {
    margin-right: 10px;
    color: #fff;
}

.header-cta-buttons-right .cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

#hero {
    position: relative;
    padding: 150px 0; /* Aumentar a altura da seção */
    text-align: center;
    color: #333;
}

#hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/fundo.png'); /* Caminho da imagem que você enviou */
    background-size: cover;
    background-position: center;
    opacity: 0.25; /* Esmaecer a imagem */
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2; /* Colocar o texto e botão sobre a imagem */
}

#hero h1 {
    font-size: 40px; /* Aumentar o tamanho do texto para melhor visibilidade */
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8); /* Contorno branco */
}

#hero p {
    font-size: 20px; /* Aumentar o tamanho do parágrafo */
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8); /* Contorno branco */
}

.cta-secondary {
    background-color: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
    }
    
    #hero p {
        font-size: 16px;
    }
    
    .cta-secondary {
        padding: 8px 16px;
        font-size: 16px;
    }
}


.hero-content {
    margin-top: 100px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-image {
    max-width: 100%;
    margin-top: 50px;
}

#funcionalidades {
    padding: 50px 0;
    background-color: #f9f9f9;
}

#funcionalidades h2 {
    text-align: center;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: space-between;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-basis: 24%;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
}

/* Estilo para a seção "Teste Grátis por 15 dias" */
#teste-gratis {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

#teste-gratis h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

#teste-gratis p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-special {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

#precos {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

#precos h2 {
    margin-bottom: 40px;
}

.pricing-table {
    display: flex;
    justify-content: space-between;
}

.pricing-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-basis: 48%;
    margin-bottom: 20px;
}

.pricing-card.popular {
    border: 2px solid #ff6600;
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

.pricing-card .cta {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

#funcionalidades .funcionalidades-prints {
    margin-top: 40px;
    text-align: center;
}

.funcionalidades-prints h3 {
    margin-bottom: 20px;
}

.funcionalidades-prints .prints {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.funcionalidades-prints .prints img {
    width: 30%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #007bff;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #ff6600;
    text-decoration: none;
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Tamanho da fonte padrão */
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px; /* Reduzindo o tamanho da fonte */
    padding: 8px 10px; /* Ajustando o padding para melhorar o espaçamento */
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-cta-buttons-left {
    flex: 1; /* Ocupa o espaço necessário */
}

.header-cta-buttons-right {
    flex: 1; /* Ocupa o espaço necessário */
    display: flex;
    justify-content: flex-end; /* Alinha o botão "Entrar" à direita */
}

.header-cta-buttons-left .cta,
.header-cta-buttons-right .cta-secondary {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.header-cta-buttons-left .cta {
    background-color: #ff6600;
    color: #fff;
}

.header-cta-buttons-right .cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    header .container {
        /*flex-direction: column; /* Empilha os botões verticalmente */
        /*align-items: center;*/
    }

    .header-cta-buttons-right {
        margin-top: 10px; /* Adiciona espaço entre os botões */
    }
	
	.header-cta-buttons-left{
		width: inherit;
	}

    .header-cta-buttons-left .cta, 
    .header-cta-buttons-right .cta-secondary {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Permite que os cards quebrem linha em telas menores */
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-basis: 30%; /* Define a largura de cada card */
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center; /* Centraliza o texto dentro dos cards */
}

@media (max-width: 768px) {
    .card {
        flex-basis: 100%; /* Cada card ocupará 100% da largura em dispositivos móveis */
        margin-bottom: 10px;
    }

    .cards {
        justify-content: center; /* Centraliza os cards no container */
    }
}