body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
    color: #1d1d1f;
    min-height: 100vh;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* GLOBAL */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

h1, h2 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

p {
    color: #6e6e73;
}

/* HEADER */
header {
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(10px);
    margin: 20px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

header img {
    width: 15%;
    height: 15%;
    min-width: 100px;
    min-height: 100px;
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

/* Mobile responsive logo */
@media (max-width: 768px) {
    header img {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
    }
}

.card p:first-of-type {
    font-size: 17px;
    color: #1d1d1f;
}

header h1 {
    font-size: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    color: #4a5568;
    margin: 5px 0;
}

/* TRUST INDICATORS */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    padding: 15px;
}

.trust-number {
    font-size: 28px;
    font-weight: 600;
    color: #667eea;
    display: block;
    animation: countUp 1s ease-out 0.5s both;
}

.trust-label {
    font-size: 14px;
    color: #6e6e73;
    margin-top: 5px;
}

/* CARD */
.card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* GRID */
.grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* SERVICE ITEM */
.service {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-radius: 18px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.service:hover::before {
    left: 100%;
}

.service:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

/* SERVICE BADGES */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.processing-time {
    font-size: 12px;
    color: #10b981;
    margin-top: 8px;
    font-weight: 500;
}

.success-rate {
    font-size: 12px;
    color: #f59e0b;
    margin-top: 4px;
    font-weight: 500;
}

/* FLAG */
.flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* TITLE */
.service h3 {
    margin: 5px 0;
    font-size: 18px;
}

/* PRICE */
.price {
    font-weight: 600;
    margin-top: 15px;
    font-size: 18px;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BADGE */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* TESTIMONIALS */
.testimonials {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 40px 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255,255,255,0.7);
    border-radius: 18px;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
    font-size: 14px;
}

.testimonial-service {
    font-size: 12px;
    color: #6e6e73;
    margin-top: 5px;
}

.stars {
    color: #fbbf24;
    margin-bottom: 10px;
    font-size: 18px;
}

/* REQUIREMENTS */
ul {
    padding-left: 18px;
}

/* CONTACT */
.contact {
    text-align: center;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* BUTTON */
.cta {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f2f2;
    transition: 0.2s;
}

.socials a:hover {
    background: #e0e0e0;
}

.socials svg {
    width: 22px;
    height: 22px;
    fill: #1d1d1f;
}
