/* ============================================================
   contato.css — Estilos específicos da página Contato
   Depende de: pages-shared.css
   ============================================================ */

.page-hero { background-image: url('../familia1.png'); }

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 100px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.contact-info { width: 100%; text-align: center; }

.contact-info-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--pink-vibrant);
    margin-bottom: 20px;
}
body.light-mode .contact-info-title { color: rgb(14,6,78); }

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(254,245,231,0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
body.light-mode .contact-intro { color: rgba(30,20,40,0.85); }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 560px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(45,10,78,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233,30,99,0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}
.contact-item:hover {
    border-color: var(--pink-vibrant);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
body.light-mode .contact-item { background: rgba(255,255,255,0.5); border-color: rgba(45,10,78,0.25); }

.contact-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--pink-vibrant), var(--purple-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details { text-align: left; }
.contact-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 4px;
}
body.light-mode .contact-details h3 { color: rgba(30,20,40,0.9); }

.contact-details a,
.contact-details span {
    color: var(--pink-soft);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}
.contact-details a:hover { color: var(--pink-vibrant); }
body.light-mode .contact-details a { color: rgb(14,6,78); }

/* Social Section */
.social-section {
    width: 100%;
    text-align: center;
    padding: 50px 30px;
    background: rgba(45,10,78,0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(233,30,99,0.2);
}
body.light-mode .social-section { background: rgba(255,255,255,0.4); border-color: rgba(45,10,78,0.2); }

.social-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--pink-vibrant);
    margin-bottom: 35px;
}
body.light-mode .social-section h2 { color: rgb(14,6,78); }

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: rgba(45,10,78,0.4);
    border: 1px solid rgba(233,30,99,0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 120px;
}
.social-link:hover {
    transform: translateY(-10px);
    border-color: var(--pink-vibrant);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
body.light-mode .social-link { background: rgba(255,255,255,0.6); border-color: rgba(45,10,78,0.25); }

.social-link svg {
    width: 40px; height: 40px;
    fill: var(--pink-vibrant);
    transition: all 0.3s ease;
}
.social-link:hover svg { fill: var(--pink-soft); transform: scale(1.1); }
body.light-mode .social-link svg { fill: rgba(79,7,97,0.85); }

.social-label {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--cream);
    letter-spacing: 1px;
}
body.light-mode .social-label { color: rgba(30,20,40,0.9); }

@media (max-width: 768px) {
    .contact-info-title { font-size: 2rem; }
    .social-section h2  { font-size: 1.8rem; }
    .social-links       { gap: 15px; }
    .contact-item:hover { transform: none; }
}

/* ============================================================
   Cosmic Gold Refresh
   ============================================================ */

.contact-section {
    max-width: 980px;
    padding-top: 76px;
}

.contact-info-title,
.social-section h2 {
    color: #f1d39d;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

body.light-mode .contact-info-title,
body.light-mode .social-section h2 {
    color: #7a5c00;
}

.contact-intro {
    color: rgba(246, 237, 220, 0.82);
}

body.light-mode .contact-intro {
    color: rgba(43, 33, 24, 0.82);
}

.contact-item,
.social-section,
.social-link {
    background:
        linear-gradient(160deg, rgba(10, 13, 26, 0.74), rgba(8, 11, 20, 0.9)),
        radial-gradient(circle at top right, rgba(111, 201, 255, 0.07), transparent 30%);
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

body.light-mode .contact-item,
body.light-mode .social-section,
body.light-mode .social-link {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(242, 234, 219, 0.98));
    border-color: rgba(122, 92, 0, 0.14);
}

.contact-item:hover,
.social-link:hover {
    border-color: rgba(244, 215, 154, 0.32);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.contact-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.92), rgba(244, 215, 154, 0.9));
    color: #120d09;
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.18);
}

.contact-details h3,
.social-label {
    color: #f6eddc;
}

body.light-mode .contact-details h3,
body.light-mode .social-label {
    color: #2b2118;
}

.contact-details a,
.contact-details span {
    color: rgba(233, 201, 136, 0.88);
}

.contact-details a:hover {
    color: #f4d79a;
}

body.light-mode .contact-details a {
    color: #7a5c00;
}

.social-link svg {
    fill: #f1d39d;
}

body.light-mode .social-link svg {
    fill: #7a5c00;
}

.contact-guide {
    width: 100%;
    padding: 32px;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(10, 13, 26, 0.78), rgba(8, 11, 20, 0.92)),
        radial-gradient(circle at top right, rgba(107, 196, 255, 0.08), transparent 30%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.contact-guide-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244, 215, 154, 0.74);
}

.contact-guide-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: #f1d39d;
    margin-bottom: 14px;
}

.contact-guide-text {
    color: rgba(246, 237, 220, 0.8);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 60ch;
}

.contact-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.contact-guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #120d09;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(244, 215, 154, 0.92));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-guide-btn.secondary {
    color: #f1d39d;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.contact-guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

body.light-mode .contact-guide {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(242, 234, 219, 0.98));
    border-color: rgba(122, 92, 0, 0.14);
}

body.light-mode .contact-guide-title {
    color: #7a5c00;
}

body.light-mode .contact-guide-text {
    color: rgba(43, 33, 24, 0.8);
}

body.light-mode .contact-guide-btn.secondary {
    color: #7a5c00;
    background: rgba(122, 92, 0, 0.05);
    border-color: rgba(122, 92, 0, 0.16);
}

@media (max-width: 768px) {
    .contact-guide {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .contact-guide-actions {
        flex-direction: column;
    }

    .contact-guide-btn {
        width: 100%;
        min-width: 0;
    }
}
