        .contact-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            height: 100%;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
            border-color: #facc15;
        }
        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .contact-icon i {
            font-size: 2rem;
            color: #facc15;
        }
        .btn-contact {
            background: transparent;
            border: 2px solid #0f172a;
            border-radius: 60px;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
            display: inline-block;
        }
        .btn-contact:hover {
            background: #0f172a;
            color: white;
            transform: translateY(-2px);
        }
        .form-contato {
            background: white;
            border-radius: 2rem;
            padding: 2rem;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
        }
        .form-contato input, .form-contato textarea {
            border-radius: 1rem;
            border: 1px solid #e2e8f0;
            padding: 0.75rem 1rem;
            transition: all 0.3s;
        }
        .form-contato input:focus, .form-contato textarea:focus {
            border-color: #facc15;
            box-shadow: 0 0 0 3px rgba(250,204,21,0.2);
            outline: none;
        }
        .testimonial-card {
            background: #0f172a;
            border-radius: 1.5rem;
            padding: 2rem;
            color: white;
            position: relative;
            margin-bottom: 1.5rem;
        }
        .testimonial-card i.quote-icon {
            font-size: 3rem;
            color: #facc15;
            opacity: 0.3;
            position: absolute;
            bottom: 1rem;
            right: 1.5rem;
        }
        .social-box {
            background: #f8fafc;
            border-radius: 1.5rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        .social-box:hover {
            background: #0f172a;
            color: white;
            transform: translateY(-5px);
        }
        .social-box:hover a {
            color: #facc15 !important;
        }
        @media (max-width: 768px) {
            .form-contato {
                padding: 1.5rem;
            }
        }