/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(150, 30%, 98%);
    --foreground: hsl(150, 25%, 15%);
    --card: hsl(0, 0%, 100%);
    --primary: hsl(145, 55%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(145, 35%, 95%);
    --muted-foreground: hsl(150, 10%, 45%);
    --accent: hsl(38, 85%, 55%);
    --info: hsl(200, 75%, 50%);
    --border: hsl(150, 20%, 90%);
    --whatsapp: hsl(142, 70%, 45%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Header */
.hero-header {
    background: linear-gradient(135deg, hsl(145, 55%, 35%) 0%, hsl(145, 65%, 45%) 50%, hsl(160, 50%, 40%) 100%);
    color: white;
    padding: 2rem 1.5rem 3.5rem;
    border-radius: 0 0 2.5rem 2.5rem;
}

.hero-content {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.logo {
    height: 6rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0 1rem 1.5rem;
    margin-top: -1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Service Cards */
.service-card {
    display: block;
    background: var(--card);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12), 0 4px 12px -4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.15), 0 6px 16px -4px rgba(0, 0, 0, 0.08);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-container {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-container {
    transform: scale(1.05);
}

.gradient-whatsapp {
    background: linear-gradient(135deg, hsl(142, 70%, 42%) 0%, hsl(142, 65%, 50%) 100%);
}

.gradient-pix {
    background: linear-gradient(135deg, hsl(38, 85%, 50%) 0%, hsl(38, 90%, 60%) 100%);
}

.gradient-info {
    background: linear-gradient(135deg, hsl(200, 75%, 45%) 0%, hsl(200, 80%, 55%) 100%);
}

.card-text {
    flex: 1;
}

.card-text h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.service-card:hover .card-text h2 {
    color: var(--primary);
}

.card-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.arrow-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .arrow-container {
    background: var(--primary);
    color: white;
}

.service-card:hover .arrow-pix {
    background: var(--accent);
}

.service-card:hover .arrow-info {
    background: var(--info);
}

/* Info Section */
.info-section {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem 1rem;
    background: hsla(145, 35%, 95%, 0.5);
    border-radius: 1rem;
}

.info-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-primary {
    background: hsla(145, 55%, 35%, 0.1);
    color: var(--primary);
}

.info-icon-accent {
    background: hsla(38, 85%, 55%, 0.1);
    color: var(--accent);
}

.info-icon-info {
    background: hsla(200, 75%, 50%, 0.1);
    color: var(--info);
}

.info-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-section p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.privacy-link {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.privacy-link:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Animations */
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slide-up 0.5s ease-out forwards;
    opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 480px) {
    .hero-header {
        padding: 1.5rem 1rem 3rem;
    }
    
    .hero-content h1 {
        font-size: 1.25rem;
    }
    
    .logo {
        height: 5rem;
    }
}
