/* ─── INSTAGRAM ─── */
.instagram {
    background: #0a0a0a;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

/* Linhas decorativas canto direito */
.insta-deco {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: none;
    z-index: 0;
}

.insta-deco span {
    display: block;
    height: 2px;
    background: linear-gradient(to left, rgba(255,207,31,0.6), transparent);
    border-radius: 2px;
}

.insta-deco span:nth-child(1) { width: 180px; }
.insta-deco span:nth-child(2) { width: 240px; }
.insta-deco span:nth-child(3) { width: 180px; }

/* Losangos decorativos */
.insta-deco::before,
.insta-deco::after {
    content: '';
    position: absolute;
    right: 40px;
    border: 2px solid rgba(255,207,31,0.2);
    transform: rotate(45deg);
}

.insta-deco::before {
    width: 80px;
    height: 80px;
    top: -60px;
}

.insta-deco::after {
    width: 50px;
    height: 50px;
    bottom: -60px;
}

/* Inner */
.insta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Tag */
.insta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.insta-tag-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
}

/* Título */
.insta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.insta-title em {
    font-style: normal;
    color: var(--yellow);
}

/* Descrição */
.insta-desc {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 380px;
}

/* Botão */
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--yellow);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1.5px solid var(--yellow);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-instagram:hover {
    background: var(--yellow);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-insta-arrow {
    margin-left: auto;
    transition: transform 0.2s;
}

.btn-instagram:hover .btn-insta-arrow {
    transform: translateX(4px);
}

/* Celular */
.insta-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.insta-phone-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
    transition: transform 0.4s ease;
}

.insta-phone-img:hover {
    transform: translateY(-8px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .insta-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .insta-tag { justify-content: center; }
    .insta-desc { margin: 0 auto 2.5rem; }
    .btn-instagram { margin: 0 auto; }

    .insta-phone-img {
        max-width: 280px;
        margin: 0 auto;
    }

    .insta-deco { display: none; }
}