/* =================================
   LejoFit Consultoria - Premium Wellness Design
   ================================= */

:root {
    /* Colors - Specialized Wellness Palette */
    --primary: #1B434D;
    /* Deep Institutional Teal */
    --primary-light: #489A8B;
    /* Vitality Green */
    --accent: #D9E4DD;
    /* Soft Sage Foundation */
    --bg-light: #F9FBFA;
    /* Pure Natural White */
    --white: #FFFFFF;
    --text-main: #2C3E50;
    --text-soft: #5D6D7E;
    --success: #27AE60;
    --gold: #D4AF37;

    /* Spacing & Effects */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 10px 30px -10px rgba(27, 67, 77, 0.1);
    --shadow-lg: 0 20px 40px -15px rgba(27, 67, 77, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =================================
   Header & Nav
   ================================= */

.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

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

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

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

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(27, 67, 77, 0.2);
}

/* =================================
   Hero Section
   ================================= */

.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 90% 10%, #E9F2F0 0%, var(--bg-light) 50%);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-soft);
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(27, 67, 77, 0.25);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(27, 67, 77, 0.35);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* =================================
   Scarcity
   ================================= */

.scarcity-wrapper {
    margin-top: 3rem;
}

.scarcity-box {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
    border-left: 4px solid #EF4444;
}

.scarcity-number {
    font-weight: 800;
    color: #EF4444;
    font-size: 1.1rem;
}

/* =================================
   Trust Section (New)
   ================================= */

.trust-bar {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.trust-item h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =================================
   Benefits Grid (Persuasive Cards)
   ================================= */

.benefits {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-light);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.benefit-card p {
    color: var(--text-soft);
    font-size: 1rem;
}

/* =================================
   Credentials (Bio)
   ================================= */

.credentials {
    padding: 100px 0;
    background: var(--white);
}

.credentials-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    display: block;
    filter: saturate(1.1);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.credential-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.credential-icon {
    font-size: 1.8rem;
    color: var(--primary-light);
}

/* =================================
   Pricing Section (Premium)
   ================================= */

.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #E3EBE9 100%);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(27, 67, 77, 0.12);
    border: 1px solid rgba(27, 67, 77, 0.05);
    position: relative;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-card .subtitle {
    color: var(--text-soft);
    font-weight: 600;
    margin-bottom: 3rem;
    display: block;
}

.price-main {
    margin-bottom: 3rem;
}

.price-value {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-top: 15px;
    display: inline-block;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.pricing-features i {
    color: var(--success);
    font-size: 1.2rem;
}

/* =================================
   Chat Widget
   ================================= */

.chat-widget {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 1000;
}

.chat-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.message-avatar {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-toggle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(5deg);
}

.chat-window {
    position: absolute;
    bottom: 95px;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    scale: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window.active {
    scale: 1;
    opacity: 1;
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .credentials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
        height: 80vh;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero {
        padding-top: 80px;
    }
}