:root {
    --color-aqua: #0cc0df;
    --color-green: #7ed957;
    --color-dark: #1e293b;
    --color-light: #ffffff;
    --color-gray: #475569;
    --color-light-gray: #f8fafc;
    --color-border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
    background-color: var(--color-light-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.logo-text {
    font-family: 'MuseoModerno', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 2.25rem;
    color: var(--color-aqua);
    display: flex;
    align-items: center;
}

.logo-text span {
    color: var(--color-green);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px; /* Sober, not full pill */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--color-aqua);
    color: white;
    box-shadow: 0 4px 6px rgba(12, 192, 223, 0.2);
}

.btn-primary:hover {
    background-color: #0ab0cc;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(12, 192, 223, 0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-dark);
    background-color: white;
}

.btn-outline:hover {
    border-color: var(--color-aqua);
    color: var(--color-aqua);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-aqua);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: var(--color-light);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background-color: var(--color-light-gray);
    color: var(--color-gray);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border);
}

.badge i {
    color: var(--color-aqua);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-container {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Services */
.services {
    padding: 6rem 0;
    background-color: var(--color-light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.icon-blue {
    background-color: rgba(12, 192, 223, 0.1);
    color: var(--color-aqua);
}

.icon-green {
    background-color: rgba(126, 217, 87, 0.1);
    color: var(--color-green);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    flex: 1;
    font-size: 1rem;
}

.card-link {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.link-blue { color: var(--color-aqua); }
.link-green { color: var(--color-green); }

/* Footer */
footer {
    background-color: var(--color-dark);
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'MuseoModerno', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-aqua);
}

.footer-logo span {
    color: var(--color-green);
}

.footer-text {
    color: #94a3b8;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.btn) {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
}
