/* Estilos compartilhados */
.page-content {
    padding-top: 80px;
    min-height: calc(100vh - 200px);
}

.page-content h1 {
    text-align: center;
    margin: 3rem 0;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Estilos FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(242, 160, 7, 0.2);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.faq-item:hover h3 {
    transform: translateX(10px);
}

.faq-item p {
    transition: opacity 0.3s ease;
}

.faq-item:hover p {
    opacity: 0.9;
}

.faq-item a {
    color: var(--text-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.faq-item a:hover {
    opacity: 0.8;
}

/* Estilos Contato */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.info-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.info-item i {
    margin-right: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group:hover label {
    color: var(--primary-color);
    transform: translateX(5px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 160, 7, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 160, 7, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Estilos Blog */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.blog-card h3 {
    margin: 1rem 0;
    color: var(--primary-color);
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
}

/* Adicione isso aos estilos compartilhados */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Estilos para posts do blog */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.post-header {
    margin-bottom: 2rem;
}

.post-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.post-meta {
    text-align: center;
}

.post-content {
    line-height: 1.8;
}

.post-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-to-blog {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.back-to-blog:hover {
    text-decoration: underline;
}

/* Responsividade para posts */
@media (max-width: 768px) {
    .blog-post {
        padding: 1rem;
    }

    .post-header img {
        height: 250px;
    }
}

/* Estilos para Política de Privacidade */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.policy-section {
    line-height: 1.8;
}

.policy-section h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.policy-section p {
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 1rem;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
    opacity: 0.8;
}

/* Estilos para o modal de posts */
.post-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 2rem;
    background: var(--background-color);
    border-radius: 8px;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-content.active {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-color);
}

.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--primary-color);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.read-more {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    text-decoration: underline;
}

.contact-video {
    margin-top: 2rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.contact-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Ajuste para responsividade */
@media (max-width: 768px) {
    .contact-video {
        margin: 1.5rem auto;
        max-width: 300px;
    }
} 