:root {
    --primary: #9b258d;
    --secondary: #f5b700;
    --background: #fff;
    --background-accent: #f6f6f6;
    --text-light: #fff;
    --text-dark: #000;
    --color-black: #050505;
    --dark-grey: #818181;
    --light-grey: #D3D3D3;
    --color-border: #e5e7eb;
}

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

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    background: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

h1 { font-size: 3.3rem; font-weight: bold; }
h2 { font-size: 3rem; color: var(--color-black); font-weight: bold; }
h2 span { color: var(--primary); font-weight: bold; }
h3 { font-size: 2.3rem; font-weight: bold; }
h4 { font-size: 1.8rem; font-weight: bold; }
h5 { font-size: 1.3rem; font-weight: 600; }

.primary { color: var(--primary); }
.secondary { color: var(--secondary); }
.white { color: whitesmoke; }

.dark-grey-bg { background: var(--dark-grey); }
.light-grey-bg { background: var(--light-grey); }

/* --- FLOATING CONTACT --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatIn 0.6s ease-out;
}

.floating-contact .hand-icon {
    font-size: 2.5rem;
    color: var(--primary);
    animation: handBounce 1.5s infinite;
    margin-bottom: -10px;
}

.floating-contact .contact-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-contact .contact-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

@keyframes handBounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(-10deg); }
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- NAVBAR --- */
.navbar-transition {
    padding: 30px 200px !important;
    transition: all 0.3s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}

.navbar-transition.shrink {
    padding: 10px 200px !important;
    background-color: rgba(255, 255, 255, 0.67) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    transition: font-size 0.3s ease-in-out;
}

.navbar-transition.shrink .navbar-brand {
    font-size: 1.25rem;
}

.logo {
    transition: all 0.3s ease-in-out;
    display: block;
}

.logo-large {
    height: 60px;
    opacity: 1;
    position: static;
}

.logo-small {
    height: 40px;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.navbar-transition.shrink .logo-large {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.navbar-transition.shrink .logo-small {
    opacity: 1;
    position: static;
    pointer-events: auto;
}

.navbar-transition.shrink .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* --- MOBILE NAVBAR --- */
@media (max-width: 991.98px) {
    .navbar-transition {
        padding: 10px 20px !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar-transition .navbar-brand {
        font-size: 1rem !important;
    }

    .logo-large {
        display: none !important;
    }

    .logo-small {
        display: block !important;
        opacity: 1 !important;
        height: 33px !important;
        position: static !important;
        pointer-events: auto !important;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

/* --- ACTIVE NAV LINK --- */
.nav-link.active {
    color: var(--primary) !important;
    font-weight: bold;
}

/* --- HERO SECTION --- */
.hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-left: 200px;
}

.hero h1 {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: #333;
}

.btn-purple {
    background-color: var(--primary);
    color: #fff;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
}

.btn-purple:hover {
    background-color: var(--secondary);
    color: #fff;
}

.circle-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130vh;
    height: 150vh;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 0;
}



/* -------- HERO -------- */

.hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 1;
    position: relative;
    padding-left: 200px;
}

.hero h1 {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: #333;
}

.btn-purple {
    background-color: var(--primary);
    color: #fff;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
}

.btn-purple:hover {
    background-color: var(--secondary);
    color: #fff;
}

.circle-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130vh;
    height: 150vh;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 0;
}

/* -------- SERVICES -------- */

.infographic-chart {
    background: var(--background-accent);
    padding: 100px 20px;
    position: relative;
}

.infographic-chart::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 6px;
    background: #d1dbe3;
    z-index: 0;
    border-radius: 3px;
}

.infographic-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 80px;
}

.info-card {
    background: var(--background);
    border-radius: 16px;
    padding: 30px;
    width: 400px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card .icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
}

.info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    position: relative;
}

.info-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.info-block:nth-child(odd) .info-card {
    margin-left: auto;
}

.info-block:nth-child(even) .info-card {
    margin-right: auto;
}

.circle-connector {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--background);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 768px) {
    .infographic-chart {
        padding: 60px 20px;
    }

    .infographic-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .info-wrapper {
        gap: 40px;
    }

    .info-block {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .info-card {
        width: 100%;
        max-width: 90%;
        text-align: center;
        padding: 25px 20px;
    }

    .info-block:nth-child(even) .info-card,
    .info-block:nth-child(odd) .info-card {
        margin: 0 auto;
    }

    .circle-connector {
        position: relative;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .infographic-chart::before {
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
    }

    .icon {
        font-size: 2rem !important;
    }

    .info-card h4 {
        font-size: 1.25rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }
}


/*//Section 3//*/

#section-3 .title-wrapper {
    background: var(--dark-grey);
    padding-left: 110px;
}

#section-3 p {
    font-weight: bold;
    font-size: 1.1rem;
}

#section-3 p span {
    color: var(--primary);
}

#section-4 .wrapper {
    background: var(--dark-grey);
    padding: 50px
}

#section-4 h4 {
    color: var(--primary);
}

#section-4 p {
    color: var(--text-light);
}

#section-5.wrapper {
    background-color: var(--dark-grey);
    color: var(--text-light);
    padding: 50px 0;
}

#section-5 .number {
    color: var(--light-grey);
    font-size: 300px;
    font-weight: 1000;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

#section-5 h5 {
    color: var(--primary);
}



#section-5 p {
    color: var(--text-dark);
}
