/* Estilos existentes */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Estilos do menu */
.nav-header {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    width: 80%;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

/* Estilos da seção hero */
.hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: #218838;
}

/* Ajuste do container principal */
.main-content {
    padding-top: 0;
}

/* Novos estilos para os cards */
.services-section, .testimonials-section {
    padding: 40px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.service-card {
    text-align: center;
    border-top: 4px solid #007bff;
}

.testimonial-card {
    border-left: 4px solid #28a745;
}

.testimonial-card .client-name {
    color: #28a745;
    font-weight: bold;
    margin-top: 15px;
}

.service-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

/* Ajuste da seção de registro */
.register-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.register-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #007bff;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item strong {
    color: #007bff;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.info-item p {
    margin: 0;
    color: #495057;
    font-size: 1.1em;
}

.register-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    position: relative;
}

.register-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 15px auto;
    border-radius: 2px;
}

/* Estilos do Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: auto;
}

/* Atualizar grid do footer */
.footer-content {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-content h2 {
    color: #fff;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Estilos do alerta de cookies */
.cookie-alert {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
}

.cookie-alert.show {
    bottom: 0;
}

.cookie-alert p {
    margin: 0;
    margin-bottom: 10px;
}

.cookie-alert button {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-alert button:hover {
    background: #218838;
}

/* Estilos do botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Ajuste para quando o alerta de cookies estiver visível */
.cookie-alert.show + .whatsapp-float {
    bottom: 100px;
}

/* Estilos para páginas legais */
.legal-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-content h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.legal-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    color: #495057;
}

.legal-section p {
    color: #495057;
    line-height: 1.6;
}
