body {
    padding-top: 180px!important;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.6s var(--ease-elegant) forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1100px;
    width: 100%;
    align-items: center;
    margin: 0 auto;
}

.contact-info {
    padding: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1rem);
}

.company-logo {
    height: 50px;
    width: auto;
    margin-bottom: 2rem;
    display: block;
}

.company-name {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.company-cnpj {
    color: var(--muted-dark);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    font-family: monospace;
    letter-spacing: 0.05em;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

.contact-item a:hover { color: var(--gold); }

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 280px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    background: transparent;
    border: 2px solid;
}

.social-btn.whatsapp {
    border-color: var(--wa);
    color: var(--wa);
}

.social-btn.whatsapp i {
    color: var(--wa);
    font-size: 1.2rem;
}

.social-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
    transform: translateY(-2px);
}

.social-btn.instagram {
    border-color: #E1306C;
    color: #E1306C;
}

.social-btn.instagram i {
    background: var(--ig);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.social-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.08);
    transform: translateY(-2px);
}

.iphone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-frame {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #2a2a2a,
        0 0 0 4px #1a1a1a,
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(212, 175, 55, 0.1);
    position: relative;
    width: 100%;
    max-width: 420px;
}

.iphone-frame::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 120px;
    width: 2px;
    height: 60px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.6;
}

.iphone-frame::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 200px;
    width: 2px;
    height: 40px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.6;
}

.iphone-screen {
    background: var(--white);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #0a0a0a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.form-content {
    padding: clamp(3.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: var(--text-dark);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.form-subtitle {
    color: var(--muted-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-group { margin-bottom: 1.3rem; }

.form-label {
    display: block;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: #fafafa;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.iphone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: #000;
    border-radius: 3px;
    opacity: 0.2;
}

@media (min-width: 769px) and (max-width: 1024px) {
    
    body { padding-top: 90px!important; }

    .contact-container {
        grid-template-columns: 1fr;
        max-width: 700px;
        padding: 0 1.5rem;
    }

    .contact-info { text-align: center; }
    .company-logo { margin: 0 auto 2rem; }
    .contact-item { justify-content: center; }

    .social-buttons {
        margin: 2rem auto 0;
    }

    .iphone-wrapper {
        margin-top: 2rem;
    }

    .iphone-frame {
        max-width: 380px;
        border-radius: 42px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    body { padding-top: 90px!important; }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
        padding: 0;
        margin-top: 80px;
    }

    .contact-info {
        text-align: center;
        padding: 0 1.5rem;
    }

    .company-logo {
        height: 45px;
        margin: 0 auto 1.5rem;
    }

    .company-name { font-size: 1.5rem; }

    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }

    .social-buttons {
        margin: 2rem auto 0;
        max-width: 260px;
    }

    .social-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .iphone-wrapper {
        margin-top: 0;
        padding: 0 1rem;
    }

    .iphone-frame {
        border-radius: 38px;
        padding: 10px;
        max-width: 100%;
    }

    .iphone-screen { border-radius: 32px; }

    .form-content {
        padding: 3.5rem 1.5rem 2rem;
    }

    .form-title { font-size: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    body { padding-top: 90px!important; }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 75px;
    }

    .contact-info {
        padding: 0 1.2rem;
    }

    .company-logo {
        height: 40px;
        margin-bottom: 1.2rem;
    }

    .company-name { font-size: 1.3rem; }

    .company-cnpj { margin-bottom: 2rem; }

    .contact-item {
        justify-content: center;
        font-size: 0.85rem;
        gap: 0.7rem;
    }

    .contact-item i { font-size: 1rem; width: 16px; }

    .social-buttons {
        margin: 2rem auto 0;
        max-width: 100%;
    }

    .social-btn {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .iphone-wrapper {
        padding: 0 0.8rem;
    }

    .iphone-frame {
        border-radius: 32px;
        padding: 8px;
        box-shadow:
            0 0 0 1px #2a2a2a,
            0 0 0 3px #1a1a1a,
            0 15px 50px rgba(0, 0, 0, 0.4);
    }

    .iphone-frame::before { display: none; }
    .iphone-frame::after { display: none; }

    .iphone-screen { border-radius: 26px; }

    .iphone-notch {
        width: 120px;
        height: 25px;
    }

    .form-content {
        padding: 3rem 1.2rem 1.5rem;
    }

    .form-title { font-size: 1.4rem; }
    .form-subtitle { font-size: 0.85rem; }

    .form-label { font-size: 0.8rem; }

    .form-input,
    .form-textarea {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .iphone-home-bar {
        width: 110px;
        height: 4px;
    }
}