/**
 * Estilos da página de Contato
 * Design moderno e elegante para a página de Contato
 */

/* 
/* Header da página */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 6rem 0 4rem;
    color: var(--light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.page-header .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero-pattern.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.page-header .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.page-header .hero-wave .wave {
    width: 100%;
    height: auto;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Contato Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-methods {
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--light);
}

.contact-details h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.contact-details a {
    color: var(--text-secondary);
    transition: color var(--transition-normal);
}

.contact-details a:hover {
    color: var(--secondary);
}

.social-media {
    margin-top: 3rem;
}

.social-media h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-media .social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-full);
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
}

.social-media .social-link:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

/* Formulário */
.contact-form-container {
    background-color: var(--card-background);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: var(--input-background);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.form-check-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.form-check-label a {
    color: var(--secondary);
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

.form-message {
    margin-top: 1rem;
    display: none;
}

.alert {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Mapa Section */
.map-section {
    height: 450px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section - usando estilos do componente faq.css */
/* Removido todos os estilos específicos para usar apenas os do componente faq.css */

/* Estilos para o container do Google Form */
.google-form-container {
    width: 100%;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 0;
    overflow: hidden;
    animation: fadeSlideIn 0.6s ease-out;
    transform-origin: top;
}

.google-form-container iframe {
    width: 100%;
    height: 100vh;
    max-height: 900px;
    min-height: 850px;
    border: none;
    border-radius: var(--border-radius);
    background-color: transparent;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
}

/* Melhorias responsivas */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
}
/* =====================================================
   MELHORIAS DE RESPONSIVIDADE APRIMORADAS
   ===================================================== */

/* Responsividade aprimorada para Desktop Grande */
@media (min-width: 1400px) {
    .hero {
        min-height: 70vh;
        padding: 8rem 0 6rem;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 1.2);
        max-width: 900px;
        margin: 0 auto 2rem;
    }
    
    .hero p {
        font-size: calc(var(--font-size-lg) * 1.1);
        max-width: 700px;
    }
    
    .contact-grid {
        gap: 4rem;
    }
}

/* Responsividade para Tablets e Dispositivos Médios */
@media (max-width: 1200px) {
    .hero {
        min-height: 55vh;
        padding: 5rem 0 4rem;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.85);
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        min-height: 50vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.8);
    }
    
    .hero h1:after {
        width: 80px;
        height: 3px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
        margin-bottom: 0;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-media {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 2rem;
    }
    
    .google-form-container iframe {
        min-height: 800px;
    }
}

/* Dispositivos Móveis */
@media (max-width: 768px) {
    .hero {
        min-height: 45vh;
        padding: 4rem 0 2.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.7);
    }
    
    .hero h1:after {
        width: 70px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: var(--font-size-lg);
        margin-bottom: 0.5rem;
        color: var(--primary);
    }
    
    .contact-details p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
        margin: 0;
    }
    
    .google-form-container iframe {
        border-radius: var(--border-radius-lg);
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 40vh;
        padding: 3.5rem 0 2rem;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.6);
        margin-bottom: 1rem;
    }
    
    .hero h1:after {
        width: 60px;
        margin-top: 0.75rem;
    }
    
    .hero p {
        font-size: calc(var(--font-size-base) * 0.9);
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: var(--font-size-base);
    }
    
    .contact-details p {
        font-size: var(--font-size-xs);
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .google-form-container {
        margin: 0 -1rem;
    }
}

/* =====================================================
   MELHORIAS DE RESPONSIVIDADE APRIMORADAS
   ===================================================== */

/* Responsividade aprimorada para Desktop Grande */
@media (min-width: 1400px) {
    .hero {
        min-height: 70vh;
        padding: 8rem 0 6rem;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 1.2);
        max-width: 900px;
        margin: 0 auto 2rem;
    }
    
    .hero p {
        font-size: calc(var(--font-size-lg) * 1.1);
        max-width: 700px;
    }
    
    .contact-grid {
        gap: 4rem;
    }
}

/* Responsividade para Tablets e Dispositivos Médios */
@media (max-width: 1200px) {
    .hero {
        min-height: 55vh;
        padding: 5rem 0 4rem;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.85);
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        min-height: 50vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.8);
    }
    
    .hero h1:after {
        width: 80px;
        height: 3px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
        margin-bottom: 0;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-media {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 2rem;
    }
    
    .google-form-container iframe {
        min-height: 800px;
    }
}

