:root {
    --ink: #1f1f1f;
    --muted: #5f5f5f;
    --accent: #8C04A4;
    --accent-2: #C066E8;
    --cream: #f7f1ea;
    --sand: #efe3d9;
    --card: #ffffff;
    --whatsapp: #25D366;
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Pagina de Contato */
.contact-page {
    padding: 80px 0 90px;
    background: #ffffff;
    min-height: calc(100vh - 300px);
    position: relative;
    overflow: hidden;
    color: var(--ink);
}

.contact-page::before,
.contact-page::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    opacity: 0.45;
    z-index: 0;
}

.contact-page::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(192, 102, 232, 0.35) 0%, rgba(192, 102, 232, 0) 70%);
    top: -120px;
    right: -140px;
}

.contact-page::after {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(140, 4, 164, 0.2) 0%, rgba(140, 4, 164, 0) 70%);
    bottom: -140px;
    left: -100px;
}

.contact-page .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    max-width: 620px;
    margin-bottom: 50px;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.contact-header h1 {
    font-size: 46px;
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.15;
}

.contact-header p {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    background: var(--card);
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-method::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 18px;
    pointer-events: none;
}

.contact-method:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.method-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.method-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-method h3 {
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-method > p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 15px;
}

/* WhatsApp Card */
.whatsapp-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-left: 6px solid var(--whatsapp);
}

.whatsapp-card .method-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-text {
    flex: 1;
    min-width: 0;
}

.whatsapp-text h3 {
    margin-bottom: 6px;
}

.whatsapp-text p {
    margin-bottom: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f8f6b;
    color: #fff;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
    white-space: nowrap;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #25D366;
    box-shadow: 0 14px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Form Card */
.form-card {
    border-left: 6px solid var(--accent);
}

.contact-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #e2e2e2;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.25s ease;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(140, 4, 164, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
}

.form-alert.success {
    background: #e6f6ec;
    color: #1e6a3a;
    border: 1px solid #c7ebd6;
}

.form-alert.error {
    background: #fdeaea;
    color: #8b2b2b;
    border: 1px solid #f7caca;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(140, 4, 164, 0.25);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(140, 4, 164, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Informacoes Adicionais */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.info-item {
    text-align: left;
    padding: 24px;
    background: var(--card);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-item i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 12px;
}

.info-item h4 {
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 6px;
}

.info-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 1000px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-header {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 70px 0 80px;
    }

    .contact-header h1 {
        font-size: 38px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-whatsapp {
        align-self: flex-start;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-header h1 {
        font-size: 32px;
    }

    .contact-method {
        padding: 28px 22px;
    }

    .method-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .method-icon i {
        font-size: 24px;
    }
}
