/********** Normalize ***********/
@import url('https://necolas.github.io/normalize.css/8.0.1/normalize.css');

/********** Font Style ***********/
@import "var/font/fontStyle.css";

/********** Colors ***********/
@import "var/colors/colors.css";

/*********  Body Style **********/
@import "var/body.css";

/********** Navbar ***********/
@import "inyect/navbar.css";

:root {
    --gradient-primario: linear-gradient(135deg, var(--primario) 0%, var(--sexto) 100%);
    --gradient-secundario: linear-gradient(135deg, var(--cuarto) 0%, var(--quinto) 100%);
    --gradient-sales: linear-gradient(135deg, var(--sales) 0%, #f3de8a 100%);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-card-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
}

body {
    font-family: var(--fontFamilyBody);
    color: var(--colorBody);
    background-color: var(--bgColorBody);
    overflow-x: hidden;
}

section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.section-title h2 span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.section-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-card);
}

/* Buttons */
.btn-primario {
    background: var(--primario);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.1s ease;
    box-shadow: 0 4px 14px 0 rgba(0, 68, 204, 0.39);
}

.btn-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 68, 204, 0.23);
    background: var(--primario);
    color: white;
}

.btn-secundario {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    border: 1px solid var(--primario);
    border-radius: 50px;
    transition: all 0.1s ease;
}

.btn-secundario:hover {
    background: var(--primario);
    color: white;
}

.btn-outline-tech {
    background: transparent;
    color: var(--cuarto);
    border: 2px solid var(--cuarto);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.1s ease;
}

.btn-outline-tech:hover {
    background: var(--cuarto);
    color: white;
    transform: translateY(-2px);
}


/* Generalized Lava Lamp Animation */
.blob-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blob-bg {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 2;
    background: var(--white);
    border-radius: calc(var(--border-radius-lg) - 2px);
}

.blob-blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background-color: var(--primario);
    opacity: 0;
    filter: blur(20px);
    animation: blob-bounce 3s infinite ease;
    transition: opacity 0.3s ease;
}

.blob-content {
    position: relative;
    z-index: 3;
    height: 100%;
}

.blob-card:hover .blob-blob {
    opacity: 1;
}

@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

/* Utilities for Decorative Elements */
.blur-3xl {
    filter: blur(64px);
}

.opacity-10 {
    opacity: 0.1 !important;
}

.bg-gradient-primary {
    background: radial-gradient(circle, var(--primario) 0%, rgba(255, 255, 255, 0) 70%);
}

.text-gradient {
    background: var(--gradient-primario);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-sales {
    background: var(--gradient-sales);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-dark {
    background: var(--gradient-secundario);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-effect-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}