/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fundo Natuceny */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(212,175,55,0.2) 100%);
    z-index: -1;
}

/* Wrapper de Animação */
.contact-wrapper {
    perspective: 1000px;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

/* O Bloco Super Avançado */
.contact-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1), 
                inset 0 0 15px rgba(212, 175, 55, 0.2);
    position: relative;
    transform-style: preserve-3d;
    animation: fadeInCard 1s ease-out;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.gold-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f9e29c, #d4af37);
    border-radius: 0 0 10px 10px;
}

/* Cabeçalho */
.contact-header h1 {
    font-family: 'Playfair Display', serif;
    color: #b8860b;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* Itens de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: white;
    border-color: #d4af37;
    transform: scale(1.05) translateX(10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #f9e29c);
    border-radius: 10px;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
}

.text-box {
    text-align: left;
}

.text-box span {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
}

.text-box strong {
    color: #444;
    font-size: 1rem;
}

/* Botão Voltar */
.btn-back {
    display: inline-block;
    margin-top: 40px;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.btn-back:hover {
    border-bottom-color: #d4af37;
    letter-spacing: 1px;
}