@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #059669;
    --primary-dark: #047857;
    --secondary: #0f172a;
    --muted: #6b7280;
    --muted-light: #94a3b8;
    --soft: #f8fafc;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--secondary);
    background-color: #fff;
    line-height: 1.6;
    padding-top: 88px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 700;
}

p {
    color: var(--muted);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}

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

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--primary);
    background-color: #fff;
}

.site-header .navbar {
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0.65rem 0;
}

.site-header .navbar-brand span {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.site-header .navbar-brand img {
    height: 42px;
    width: auto;
    max-width: 170px;
}

.site-header .nav-link {
    font-weight: 500;
    color: var(--muted);
    padding: 0.5rem 1rem;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: var(--secondary);
}

.site-header .dropdown-menu {
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.hero-modern {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top right, rgba(5, 150, 105, 0.4), rgba(5, 150, 105, 0)) var(--secondary);
    color: #fff;
}

.hero-modern h1 {
    line-height: 1.2;
}

.hero-visual {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.hero-visual img {
    border-radius: 32px;
    width: 100%;
}

.hero-visual .floating-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
    max-width: calc(100% - 48px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.stat-pill {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 12px 24px;
    text-align: center;
}

.stat-pill strong {
    display: block;
    font-size: 1.35rem;
    color: #fff;
}

.section-spacing {
    padding: 90px 0;
}

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

.glow-card {
    padding: 32px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #eef2ff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.glow-card h3 {
    font-size: 1.2rem;
}

.glow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.benefit-item {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: var(--primary);
}

.segment-card {
    display: block;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    color: inherit;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.segment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.segment-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.segment-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    margin-top: 18px;
    gap: 6px;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
    height: 100%;
}

.cta-section {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    padding: 110px 0;
}

.cta-section h2,
.cta-section p {
    color: #fff;
}

.page-header {
    background-color: var(--soft);
    padding-top: 160px !important;
    padding-bottom: 80px !important;
}

.page-header h1 {
    color: var(--secondary);
}

.segment-hero {
    background: var(--soft);
}

.list-group-item {
    border-color: var(--border);
    color: var(--muted);
}

.list-group-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 32px;
    right: 32px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: transform 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

.sticky-top {
    z-index: 1010;
}