/* ============================================
   PUBLITICA - Modern Light Premium Design
   Costa Rica Colors: Blue #002B5C | Red #CE1126 | White
   Typography: Poppins + DM Sans
   ============================================ */

:root {
    --blue-dark: #002B5C;
    --blue-medium: #003D7A;
    --blue-light: #0062CC;
    --blue-accent: #2B7DE9;
    --red-primary: #CE1126;
    --red-light: #E8283E;
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --blue-tint: #EDF2F8;
    --red-tint: #FDF0F2;
    --gray-50: #F4F6F8;
    --gray-100: #EDF0F3;
    --gray-200: #D8DDE3;
    --gray-300: #B0B9C4;
    --gray-400: #8492A3;
    --gray-500: #5F6D7E;
    --gray-700: #2E3A48;
    --gray-800: #1C2633;
    --gray-900: #111B27;
    --gradient-primary: linear-gradient(135deg, var(--blue-dark), var(--red-primary));
    --gradient-soft: linear-gradient(135deg, var(--blue-accent), var(--red-light));
    --gradient-bg: linear-gradient(180deg, var(--blue-tint) 0%, var(--white) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button, input, textarea, select {
    font-family: inherit;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Decorative shapes */
.shape-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-circle.blue {
    background: rgba(0, 43, 92, 0.03);
}

.shape-circle.red {
    background: rgba(206, 17, 38, 0.03);
}

/* ============ CUSTOM CURSOR (Desktop Only) ============ */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--red-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 43, 92, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease-out;
}

.cursor-outline.hover {
    width: 50px;
    height: 50px;
    border-color: var(--blue-accent);
    background: rgba(43, 125, 233, 0.04);
}

/* ============ LOADER ============ */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    animation: loaderPulse 1.5s infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: var(--gray-100);
    margin: 0 auto 1rem;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loaderFill 2s forwards;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gray-400);
    font-weight: 500;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.7; }
}

@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.7rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 42px;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: var(--transition-smooth);
    border-radius: 1px;
}

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

.navbar.scrolled .nav-link:hover {
    color: var(--red-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    background: var(--red-primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(206, 17, 38, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-700);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.75) 0%, rgba(0, 43, 92, 0.5) 50%, rgba(206, 17, 38, 0.3) 100%);
}

.hero-grid-lines {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.3rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    margin-bottom: 1.8rem;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.3rem;
    color: var(--white);
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, #FFF, #F0D0D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--red-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 17, 38, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    font-weight: 400;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; }
    100% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--blue-accent);
    display: inline-block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============ ABOUT ============ */
.about {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(206, 17, 38, 0.04);
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(0, 43, 92, 0.04);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.about-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.about-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-card:hover .about-card-img img {
    transform: scale(1.05);
}

.about-card-content {
    padding: 2rem;
}

.about-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    color: var(--blue-dark);
    transition: var(--transition-smooth);
}

.about-card:hover .about-icon {
    background: var(--blue-dark);
    color: var(--white);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
}

.about-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-card-glow {
    display: none;
}

/* ============ MISSION & VISION ============ */
.mission-vision {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.mv-card {
    padding: 3rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition-smooth);
    position: relative;
}

.mv-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-dark);
    border-radius: 2px 2px 0 0;
}

.mv-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-primary);
    border-radius: 2px 2px 0 0;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-accent);
}

.mv-card-border {
    display: none;
}

.mv-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--white);
    background: var(--blue-dark);
    border-radius: var(--radius-sm);
}

.mv-icon-ring {
    display: none;
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.mv-card p {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============ VALUES ============ */
.values {
    background: linear-gradient(135deg, var(--red-tint) 0%, var(--white) 50%, var(--blue-tint) 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: rgba(0, 43, 92, 0.03);
    border-radius: 50%;
}

.values::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -80px;
    width: 200px;
    height: 200px;
    background: rgba(206, 17, 38, 0.03);
    border-radius: 50%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-primary);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red-primary);
    background: rgba(206, 17, 38, 0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--red-primary);
    color: var(--white);
    transform: scale(1.05);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

.value-line {
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 1px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.value-card:hover .value-line {
    opacity: 1;
    width: 40px;
}

/* ============ SERVICES ============ */
.services {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-dark);
    z-index: 2;
}

.service-card:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-primary);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-bg {
    display: none;
}

