* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ortegapineda-primary: #0066ff;
    --ortegapineda-primary-dark: #0052cc;
    --ortegapineda-primary-light: #3377ff;
    --ortegapineda-secondary: #00d9a5;
    --ortegapineda-accent: #ff6b35;
    --ortegapineda-neutral-0: #ffffff;
    --ortegapineda-neutral-50: #fafbfc;
    --ortegapineda-neutral-100: #f4f6f8;
    --ortegapineda-neutral-200: #e3e8ef;
    --ortegapineda-neutral-300: #d0d7de;
    --ortegapineda-neutral-400: #9ea5ad;
    --ortegapineda-neutral-500: #6f7882;
    --ortegapineda-neutral-600: #525c66;
    --ortegapineda-neutral-700: #3d454d;
    --ortegapineda-neutral-800: #2a2f36;
    --ortegapineda-neutral-900: #1a1d22;
    --ortegapineda-gradient-primary: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    --ortegapineda-gradient-secondary: linear-gradient(135deg, #00d9a5 0%, #00b888 100%);
    --ortegapineda-gradient-hero: linear-gradient(135deg, #0066ff 0%, #0052cc 50%, #003d99 100%);
    --ortegapineda-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --ortegapineda-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --ortegapineda-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --ortegapineda-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --ortegapineda-shadow-glow: 0 0 40px rgba(0, 102, 255, 0.2);
    --ortegapineda-border-radius-sm: 8px;
    --ortegapineda-border-radius-md: 16px;
    --ortegapineda-border-radius-lg: 24px;
    --ortegapineda-border-radius-xl: 32px;
    --ortegapineda-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ortegapineda-neutral-700);
    background: var(--ortegapineda-neutral-0);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ortegapineda-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.ortegapineda-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 29, 34, 0.95);
    backdrop-filter: blur(20px);
    color: var(--ortegapineda-neutral-0);
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--ortegapineda-transition);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ortegapineda-cookies-banner.show {
    transform: translateY(0);
}

.ortegapineda-cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 24px;
}

.ortegapineda-cookies-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: var(--ortegapineda-neutral-300);
}

.ortegapineda-accept-cookies {
    background: var(--ortegapineda-primary);
    color: var(--ortegapineda-neutral-0);
    border: none;
    padding: 10px 24px;
    border-radius: var(--ortegapineda-border-radius-sm);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: var(--ortegapineda-transition);
}

.ortegapineda-accept-cookies:hover {
    background: var(--ortegapineda-primary-dark);
    transform: translateY(-1px);
}

.ortegapineda-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--ortegapineda-neutral-200);
    z-index: 999;
    transition: var(--ortegapineda-transition);
}

.ortegapineda-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.ortegapineda-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ortegapineda-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.ortegapineda-company-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ortegapineda-neutral-900);
    white-space: nowrap;
}

.ortegapineda-footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.ortegapineda-footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.ortegapineda-footer-company-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.ortegapineda-nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.ortegapineda-nav-link {
    text-decoration: none;
    color: var(--ortegapineda-neutral-700);
    font-weight: 500;
    font-size: 15px;
    transition: var(--ortegapineda-transition);
    position: relative;
    letter-spacing: -0.01em;
}

.ortegapineda-nav-link:hover {
    color: var(--ortegapineda-primary);
}

.ortegapineda-nav-link.ortegapineda-active {
    color: var(--ortegapineda-primary);
    font-weight: 600;
}

.ortegapineda-nav-link.ortegapineda-active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ortegapineda-primary);
    border-radius: 2px;
}

.ortegapineda-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.ortegapineda-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ortegapineda-neutral-700);
    border-radius: 2px;
    transition: var(--ortegapineda-transition);
}

.ortegapineda-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ortegapineda-gradient-hero);
}

.ortegapineda-hero-decorative {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
}

.ortegapineda-decorative-1 {
    width: 600px;
    height: 600px;
    background: var(--ortegapineda-secondary);
    top: -300px;
    right: -300px;
}

