/**
 * Wide Studio - Contact Page Styles
 * Estilos da página de contato
 */

/* =================================
   CONTACT SECTION
   ================================= */
.contact-section {
    padding: 160px var(--padding-x) 60px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

/* =================================
   CONTACT HERO
   ================================= */
.contact-hero {
    margin-bottom: 80px;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--text-color);
    margin: 0 0 30px;
    position: relative;
    will-change: transform, opacity, filter;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

/* =================================
   CONTACT GRID (Cards)
   ================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.contact-card {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.contact-card:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--bg-color);
    color: var(--text-color);
    border-color: transparent;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
}

.contact-card:hover .contact-card-label {
    opacity: 0.7;
}

.contact-card-value {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.contact-card-value.copied {
    color: inherit;
}

.contact-card-hint {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: auto;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-card-hint {
    opacity: 0.7;
}

/* =================================
   LOCATION INFO
   ================================= */
.contact-location {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-location-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    display: block;
    margin-bottom: 10px;
}

.contact-location-text {
    font-size: 1rem;
    margin: 0;
    color: #666;
}

/* =================================
   RESPONSIVE
   ================================= */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding-top: 120px;
    }

    .contact-hero {
        margin-bottom: 50px;
    }

    .contact-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .contact-grid {
        margin-bottom: 50px;
    }
}