/* L3 Soluções - Stylesheet */
/* Design: Minimalismo Corporativo Sofisticado */

:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --secondary: #f5f5f5;
    --text-primary: #212121;
    --text-secondary: #666666;
    --border: #e0e0e0;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-900: #111827;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utilities */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.h-16 {
    height: 4rem;
}

.h-12 {
    height: 3rem;
}

.h-6 {
    height: 1.5rem;
}

.h-5 {
    height: 1.25rem;
}

.w-auto {
    width: auto;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-full {
    width: 100%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.mt-0-5 {
    margin-top: 0.125rem;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

.border-b {
    border-bottom: 1px solid var(--border);
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-2 {
    border: 2px solid;
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-red-600 {
    border-color: var(--primary);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-white {
    background-color: var(--white);
}

.bg-red-600 {
    background-color: var(--primary);
}

.bg-red-700 {
    background-color: var(--primary-dark);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.text-white {
    color: var(--white);
}

.text-red-600 {
    color: var(--primary);
}

.text-red-700 {
    color: var(--primary-dark);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-900 {
    color: var(--text-primary);
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.transition-all {
    transition: all 0.2s ease;
}

.transition-colors {
    transition: color 0.2s ease;
}

.transition-opacity {
    transition: opacity 0.2s ease;
}

.transition-shadow {
    transition: box-shadow 0.2s ease;
}

.duration-200 {
    transition-duration: 0.2s;
}

.hover\:bg-opacity-90:hover {
    background-color: rgba(233, 30, 99, 0.9);
}

.hover\:bg-red-700:hover {
    background-color: var(--primary-dark);
}

.hover\:bg-gray-100:hover {
    background-color: var(--gray-100);
}

.hover\:text-red-600:hover {
    color: var(--primary);
}

.hover\:text-red-700:hover {
    color: var(--primary-dark);
}

.hover\:text-white:hover {
    color: var(--white);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.opacity-90 {
    opacity: 0.9;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Header */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

header img {
    height: 3rem;
    width: auto;
}

header nav {
    display: flex;
    gap: 2rem;
}

header nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

header nav a:hover {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
}

footer h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

footer p {
    color: var(--gray-400);
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

footer ul li a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .text-4xl {
        font-size: 1.875rem;
    }

    .text-5xl {
        font-size: 2.25rem;
    }

    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .py-32 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .md\:py-32 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:grid {
        display: grid;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:inline {
        display: inline;
    }

    header nav {
        display: none;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:grid {
        display: grid;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .md\:inline {
        display: inline;
    }

    header nav {
        display: flex;
    }
}

/* Specific Styles */
.inline-block.px-4.py-2.bg-red-600 {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.inline-block.px-4.py-2.bg-red-600 span {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-0-5 {
    padding-top: 0.125rem;
}
