/* Variáveis de Cores */
:root {
    --primary-color: #0056b3; /* Azul mais escuro */
    --secondary-color: #e0f2f7; /* Azul bem claro */
    --accent-color: #007bff; /* Azul padrão */
    --text-color: #333;
    --light-text-color: #f8f9fa;
    --white-color: #fff;
    --gray-light: #f2f2f2;
    --gray-medium: #ccc;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Cabeçalho */
header {
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 1rem 0;
    border-bottom: 3px solid var(--accent-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px; /* Ajuste conforme a logo final */
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--secondary-color);
}

/* Botões */
.btn {
    display: inline-block;
    color: var(--white-color);
    background: var(--accent-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 15px;
}

.btn:hover {
    background: #0056b3;
}

.btn-secondary {
    display: inline-block;
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 15px;
}

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

.btn-whatsapp {
    background: #25D366; /* Cor do WhatsApp */
    color: var(--white-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1DA851;
}

/* Seções Gerais */
section {
    padding: 40px 0;
    text-align: center;
}

section h1,
section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

section p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
#hero {
    background: var(--secondary-color);
    color: var(--primary-color);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
}

/* About Short Section */
#about-short {
    background: var(--white-color);
}

/* Services Overview Section */
#services-overview {
    background: var(--gray-light);
}

.service-cards,
.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.service-cards .card,
.testimonial-cards .card {
    background: var(--white-color);
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.service-cards .card:hover,
.testimonial-cards .card:hover {
    transform: translateY(-5px);
}

.service-cards .card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testimonial-cards .card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonial-cards .card span {
    display: block;
    text-align: right;
    font-weight: bold;
    color: var(--accent-color);
}

/* WhatsApp Verified Section */
#whatsapp-verified {
    background: var(--secondary-color);
    padding: 30px 0;
}

/* Rodapé */
footer {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

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

footer nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer nav ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 15px;
    }

    header nav ul li {
        margin: 0 10px;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    .service-cards,
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-cards .card,
    .testimonial-cards .card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2em;
    }

    header .logo img {
        height: 40px;
    }

    header nav ul li {
        margin: 0 5px;
    }

    .btn, .btn-secondary, .btn-whatsapp {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}



/* Estilos específicos para páginas */

/* Página de Serviços */
#services-hero {
    background: var(--secondary-color);
    padding: 60px 0;
}

.service-category {
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.service-category:last-child {
    border-bottom: none;
}

.service-details {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}

.service-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1;
    text-align: left;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 15px;
}

.service-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
}

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

.benefit-card {
    background: var(--white-color);
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Página de Área do Cliente */
#client-area-hero {
    background: var(--secondary-color);
    padding: 60px 0;
}

.login-form-container {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.login-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.login-help {
    margin-top: 20px;
    font-size: 14px;
}

.login-help a {
    color: var(--accent-color);
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

.client-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: var(--white-color);
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Página de Contato */
#contact-hero {
    background: var(--secondary-color);
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-details {
    text-align: left;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 8px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-section {
    background: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form {
    text-align: left;
}

/* Responsividade para páginas específicas */
@media (max-width: 768px) {
    .service-details {
        flex-direction: column;
    }
    
    .service-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid,
    .client-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-form-container,
    .contact-form-section {
        padding: 20px;
    }
    
    .service-category {
        margin-bottom: 30px;
        padding: 20px 0;
    }
}