.service-card-content {
    padding: 1.8rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 43, 92, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--blue-dark);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--blue-dark);
    color: var(--white);
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.3rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-accent);
    transition: var(--transition-fast);
}

.service-link i {
    transition: var(--transition-fast);
    font-size: 0.7rem;
}

.service-link:hover {
    color: var(--red-primary);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============ WHY US ============ */
.why-us {
    background: var(--blue-tint);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 1.8rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gray-100);
    border-top: 1px solid var(--gray-100);
    border-right: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition-smooth);
}

.why-item:hover {
    border-left-color: var(--red-primary);
    border-color: var(--blue-accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-200);
    min-width: 45px;
    transition: var(--transition-smooth);
}

.why-item:hover .why-number {
    color: var(--blue-accent);
}

.why-content h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--gray-900);
}

.why-content p {
    color: var(--gray-400);
    font-size: 0.83rem;
}

/* ============ OBJECTIVE ============ */
.objective {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--blue-dark);
}

.objective-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80");
    background-size: cover;
    background-position: center;
}

.objective-particles {
    display: none;
}

.objective-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.objective .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.objective-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 500;
    line-height: 1.7;
    color: var(--white);
}

.objective-title .text-gradient {
    background: linear-gradient(135deg, #78B4FF, #FFB3BC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ PROCESS ============ */
.process {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 43, 92, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(206, 17, 38, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue-dark), var(--red-primary));
    border-radius: 2px;
    opacity: 0.15;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    transition: var(--transition-slow);
}

.step-marker {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--white);
    border: 2px solid var(--blue-dark);
    border-radius: var(--radius-sm);
    color: var(--blue-dark);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    background: var(--blue-dark);
    color: var(--white);
}

.step-pulse {
    display: none;
}

.step-content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition-smooth);
}

.step-content:hover {
    border-color: var(--blue-accent);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 1.1rem;
    color: var(--blue-accent);
    margin-bottom: 0.6rem;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ============ COMMITMENT ============ */
.commitment {
    background: linear-gradient(135deg, var(--red-tint) 0%, var(--blue-tint) 100%);
    position: relative;
    overflow: hidden;
}

.commitment::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(0, 43, 92, 0.04);
    border-radius: 50%;
}

.commitment::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30px;
    width: 200px;
    height: 200px;
    background: rgba(206, 17, 38, 0.04);
    border-radius: 50%;
}

.commitment-card {
    position: relative;
    padding: 4rem;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.commitment-glass {
    display: none;
}

.commitment-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.commitment-content h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0.8rem 0 1.2rem;
    color: var(--gray-900);
}

.commitment-content p {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.commitment-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.commitment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.commitment-icon i {
    font-size: 1.6rem;
    color: var(--blue-dark);
}

.commitment-icon span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============ CONTACT ============ */
.contact {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(0, 43, 92, 0.03);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--blue-accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-dark);
    border-radius: var(--radius-sm);
    color: var(--white);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    font-weight: 600;
}

.contact-text a {
    font-size: 0.88rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--blue-accent);
}

.contact-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--gray-700);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 0.8rem;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-900);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(43, 125, 233, 0.08);
    background: var(--white);
}

.form-group select {
    appearance: none;
}

.form-group select option {
    background: var(--white);
    color: var(--gray-700);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--gray-400);
    pointer-events: none;
    transition: var(--transition-smooth);
    background: transparent;
    padding: 0 0.3rem;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -0.5rem;
    font-size: 0.7rem;
    color: var(--blue-accent);
    background: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-line {
    display: none;
}

.btn-submit {
    grid-column: 1 / -1;
    justify-self: start;
    cursor: pointer;
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contact-map iframe {
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    padding: 4rem 0 1.5rem;
    background: var(--gray-900);
    color: var(--white);
}

.footer-glow {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-contact p i {
    color: var(--blue-accent);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    border-color: var(--blue-accent);
    color: var(--blue-accent);
    background: rgba(43, 125, 233, 0.1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-tech i {
    color: var(--red-primary);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 9999;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal-left,
.reveal-right,
.reveal-up {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--gray-700);
        font-size: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .commitment-card {
        padding: 2.5rem 1.5rem;
    }
    
    .commitment-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .process-step {
        gap: 1.5rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1.2rem;
    }
}