.ortegapineda-decorative-2 {
    width: 400px;
    height: 400px;
    background: var(--ortegapineda-accent);
    bottom: -200px;
    left: -200px;
}

.ortegapineda-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.15;
}

.ortegapineda-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.ortegapineda-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 140px 0 100px;
}

.ortegapineda-hero-text {
    max-width: 720px;
}

.ortegapineda-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ortegapineda-neutral-0);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ortegapineda-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--ortegapineda-neutral-0);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ortegapineda-hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ortegapineda-hero-subtitle {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    font-weight: 400;
}

.ortegapineda-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.ortegapineda-btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--ortegapineda-border-radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ortegapineda-transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.ortegapineda-btn-hero {
    padding: 18px 36px;
    font-size: 16px;
}

.ortegapineda-btn-primary {
    background: var(--ortegapineda-neutral-0);
    color: var(--ortegapineda-primary);
    box-shadow: var(--ortegapineda-shadow-lg);
}

.ortegapineda-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--ortegapineda-shadow-xl);
}

.ortegapineda-btn-secondary {
    background: transparent;
    color: var(--ortegapineda-neutral-0);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ortegapineda-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.ortegapineda-btn-outline {
    background: transparent;
    color: var(--ortegapineda-neutral-0);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ortegapineda-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.ortegapineda-btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.ortegapineda-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ortegapineda-hero-stat {
    text-align: left;
}

.ortegapineda-stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--ortegapineda-neutral-0);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ortegapineda-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ortegapineda-services-preview {
    padding: 160px 0;
    background: var(--ortegapineda-neutral-50);
    position: relative;
}

.ortegapineda-section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ortegapineda-section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--ortegapineda-primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.ortegapineda-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: var(--ortegapineda-neutral-900);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ortegapineda-section-subtitle {
    font-size: 1.25rem;
    color: var(--ortegapineda-neutral-600);
    line-height: 1.7;
    font-weight: 400;
}

.ortegapineda-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.ortegapineda-service-card {
    background: var(--ortegapineda-neutral-0);
    padding: 48px 40px;
    border-radius: var(--ortegapineda-border-radius-lg);
    box-shadow: var(--ortegapineda-shadow-md);
    transition: var(--ortegapineda-transition);
    border: 1px solid var(--ortegapineda-neutral-200);
    position: relative;
    overflow: hidden;
}

.ortegapineda-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ortegapineda-gradient-primary);
    transform: scaleX(0);
    transition: var(--ortegapineda-transition);
}

.ortegapineda-service-card:hover::before {
    transform: scaleX(1);
}

.ortegapineda-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ortegapineda-shadow-xl);
    border-color: var(--ortegapineda-primary);
}

.ortegapineda-service-card-featured {
    background: var(--ortegapineda-gradient-primary);
    color: var(--ortegapineda-neutral-0);
    border-color: transparent;
}

.ortegapineda-service-card-featured::before {
    display: none;
}

.ortegapineda-service-card-featured .ortegapineda-service-title,
.ortegapineda-service-card-featured .ortegapineda-service-description {
    color: var(--ortegapineda-neutral-0);
}

.ortegapineda-service-card-featured .ortegapineda-service-number {
    color: rgba(255, 255, 255, 0.2);
}

.ortegapineda-service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--ortegapineda-neutral-100);
    border-radius: var(--ortegapineda-border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: var(--ortegapineda-transition);
}

.ortegapineda-service-card:hover .ortegapineda-service-icon-wrapper {
    transform: scale(1.1);
}

.ortegapineda-service-card-featured .ortegapineda-service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.ortegapineda-service-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ortegapineda-service-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--ortegapineda-neutral-200);
    line-height: 1;
    opacity: 0.3;
    letter-spacing: -0.03em;
}

