/* landing.css */

/* Variáveis Específicas da Landing Page */
.landing-page {
    --content-max-width: 800px;
    --sidebar-width: 320px;
    --content-gap: 60px;
}

.nav-menu {
    height: 100%;
}


.nav {
    height: 100%;
}

section {
    position: relative;
    margin: 0;
}

.section-header {
    padding-top: 100px; /* Mover o padding para o header ao invés da seção */
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Header Específico */
.landing-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 60px;
    background-color: rgba(18, 18, 18, 0.1);
    border-bottom: none; /* Removendo borda que existia */
    font-size: 1.1rem;
}

.landing-header .nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-header .nav-list {
    display: flex;
    list-style: none;
    gap: 50px;
    height: 100%;
    align-items: center;
}

.landing-header .nav-link {
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 8px 0;
    position: relative;
    color: var(--color-text-primary);
    text-decoration: none;
}

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


.logo {
    height: 80%;
    padding: 10px 0;
    margin-right: 100px;
    display: flex;
    align-items: center;
}


.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    width: 0;
    transition: width 0.1s ease;
}

.landing-header.scrolled {
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.landing-header .home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: transform var(--transition-normal);
}

.landing-header .home-button {
    background: var(--gradient-gold);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--color-bg-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* .home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
} */

.landing-header .home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(178, 149, 87, 0.2);
}
.landing-header .home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 193, 65, 0.2);
}

/* Hero Section */
.landing-hero {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--color-bg-primary);
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 0; /* Remover padding bottom */
}
.landing-hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    height: 100%; /* Definir altura explicitamente */
    bottom: 0; /* Garantir que chegue até o final */
}

.landing-hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) blur(2px);
    transform: scale(1.02); /* Reduzir ainda mais o scale */
}
.landing-hero-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(18, 18, 18, 0.25) 0%,
        var(--color-bg-primary) 100% /* Mudar para a cor de fundo primária */
    );
    z-index: 2;
}
.landing-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 0;
}

.landing-hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextFadeIn 1s ease forwards;
}

.landing-hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text-primary);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.landing-hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.9s forwards;
}


/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.breadcrumbs a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs i {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

.help-topics {
    position: relative;
    background: var(--color-bg-primary);
    padding-top: 0;
    margin-top: 0; 
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.help-topic-card {
    background: var(--color-bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.help-topic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(178, 149, 87, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-topic-card:hover::before {
    opacity: 1;
}


.help-topic-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.help-topic-card i {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(178, 149, 87, 0.1) 0%, rgba(178, 149, 87, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}
.help-topic-card i:hover .help-topic-card i {
    transform: scale(1.1);
}

.help-topic-card i {
    font-size: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(178, 149, 87, 0.3));
}
.help-topic-card i:hover .help-topic-card i {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(178, 149, 87, 0.2) 0%, rgba(178, 149, 87, 0.3) 100%);
}

.help-topic-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-text-primary);
    font-weight: 600;
}

.help-topic-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.help-topic-card .topic-link {
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: gap 0.3s;
}

.help-topic-card .topic-link:hover {
    gap: 12px;
}


/* Work Process Section */
.work-process {
    background: var(--color-bg-primary);
    position: relative;
    padding: 120px 0;
}


.process-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-steps {
    position: relative;
}

.process-step {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.process-step:hover {
    transform: translateX(10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}


.process-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.landing-hero-text h1,
.landing-hero-text p,
.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.landing-hero-text h1.animate-in,
.landing-hero-text p.animate-in,
.hero-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de paralaxe suave */
.landing-hero-bg-image {
    transition: transform 0.1s ease-out;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--color-primary) 0%,
        transparent 100%
    );
    opacity: 0.3;
}

.step-number {
    position: relative;
    z-index: 2;
    background: var(--gradient-gold);
    box-shadow: 0 0 20px rgba(236, 193, 65, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 193, 65, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(236, 193, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 193, 65, 0);
    }
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: var(--color-border);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bg-primary);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Specialists Section */
.specialists {
    padding: 120px 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.specialists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-primary),
        transparent
    );
    opacity: 0.3;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.specialist-card {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialist-image {
    width: 100%;
    height: 620px;
    position: relative;
    overflow: hidden;
}

.specialist-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.specialist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialist-card:hover .specialist-image img {
    transform: scale(1.05);
}

.specialist-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.9),
        transparent
    );
}


