:root {
    --primary-dark-blue: #1D4273;
    --secondary-dark-blue: #163A59;
    --primary-blue: #2B96D9;
    --light-blue: #32A9D9;
    --light-gray: #F2F2F2;
    --white: #FFFFFF
}

body {
    font-family: 'Inter', sans-serif
}

.navbar {
    background: var(--white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 2px 10px rgba(29, 66, 115, .1)
}

.nav-link {
    color: var(--primary-dark-blue);
    font-weight: 500;
    padding: .5rem 1rem;
    border-radius: .5rem;
    transition: all .3s ease
}

.nav-link:hover {
    background-color: var(--light-gray);
    color: var(--light-blue)
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform .3s ease;
    background: var(--white);
    z-index: 1000
}

.mobile-menu.active {
    transform: translateX(0)
}

.mobile-menu .nav-link {
    background: var(--white);
    color: var(--primary-dark-blue);
    margin-bottom: .25rem;
    border-radius: .5rem
}

.mobile-menu .nav-link:hover {
    background-color: var(--light-gray);
    color: var(--light-blue)
}

.hero-gradient {
    background: linear-gradient(to bottom, transparent 0%, transparent 80%, rgba(0, 0, 0, .3) 90%, rgba(0, 0, 0, .7) 100%), linear-gradient(to right, transparent 0%, transparent 40%, rgba(0, 0, 0, .2) 60%, rgba(0, 0, 0, .6) 100%), url('/img/family3.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

@media (max-width:768px) {
    .hero-gradient {
        background: 
        linear-gradient(to bottom, transparent 0%, transparent 20%, rgba(0,0,0,0.3) 90%, rgba(0,0,0,0.7) 100%),
        linear-gradient(to right, transparent 0%, transparent 20%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.6) 100%),
        url('/img/family5.webp');
        background-position: left center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.floating-card {
    animation: float 3s ease-in-out infinite
}

.floating-card:nth-child(2) {
    animation-delay: -1s
}

.floating-card:nth-child(3) {
    animation-delay: -2s
}

@supports (-webkit-backdrop-filter:blur(10px)) {
    .floating-card {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, .25) !important
    }
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark-blue);
    font-weight: 600;
    padding: .875rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(29, 66, 115, .1);
    transition: all .3s ease;
    border: none
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(29, 66, 115, .15);
    background: var(--light-blue);
    color: var(--white)
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    border: 1px solid #f1f5f9
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12)
}

.typing-container {
    min-height: 4rem;
    display: flex;
    align-items: center
}

.feature-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .3s ease
}

.feature-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px)
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.stat-item {
    animation: countUp .6s ease-out forwards
}

@media (max-width:768px) {
    .floating-card {
        animation: none;
        margin: .5rem 0;
        transform: none
    }

    .feature-card {
        padding: 1rem;
        margin: .5rem 0
    }

    .hero-section {
        min-height: auto;
        padding: 0rem 0;
    }
}

@media (min-width:1024px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
}

.bg-custom-light {
    background-color: var(--light-gray) !important
}

.bg-custom-primary {
    background-color: var(--primary-dark-blue) !important
}

.bg-custom-secondary {
    background-color: var(--secondary-dark-blue) !important
}

.bg-custom-blue {
    background-color: var(--primary-blue) !important
}

.bg-custom-light-blue {
    background-color: var(--light-blue) !important
}

.bg-custom-white {
    background-color: var(--white) !important
}

.text-custom-primary {
    color: var(--primary-dark-blue) !important
}

.text-custom-secondary {
    color: var(--secondary-dark-blue) !important
}

.text-custom-blue {
    color: var(--primary-blue) !important
}

.text-custom-light-blue {
    color: var(--light-blue) !important
}

.text-custom-white {
    color: var(--white) !important
}

.border-custom-light {
    border-color: var(--light-gray) !important
}

.border-custom-primary {
    border-color: var(--primary-dark-blue) !important
}

.container-safe {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem
}

@media (min-width:640px) {
    .container-safe {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width:1024px) {
    .container-safe {
        padding-left: 3rem;
        padding-right: 3rem
    }
}

@media (min-width:1280px) {
    .container-safe {
        padding-left: 4rem;
        padding-right: 4rem
    }
}

@media (min-width:1536px) {
    .container-safe {
        padding-left: 6rem;
        padding-right: 6rem
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #fff;
    color: #25d366;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    z-index: 1000;
    transition: all .3s ease;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #f0f0f0
}

.whatsapp-float:hover {
    background: #25d366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3)
}

.whatsapp-float i {
    font-size: 20px;
    margin: 0
}

.whatsapp-float span {
    white-space: nowrap
}

@media (max-width:768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 14px;
        font-size: 13px
    }

    .whatsapp-float i {
        font-size: 18px
    }
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}