/* Dispositivos Móveis */
@media (max-width: 768px) {
    .hero {
        min-height: 45vh;
        padding: 4rem 0 2.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.7);
    }
    
    .hero h1:after {
        width: 70px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: var(--font-size-lg);
        margin-bottom: 0.5rem;
        color: var(--primary);
    }
    
    .contact-details p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
        margin: 0;
    }
    
    .google-form-container iframe {
        border-radius: var(--border-radius-lg);
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 40vh;
        padding: 3.5rem 0 2rem;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.6);
        margin-bottom: 1rem;
    }
    
    .hero h1:after {
        width: 60px;
        margin-top: 0.75rem;
    }
    
    .hero p {
        font-size: calc(var(--font-size-base) * 0.9);
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: var(--font-size-base);
    }
    
    .contact-details p {
        font-size: var(--font-size-xs);
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .google-form-container {
        margin: 0 -1rem;
    }
}

/* =====================================================
   MELHORIAS DE RESPONSIVIDADE APRIMORADAS
   ===================================================== */

/* Responsividade aprimorada para Desktop Grande */
@media (min-width: 1400px) {
    .hero {
        min-height: 70vh;
        padding: 8rem 0 6rem;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 1.2);
        max-width: 900px;
        margin: 0 auto 2rem;
    }
    
    .hero p {
        font-size: calc(var(--font-size-lg) * 1.1);
        max-width: 700px;
    }
    
    .contact-grid {
        gap: 4rem;
    }
}

/* Responsividade para Tablets e Dispositivos Médios */
@media (max-width: 1200px) {
    .hero {
        min-height: 55vh;
        padding: 5rem 0 4rem;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.85);
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        min-height: 50vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.8);
    }
    
    .hero h1:after {
        width: 80px;
        height: 3px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
        margin-bottom: 0;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-media {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 2rem;
    }
    
    .google-form-container iframe {
        min-height: 800px;
    }
}

/* Dispositivos Móveis */
@media (max-width: 768px) {
    .hero {
        min-height: 45vh;
        padding: 4rem 0 2.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.7);
    }
    
    .hero h1:after {
        width: 70px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: var(--font-size-lg);
        margin-bottom: 0.5rem;
        color: var(--primary);
    }
    
    .contact-details p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
        margin: 0;
    }
    
    .google-form-container iframe {
        border-radius: var(--border-radius-lg);
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 40vh;
        padding: 3.5rem 0 2rem;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.6);
        margin-bottom: 1rem;
    }
    
    .hero h1:after {
        width: 60px;
        margin-top: 0.75rem;
    }
    
    .hero p {
        font-size: calc(var(--font-size-base) * 0.9);
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: var(--font-size-base);
    }
    
    .contact-details p {
        font-size: var(--font-size-xs);
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .google-form-container {
        margin: 0 -1rem;
    }
}

/* Correção para manter especificidade correta dos ícones sociais */
/* Aplicar estilos apenas aos ícones da seção de contato, não aos do footer */

/* Sobrescrevendo regras globais com mais especificidade */
@media (max-width: 768px) {
    .social-media .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        /* Força os estilos apenas para os ícones da seção de contato */
    }
}

@media (max-width: 480px) {
    .social-media .social-link {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .social-media .social-link {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
}

/* Garantir que os ícones do footer mantenham o estilo original */
.footer .social-link {
    width: 36px !important;
    height: 36px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: var(--gray-200) !important;
}

.footer .social-link:hover {
    background-color: var(--accent) !important;
    color: var(--light) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3) !important;
}

/* Loading overlay para formulário */
.form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--card-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.loader-ring {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: loader-spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efeito para links ativos em dispositivos móveis */
.active-link {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

/* ==================================
   CORREÇÕES PARA FAQ E HERO-SECTION
   ================================== */

/* Melhorias para Hero Section */
.hero .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Fix para o parallax */
.parallax-bg {
    transform: translateZ(0);
    will-change: transform;
}

/* Media Queries para o Hero Section */
@media (max-width: 1400px) {
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.9);
    }
}

@media (max-width: 1200px) {
    .hero {
        min-height: 55vh;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.85);
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 50vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.8);
    }
    
    .hero h1:after {
        width: 80px;
        height: 3px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 45vh;
        padding: 4rem 0 2.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.7);
    }
    
    .hero h1:after {
        width: 70px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 40vh;
        padding: 3.5rem 0 2rem;
    }
    
    .hero h1 {
        font-size: calc(var(--font-size-4xl) * 0.6);
        margin-bottom: 1rem;
    }
    
    .hero h1:after {
        width: 60px;
        margin-top: 0.75rem;
    }
    
    .hero p {
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2.5rem 0 1.5rem;
        min-height: 35vh;
    }
    
    .page-header h1 {
        font-size: var(--font-size-lg);
    }
    
    .page-header p {
        font-size: var(--font-size-xs);
    }
}

/* Animação flutuante para elementos do hero */
@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
    100% {
        transform: translateY(10px) translateX(-15px);
    }
}