.ortegapineda-service-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ortegapineda-neutral-900);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ortegapineda-service-description {
    color: var(--ortegapineda-neutral-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.ortegapineda-service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ortegapineda-feature-tag {
    padding: 6px 12px;
    background: var(--ortegapineda-neutral-100);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ortegapineda-neutral-700);
}

.ortegapineda-service-card-featured .ortegapineda-feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--ortegapineda-neutral-0);
}

.ortegapineda-advantages-section {
    padding: 160px 0;
    background: var(--ortegapineda-neutral-0);
    position: relative;
}

.ortegapineda-advantages-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: center;
}

.ortegapineda-advantages-intro {
    font-size: 1.125rem;
    color: var(--ortegapineda-neutral-600);
    line-height: 1.7;
    margin-bottom: 48px;
}

.ortegapineda-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ortegapineda-advantage-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.ortegapineda-advantage-icon-large {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--ortegapineda-primary) 0%, var(--ortegapineda-primary-dark) 100%);
    border-radius: var(--ortegapineda-border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ortegapineda-shadow-md);
}

.ortegapineda-advantage-icon-large img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ortegapineda-advantage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ortegapineda-neutral-900);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ortegapineda-advantage-description {
    color: var(--ortegapineda-neutral-600);
    line-height: 1.7;
    font-size: 1rem;
}

.ortegapineda-advantages-visual {
    position: relative;
}

.ortegapineda-advantages-image-wrapper {
    border-radius: var(--ortegapineda-border-radius-xl);
    overflow: hidden;
    box-shadow: var(--ortegapineda-shadow-xl);
    position: relative;
    z-index: 1;
}

.ortegapineda-advantages-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.ortegapineda-visual-decorative {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    background: var(--ortegapineda-gradient-secondary);
    border-radius: var(--ortegapineda-border-radius-xl);
    opacity: 0.2;
    filter: blur(60px);
    z-index: 0;
}

.ortegapineda-testimonials-section {
    padding: 160px 0;
    background: var(--ortegapineda-neutral-50);
}

.ortegapineda-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.ortegapineda-testimonial-card {
    background: var(--ortegapineda-neutral-0);
    padding: 48px 40px;
    border-radius: var(--ortegapineda-border-radius-lg);
    box-shadow: var(--ortegapineda-shadow-md);
    transition: var(--ortegapineda-transition);
    border: 1px solid var(--ortegapineda-neutral-200);
    position: relative;
}

.ortegapineda-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ortegapineda-shadow-xl);
}

.ortegapineda-testimonial-card-featured {
    background: var(--ortegapineda-gradient-primary);
    border-color: transparent;
    color: var(--ortegapineda-neutral-0);
}

.ortegapineda-testimonial-card-featured .ortegapineda-testimonial-content p,
.ortegapineda-testimonial-card-featured .ortegapineda-author-name,
.ortegapineda-testimonial-card-featured .ortegapineda-author-title {
    color: var(--ortegapineda-neutral-0);
}

.ortegapineda-testimonial-quote {
    font-family: 'Roboto', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--ortegapineda-primary);
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0.3;
}

.ortegapineda-testimonial-card-featured .ortegapineda-testimonial-quote {
    color: rgba(255, 255, 255, 0.3);
}

.ortegapineda-testimonial-content p {
    font-size: 1.125rem;
    color: var(--ortegapineda-neutral-700);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

.ortegapineda-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ortegapineda-testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ortegapineda-primary);
}

.ortegapineda-testimonial-card-featured .ortegapineda-testimonial-author img {
    border-color: rgba(255, 255, 255, 0.3);
}

.ortegapineda-author-info {
    text-align: center;
}

