/* Contact Page Specific Styles */
.page-contato {
    overflow: hidden;
    /* Keep it similar to home page, preventing scrolling */
}

/* Add a very subtle gradient overlay specifically for the contact page to make text pop */
.contato-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
    pointer-events: none;
}

[data-theme="light"] .contato-bg-overlay {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.contato-section {
    justify-content: center;
    align-items: center;
}

.contato-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato-text-content {
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    max-width: 650px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.8s ease-out forwards;
}

[data-theme="light"] .contato-text-content {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}

.contato-text-content .headline-line-2 {
    font-size: 72px;
    margin-bottom: 0.5rem;
    display: block;
}

.contato-text-content .subtext {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

/* WhatsApp CTA Button */
.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 320px;
}

.cta-whatsapp:hover {
    background: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Supporting Helper Text */
.helper-text {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-main);
    opacity: 0.6;
    margin-bottom: 3rem;
    max-width: 400px;
    line-height: 1.5;
}

/* Contact Info Lines */
.contact-info {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-main);
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

[data-theme="light"] .contact-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contato-text-content {
        padding: 3rem 1.5rem;
    }

    .contato-text-content .headline-line-2 {
        font-size: 56px;
    }

    .cta-whatsapp {
        width: 100%;
        max-width: 100%;
    }
}