/* Contact Page - Space Theme */

.contact-page {
    background: #000000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Space Canvas Background */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Stars Layers */
.stars-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 33% 60%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 55% 80%, rgba(102, 126, 234, 0.6), transparent),
        radial-gradient(1px 1px at 15% 90%, rgba(102, 126, 234, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
}

.stars-layer-2 {
    z-index: 2;
    background-size: 150% 150%;
    animation: twinkle 12s ease-in-out infinite reverse;
    opacity: 0.7;
}

.stars-layer-3 {
    z-index: 3;
    background-size: 100% 100%;
    animation: twinkle 15s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    z-index: 10;
}

.hero-content-space {
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.space-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.space-title .title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.space-title .title-line:nth-child(1) { animation-delay: 0.2s; }

.space-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    padding: 2rem 0 8rem;
    z-index: 10;
}

.form-container-space {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    position: relative;
}

/* Floating Asteroids */
.floating-asteroid {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.asteroid-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation: floatAsteroid 20s ease-in-out infinite;
}

.asteroid-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 10%;
    animation: floatAsteroid 25s ease-in-out infinite reverse;
}

.asteroid-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -50px;
    animation: floatAsteroid 30s ease-in-out infinite;
}

@keyframes floatAsteroid {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Form Card */
.form-card-space {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderFlow 3s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(102, 126, 234, 0.6); }
}

.form-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Form Styles */
.space-contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-space {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group-space label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group-space label svg {
    width: 18px;
    height: 18px;
    color: #667eea;
}

.form-group-space input,
.form-group-space select,
.form-group-space textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(5, 5, 8, 0.6);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group-space input:focus,
.form-group-space select:focus,
.form-group-space textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 0 20px rgba(102, 126, 234, 0.3);
    background: rgba(5, 5, 8, 0.8);
}

.form-group-space input::placeholder,
.form-group-space textarea::placeholder {
    color: var(--text-muted);
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    z-index: 2;
}

.form-group-space input:focus ~ .input-glow,
.form-group-space select:focus ~ .input-glow,
.form-group-space textarea:focus ~ .input-glow {
    width: 100%;
}

.form-group-space textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-group-space select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Submit Button */
.btn-space-launch {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 1;
}

.btn-space-launch:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-space-launch:active {
    transform: translateY(-1px);
}

.btn-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.btn-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particleLaunch 2s ease-in-out infinite;
}

.btn-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles span:nth-child(2) {
    top: 50%;
    left: 50%;
    animation-delay: 0.3s;
}

.btn-particles span:nth-child(3) {
    top: 80%;
    left: 80%;
    animation-delay: 0.6s;
}

@keyframes particleLaunch {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translate(var(--tx, 20px), var(--ty, -20px)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx, 40px), var(--ty, -40px)) scale(0);
    }
}

/* Contact Info Sidebar */
.contact-info-space {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.info-card {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.1);
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-icon.whatsapp {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

/* WhatsApp Card - Destaque especial e totalmente funcional */
.whatsapp-card {
    cursor: pointer !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    filter: none !important;
    background: rgba(10, 10, 15, 0.6) !important;
    text-decoration: none !important;
    display: block !important;
}

.whatsapp-card::before {
    display: none !important;
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.8) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3) !important;
    transform: translateY(-5px) !important;
    background: rgba(10, 10, 15, 0.8) !important;
}

.whatsapp-card:hover .info-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
    transform: scale(1.1);
}

.contact-action {
    font-size: 0.875rem;
    color: #25D366;
    margin-top: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.whatsapp-card:hover .contact-action {
    opacity: 1;
    color: #20BA5A;
    font-weight: 600;
}

/* Card em desenvolvimento */
.info-card.in-development {
    position: relative;
    filter: blur(1px);
    background: rgba(10, 10, 15, 0.4);
}

.info-card.in-development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.info-card.in-development > * {
    position: relative;
    z-index: 2;
}

.info-icon.instagram {
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.3);
}

.info-icon.gmail {
    color: #EA4335;
    border-color: rgba(234, 67, 53, 0.3);
}

.info-icon.linkedin {
    color: #0077B5;
    border-color: rgba(0, 119, 181, 0.3);
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contact-subtext {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.info-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #667eea;
}

/* Quando o info-card é um link */
a.info-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.info-card h3,
a.info-card p {
    color: var(--text-secondary);
}

a.info-card:hover h3,
a.info-card:hover p {
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .form-container-space {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-space {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-card {
        flex: 1;
        min-width: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 1.5rem 2rem;
        min-height: 30vh;
    }
    
    .form-card-space {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-space {
        flex-direction: column;
    }
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
    overflow: hidden;
    /* Previne scroll no body quando modal está aberto */
    touch-action: none;
}

.success-modal-content {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    animation: slideUp 0.4s ease-out;
    margin: auto;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(102, 126, 234, 0.5) transparent;
    /* Garantir que o scroll funcione */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.success-modal-content::-webkit-scrollbar {
    width: 8px;
}

.success-modal-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.success-modal-content::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 10px;
}

.success-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    flex-shrink: 0;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-modal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.success-message-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Greeting - Primeira mensagem */
.success-message-text.success-greeting {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: center;
}

/* Initiative Box - Destaque especial */
.success-initiative-box {
    margin: 1.25rem 0;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 16px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.1);
}

.success-initiative-box::before {
    content: '✨';
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    padding: 0 8px;
}

.success-message-text.success-initiative {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* Timeline - Informação sobre 24h */
.success-message-text.success-timeline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 0.875rem 1rem;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 12px;
    border-left: 3px solid rgba(102, 126, 234, 0.5);
    text-align: left;
}

/* Closing - Mensagem final */
.success-message-text.success-closing {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.5rem;
}

.success-modal-close {
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.success-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.success-modal-close:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .success-modal {
        padding: 0.75rem;
    }
    
    .success-modal-content {
        padding: 1.75rem 1.25rem;
        max-width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .success-modal-content h2 {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }
    
    .success-message-text {
        font-size: 0.9rem;
    }
    
    .success-message-text.success-greeting {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .success-initiative-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .success-message-text.success-initiative {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .success-message-text.success-timeline {
        font-size: 0.85rem;
        padding: 0.75rem 0.875rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .success-message-text.success-closing {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .success-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .success-modal-close {
        margin-top: 1.25rem;
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    z-index: 9998 !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    animation: pulse-whatsapp 2s infinite;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;
    fill: #ffffff !important;
    color: #ffffff !important;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