.ortegapineda-author-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ortegapineda-neutral-900);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.ortegapineda-author-title {
    color: var(--ortegapineda-neutral-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.ortegapineda-cta-section {
    padding: 160px 0;
    background: var(--ortegapineda-gradient-hero);
    color: var(--ortegapineda-neutral-0);
    position: relative;
    overflow: hidden;
}

.ortegapineda-cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.ortegapineda-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ortegapineda-cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ortegapineda-cta-subtitle {
    font-size: 1.375rem;
    margin-bottom: 48px;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
}

.ortegapineda-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ortegapineda-btn-cta {
    min-width: 200px;
}

.ortegapineda-footer {
    background: var(--ortegapineda-neutral-900);
    color: var(--ortegapineda-neutral-300);
    padding: 80px 0 32px;
}

.ortegapineda-footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 64px;
    margin-bottom: 64px;
}

.ortegapineda-footer-brand {
    max-width: 360px;
}

.ortegapineda-footer-logo {
    margin-bottom: 24px;
}

.ortegapineda-footer-description {
    color: var(--ortegapineda-neutral-300);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.ortegapineda-footer-section p {
    color: var(--ortegapineda-neutral-300);
}

.ortegapineda-footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ortegapineda-neutral-0);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.ortegapineda-footer-list {
    list-style: none;
}

.ortegapineda-footer-list li {
    margin-bottom: 12px;
}

.ortegapineda-footer-list a {
    color: var(--ortegapineda-neutral-300);
    text-decoration: none;
    transition: var(--ortegapineda-transition);
    font-size: 0.9375rem;
}

.ortegapineda-footer-list a:hover {
    color: var(--ortegapineda-neutral-0);
}

.ortegapineda-footer-contact {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--ortegapineda-neutral-300);
}

.ortegapineda-footer-contact p {
    margin-bottom: 12px;
}

.ortegapineda-footer-email {
    color: var(--ortegapineda-primary-light);
}

.ortegapineda-footer-bottom {
    border-top: 1px solid var(--ortegapineda-neutral-800);
    padding-top: 32px;
}

.ortegapineda-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.875rem;
    color: var(--ortegapineda-neutral-300);
}

.ortegapineda-footer-bottom-content p {
    color: var(--ortegapineda-neutral-300);
}

.ortegapineda-footer-links a {
    color: var(--ortegapineda-neutral-300);
    text-decoration: none;
    transition: var(--ortegapineda-transition);
}

.ortegapineda-footer-links a:hover {
    color: var(--ortegapineda-neutral-0);
}

@media (max-width: 1024px) {
    .ortegapineda-container {
        padding: 0 32px;
    }

    .ortegapineda-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .ortegapineda-advantages-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .ortegapineda-advantages-text .ortegapineda-section-title {
        text-align: center;
    }

    .ortegapineda-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ortegapineda-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ortegapineda-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .ortegapineda-container {
        padding: 0 24px;
    }

    .ortegapineda-nav-container {
        padding: 16px 24px;
    }

    .ortegapineda-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ortegapineda-neutral-0);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--ortegapineda-shadow-lg);
        border-top: 1px solid var(--ortegapineda-neutral-200);
        gap: 24px;
    }

    .ortegapineda-nav-menu.active {
        display: flex;
    }

    .ortegapineda-mobile-menu-toggle {
        display: flex;
    }

    .ortegapineda-hero-content {
        padding: 120px 0 80px;
    }

    .ortegapineda-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ortegapineda-hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .ortegapineda-services-preview,
    .ortegapineda-advantages-section,
    .ortegapineda-testimonials-section,
    .ortegapineda-cta-section {
        padding: 100px 0;
    }

    .ortegapineda-services-grid {
        grid-template-columns: 1fr;
    }

    .ortegapineda-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ortegapineda-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ortegapineda-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .ortegapineda-cookies-content {
        flex-direction: column;
        text-align: center;
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .ortegapineda-container {
        padding: 0 20px;
    }

    .ortegapineda-hero-buttons {
        gap: 12px;
    }

    .ortegapineda-btn-hero {
        padding: 16px 24px;
        font-size: 15px;
    }

    .ortegapineda-service-card,
    .ortegapineda-testimonial-card {
        padding: 32px 24px;
    }

    .ortegapineda-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}