/* ========================================
   CONTATO - PÁGINA 5
   Bemfica Machado | Stone Excellence
   ======================================== */

/* ========================================
   BASE STYLES & PAGE CONTAINER
   ======================================== */

#contato {
    /* Layout properties - IGUAL Nossas Minas e Nossa Essência */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 400;
    background: var(--dark);
    padding: 0;
    overflow-y: auto;

    /* Interaction properties */
    user-select: text;
    pointer-events: auto;
}

/* Header com background em Contato para evitar sobreposição de conteúdo */
body.page-contato header {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.98) 70%,
        rgba(0, 0, 0, 0.95) 85%,
        rgba(0, 0, 0, 0.7) 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Overlay adicional abaixo da header em Contato para fade effect */
body.page-contato header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   HERO HEADER SECTION
   Sophisticated welcome area
   ======================================== */

.contato-hero-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    text-align: center;
    padding: 2rem;
}

.contato-header-content {
    max-width: 900px;
    width: 100%;
}

/* Título com gradient sofisticado */
.contato-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg,
        #E4C57A 0%,
        #C9A961 25%,
        #F5E6A3 50%,
        #B8952F 75%,
        #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.contato-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.6;
}

/* Subtítulo elegante */
.contato-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Scroll Indicator */
.contato-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: floatUpDown 3s ease-in-out infinite;
    cursor: pointer;
}

.contato-scroll-indicator .scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-weight: 300;
}

.contato-scroll-indicator .scroll-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
}

.contato-scroll-indicator .scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollDotMove 2s ease-in-out infinite;
}

/* Responsive Hero - iPhone 15/16/17 Pro Max optimized */
@media (max-width: 768px) {
    /* FIX: Position fixed causa problemas em iPhone Safari com 100vh */
    #contato {
        position: relative !important;
        height: auto !important;
        min-height: 100vh !important;
    }

    .contato-title {
        font-size: 3.5rem;
    }

    .contato-subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.1rem;
    }
}

@media (max-width: 480px) {
    .contato-title {
        font-size: 3rem;
    }

    .contato-subtitle {
        font-size: 0.9rem;
    }
}

/* ========================================
   VIP ACCESS SECTION
   Exclusive qualification section
   ======================================== */

.vip-access-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-container {
    max-width: 900px;
    margin: 0 auto;
}

.vip-content {
    text-align: center;
}

/* VIP Badge */
.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--gold);
    font-size: 1rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.badge-text {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

/* VIP Title */
.vip-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg,
        #E4C57A 0%,
        #C9A961 25%,
        #F5E6A3 50%,
        #B8952F 75%,
        #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

/* VIP Message */
.vip-message {
    margin-bottom: 3rem;
}

.vip-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vip-intro strong {
    color: var(--gold);
    font-weight: 500;
}

.vip-intro em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* VIP Guarantee */
.vip-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(201, 169, 97, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(201, 169, 97, 0.4));
}

.guarantee-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.guarantee-text strong {
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

/* VIP Form Button */
.vip-form-button {
    margin-top: 3.5rem;
}

.btn-vip-access {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #C9A961 0%, #B8952F 50%, #D4AF37 100%);
    color: #000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.15rem;
    text-transform: lowercase;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(201, 169, 97, 0.3);
}

.btn-vip-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-vip-access:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, #E4C57A 0%, #C9A961 50%, #F5E6A3 100%);
}

.btn-vip-access:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-vip-access:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive VIP Section */
@media (max-width: 768px) {
    .vip-access-section {
        padding: 6rem 1.5rem;
    }

    .vip-title {
        font-size: 2.8rem;
    }

    .vip-intro {
        font-size: 1rem;
    }

    .vip-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .guarantee-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .vip-access-section {
        padding: 5rem 1rem;
    }

    .vip-title {
        font-size: 2.5rem;
    }

    .vip-intro {
        font-size: 0.95rem;
    }

    .btn-vip-access {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .vip-badge {
        padding: 0.5rem 1.2rem;
    }

    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 0.15rem;
    }
}