.help-topic-card,
.specialist-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-topic-card:hover,
.specialist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.specialist-card:hover .specialist-image img {
    transform: scale(1.05);
}

.specialist-info {
    padding: 32px;
    position: relative;
}

.specialist-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.specialist-info h3 {
    font-size: 1.8rem;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.specialist-role {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.specialist-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.specialist-contact {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.specialist-contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(178, 149, 87, 0.2);
}

.specialist-contact a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: var(--color-bg-primary);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Main CTA Section */
.main-cta-section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.cta-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    filter: blur(40px);
    z-index: 0;
}

.floating-1 {
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        var(--color-primary) 0%,
        transparent 70%
    );
    animation: float 20s ease-in-out infinite;
}

.floating-2 {
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        var(--color-primary-light) 0%,
        transparent 70%
    );
    animation: float 15s ease-in-out infinite reverse;
}

.container {
    margin: 0 auto;
    padding: 0 40px;
}

/* Estilos para a seção de credibilidade */
.credibility {
    padding: 100px 0;
    background: var(--color-bg-primary);
    position: relative;
}

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

.credibility-card {
    background: var(--color-bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.credibility-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(178, 149, 87, 0.1) 0%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credibility-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.credibility-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg,
        rgba(178, 149, 87, 0.1) 0%,
        rgba(178, 149, 87, 0.2) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 32px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credibility-card:hover .card-icon {
    transform: scale(1.1);
}

.credibility-card h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.credibility-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.contact-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.contact-info {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 32px;
}

.contact-method:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.2;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
        rgba(178, 149, 87, 0.1) 0%,
        rgba(178, 149, 87, 0.2) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.method-details {
    flex: 1;
}

.method-details h3 {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.method-details p,
.method-details a {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: var(--color-primary);
}

.contact-form {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(178, 149, 87, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form button {
    grid-column: 1 / -1;
    background: var(--gradient-gold);
    color: var(--color-bg-primary);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(178, 149, 87, 0.2);
}

.landing-footer {
    background: var(--color-bg-elevated);
    padding-top: 100px;
    position: relative;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-primary),
        transparent
    );
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 140px;
    width: auto;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--color-text-primary);
    font-size: 1.3rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.footer-contact span {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="100"] { transition-delay: 100ms; }
[data-animate-delay="200"] { transition-delay: 200ms; }
[data-animate-delay="300"] { transition-delay: 300ms; }
[data-animate-delay="400"] { transition-delay: 400ms; }
[data-animate-delay="500"] { transition-delay: 500ms; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(2%, 2%) rotate(5deg);
    }
    50% {
        transform: translate(-2%, -2%) rotate(-5deg);
    }
    75% {
        transform: translate(1%, -1%) rotate(2deg);
    }
}


@keyframes heroContentFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .landing-hero-text h1 {
        font-size: 3.5rem;
    }
    
    .process-step {
        padding: 24px;
    }
    .landing-hero {
        min-height: 60vh;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-hero-content {
        padding: 40px 0;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .specialists-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .process-step:not(:last-child)::after {
        left: 50%;
        top: 60px;
        height: 40px;
        width: 2px;
        transform: translateX(-50%);
    }

    .cta-wrapper {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
    .landing-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .help-topics {
        padding: 80px 0;
    }
    
    .work-process {
        padding: 80px 0;
    }
    .landing-header {
        height: 70px;
    }
    
 .logo {
    margin-right: 0px;
 }

    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .help-topic-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .landing-hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-wrapper {
        padding: 30px;
    }

    .landing-hero-text p {
        font-size: 1rem;
    }

    .specialist-card {
        max-width: 100%;
    }

    .specialist-contact {
        flex-direction: column;
    }
}