/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #007BFF; /* Azul para botões e destaques */
    --secondary-color: #FFC107; /* Amarelo para detalhes */
    --text-color: #333;
    --light-bg: #f8f9fa; /* Fundo cinza claro para seções */
    --dark-bg: #343a40; /* Fundo escuro para footer ou hero */
    --white-text: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-text);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

h1 {
    font-size: 3em;
    color: var(--white-text);
}

h2 {
    font-size: 2.5em;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8em;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-text);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3; /* Tom mais escuro de azul */
    border-color: #0056b3;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e0a800; /* Tom mais escuro de amarelo */
    border-color: #e0a800;
}

/* Seções Gerais */
.section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Hero Section */
.hero-section {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white-text);
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-section::before { /* Overlay para melhorar a legibilidade do texto */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    z-index: 1; /* Garante que o conteúdo esteja acima do overlay */
    max-width: 800px;
}

.hero-content h2 {
    color: var(--white-text);
    font-size: 1.5em;
    margin-bottom: 2rem;
}

.hero-content .btn-primary {
    font-size: 1.2em;
    padding: 1rem 2rem;
}

/* Como Funciona - Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--white-text);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Por Que Nós - Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--white-text);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

/* Serviços - Packages Grid */
.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--white-text);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.03);
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.package-card h3 {
    font-size: 1.8em;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.package-card .price {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1; /* Para que a lista ocupe o espaço disponível */
}

.package-card ul li {
    margin-bottom: 0.8rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.package-card ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1em;
}

.package-card .btn-primary, .package-card .btn-secondary {
    margin-top: auto; /* Alinha os botões na parte inferior */
    width: 100%;
}

/* Depoimentos */
.testimonial-card {
    max-width: 700px;
    margin: 2rem auto;
    background-color: var(--white-text);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Sobre Nós */
#sobre p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.social-links {
    text-align: center;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 2em;
    margin: 0 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white-text);
    text-align: center;
    padding: 2rem;
    font-size: 0.9em;
}

.footer a {
    color: var(--secondary-color);
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }

    .process-steps, .features-grid, .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .step, .feature-item, .package-card {
        max-width: 90%;
        margin-bottom: 1.5rem;
    }

    .package-card.featured {
        transform: none; /* Remove a escala no mobile para evitar sobreposição */
    }
}