/* ============================================
   NAFFAN Marketing Website - Styles
   ============================================ */

:root {
    --primary-color: #2c3e50;
    --primary-dark: #1a252f;
    --primary-light: #34495e;
    --accent-color: #e74c3c;
    --accent-hover: #c0392b;
    --secondary-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior-y: contain;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

@media (max-width: 768px) {
    .container {
        overflow: visible !important;
    }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 10000;
    padding: 1rem 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 768px) {
    .navbar {
        z-index: 10000;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10000;
}

@media (max-width: 768px) {
    .nav-wrapper {
        overflow: visible !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.btn-cta-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1001;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    user-select: none;
    -webkit-user-select: none;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    padding: 0.5rem 0 1rem;
    background: var(--bg-light);
    position: relative;
    overflow: visible;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero .container {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1rem 2rem;
    box-sizing: border-box;
    margin: auto 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.app-icon-container {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
    pointer-events: none !important;
    touch-action: none !important;
    margin-bottom: 0;
    -webkit-user-select: none;
    user-select: none;
}

.app-icon-3d {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3)) 
            drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateZ(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float3d 3s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        0 10px 20px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.1);
    pointer-events: none !important;
    touch-action: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
}

.app-icon-3d:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(30px) scale(1.1);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)) 
            drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation-play-state: paused;
}

@keyframes float3d {
    0%, 100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateZ(20px) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-3deg) rotateX(3deg) translateZ(25px) translateY(-10px);
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-badge i {
    color: #27ae60;
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.375rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* ============================================
   Mockups 2D Responsive
   ============================================ */

.hero-visual {
    position: relative;
    padding: 1rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: none;
    height: 100%;
    width: 100%;
    pointer-events: none;
    touch-action: none;
}

.mockup-image-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
    pointer-events: none;
    touch-action: none;
}

.hero-mockup-image {
    width: 100%;
    height: auto;
    max-width: none;
    min-width: 910px;
    max-height: 780px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: var(--transition);
    pointer-events: none;
    touch-action: none;
}

.hero-mockup-image:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2));
}

.app-preview {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.app-header {
    background: var(--primary-color);
    padding: 0.75rem;
    display: flex;
    align-items: center;
}

.app-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.app-body {
    padding: 1rem;
}

.calendar-view {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.calendar-day {
    padding: 0.5rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.calendar-day.active {
    background: var(--gradient-primary);
    color: white;
}

.appointment-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.appointment-time {
    font-weight: 700;
    color: var(--primary-color);
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-list {
    padding: 1rem;
}

.client-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.mobile-appointment {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.mobile-client {
    font-weight: 600;
}

/* ============================================
   Consentimientos Automáticos en Hero
   ============================================ */

.hero-consentimientos {
    margin-top: -1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.hero-consentimientos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(44, 62, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(44, 62, 80, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(44, 62, 80, 0.02) 49%, rgba(44, 62, 80, 0.02) 51%, transparent 52%);
    background-size: 200% 200%, 200% 200%, 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.hero-consentimientos::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Animación de contrato volando */
.contract-flying-animation {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.contract-flying-animation i {
    font-size: 3.5rem;
    color: var(--primary-color);
    display: block;
    filter: drop-shadow(0 2px 6px rgba(44, 62, 80, 0.3));
    opacity: 0.6;
}

.contract-flying-animation:nth-child(1) {
    animation: flyContract1 10s ease-in-out infinite;
}

.contract-flying-animation:nth-child(2) {
    top: 30%;
    animation: flyContract2 12s ease-in-out infinite;
    animation-delay: 3s;
}

.contract-flying-animation:nth-child(2) i {
    font-size: 3rem;
}

.contract-flying-animation:nth-child(3) {
    top: 70%;
    animation: flyContract3 11s ease-in-out infinite;
    animation-delay: 6s;
}

.contract-flying-animation:nth-child(3) i {
    font-size: 3.2rem;
}

@keyframes flyContract1 {
    0% {
        left: -50px;
        transform: translateY(-50%) translateX(0) rotate(-10deg);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    50% {
        left: calc(100% - 50px);
        transform: translateY(-50%) translateX(0) rotate(10deg);
        opacity: 0.6;
    }
    95% {
        opacity: 0.6;
    }
    100% {
        left: calc(100% + 50px);
        transform: translateY(-50%) translateX(0) rotate(-10deg);
        opacity: 0;
    }
}

@keyframes flyContract2 {
    0% {
        left: -50px;
        transform: translateY(-50%) translateX(0) rotate(10deg);
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    50% {
        left: calc(100% - 50px);
        transform: translateY(-50%) translateX(0) rotate(-10deg);
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        left: calc(100% + 50px);
        transform: translateY(-50%) translateX(0) rotate(10deg);
        opacity: 0;
    }
}

@keyframes flyContract3 {
    0% {
        left: -50px;
        transform: translateY(-50%) translateX(0) rotate(-5deg);
        opacity: 0;
    }
    5% {
        opacity: 0.55;
    }
    50% {
        left: calc(100% - 50px);
        transform: translateY(-50%) translateX(0) rotate(5deg);
        opacity: 0.55;
    }
    95% {
        opacity: 0.55;
    }
    100% {
        left: calc(100% + 50px);
        transform: translateY(-50%) translateX(0) rotate(-5deg);
        opacity: 0;
    }
}

.consentimientos-content-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.375rem;
    position: relative;
    z-index: 2;
}

.consentimientos-icon-inline {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 0.1rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
}

.consentimientos-icon-inline i {
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consentimientos-text-inline {
    width: 100%;
    max-width: 900px;
}

.consentimientos-title-inline {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.15rem;
    color: var(--text-dark);
    text-shadow: none;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.consentimientos-title-inline strong {
    color: var(--primary-color);
    text-shadow: none;
    display: inline-block;
    font-size: 1.1em;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    }
    50% {
        text-shadow: 0 4px 25px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

.consentimientos-subtitle-inline {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: none;
}

.consentimientos-steps-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
    flex-wrap: wrap;
}

.step-item-inline {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #764ba2 100%);
}

.step-item-inline:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.step-number-inline {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    box-shadow: 0 3px 10px rgba(44, 62, 80, 0.35);
    position: relative;
}

.step-number-inline::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    opacity: 0.3;
    z-index: -1;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-text-inline {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
    font-size: 0.85rem;
}

.step-text-inline strong {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.1em;
}

.step-arrow-inline {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(44, 62, 80, 0.2));
    animation: slideRight 1.5s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

.consentimientos-result-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    color: #155724;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    border: 2px solid #27ae60;
    margin-top: 0.15rem;
    transition: all 0.3s ease;
}

.consentimientos-result-inline:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.consentimientos-result-inline i {
    font-size: 0.875rem;
    color: #27ae60;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ============================================
   Simple Text Section
   ============================================ */

.simple-text-section {
    padding: 1.5rem 0;
    background: var(--bg-white);
}

.simple-text-message {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 1rem;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    padding: 1rem 0 3rem;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card.expanded {
    padding: 1.5rem;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin 0.4s ease-out;
    margin-top: 0;
    opacity: 0;
}

.feature-card.expanded .feature-content {
    max-height: 500px;
    margin-top: 1rem;
    opacity: 1;
    transition: max-height 0.5s ease-in, margin 0.5s ease-in, opacity 0.3s ease-in;
}

.feature-card.expanded .feature-toggle-btn i {
    transform: rotate(180deg);
}


.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.feature-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Colores individuales para cada icono con gradientes */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}


.feature-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    background: rgba(44, 62, 80, 0.08);
    color: var(--text-light);
    border: 1px solid rgba(44, 62, 80, 0.15);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    width: auto;
    align-self: flex-start;
}

.feature-toggle-btn:hover {
    background: rgba(44, 62, 80, 0.12);
    color: var(--text-dark);
    border-color: rgba(44, 62, 80, 0.25);
    transform: translateY(-1px);
}

.feature-toggle-btn i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-dark);
    flex: 1;
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.feature-list i {
    color: #27ae60;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
    padding: 3rem 0;
    background: var(--bg-light);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.stats-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 3rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
    background: var(--bg-light);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}


.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ============================================
   Pricing Page
   ============================================ */

.pricing-hero {
    padding: 2rem 0 1.5rem;
    background: var(--bg-light);
    text-align: center;
    position: relative;
}

.pricing-hero .container {
    position: relative;
}

.pricing-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.pricing-hero p {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-section {
    padding: 1rem 0 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    transform: scale(1);
}

.pricing-card.featured::before {
    content: 'Más Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    font-size: 0.875rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-light);
    font-size: 0.85rem;
}

.price-savings {
    background: #27ae60;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 0.35rem;
    font-weight: 600;
    font-size: 0.75rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.plan-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #27ae60;
    font-size: 1rem;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.95rem;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-hero {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-section {
    padding: 6rem 0;
}

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.5rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background: #20ba5a;
    color: white;
}

.faqs-button {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.faqs-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ============================================
   FAQs Page
   ============================================ */

.faqs-hero {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.faqs-section {
    padding: 6rem 0;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer-content ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

/* ============================================
   Blog Page
   ============================================ */

.blog-hero {
    padding: 2rem 0;
    background: var(--bg-light);
    text-align: center;
}

.blog-section {
    padding: 2rem 0 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.blog-card-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

/* ============================================
   Blog Post Page
   ============================================ */

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post-date {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content img {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .hero-consentimientos {
        margin-top: -1rem;
        padding: 0.5rem 0.875rem;
        border-radius: 10px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .hero-consentimientos::after {
        width: 150px;
        height: 150px;
        top: -20%;
        right: -10%;
    }
    
    .contract-flying-animation {
        left: -30px;
    }
    
    .contract-flying-animation i {
        font-size: 2.5rem;
        color: var(--primary-color);
        opacity: 0.6;
    }
    
    .contract-flying-animation:nth-child(2) i {
        font-size: 2rem;
    }
    
    .contract-flying-animation:nth-child(3) i {
        font-size: 2.2rem;
    }
    
    @keyframes flyContract1 {
        0% {
            left: -30px;
            opacity: 0;
        }
        5% {
            opacity: 0.5;
        }
        50% {
            left: calc(100% - 30px);
            opacity: 0.5;
        }
        95% {
            opacity: 0.5;
        }
        100% {
            left: calc(100% + 30px);
            opacity: 0;
        }
    }
    
    @keyframes flyContract2 {
        0% {
            left: -30px;
            opacity: 0;
        }
        5% {
            opacity: 0.4;
        }
        50% {
            left: calc(100% - 30px);
            opacity: 0.4;
        }
        95% {
            opacity: 0.4;
        }
        100% {
            left: calc(100% + 30px);
            opacity: 0;
        }
    }
    
    @keyframes flyContract3 {
        0% {
            left: -30px;
            opacity: 0;
        }
        5% {
            opacity: 0.45;
        }
        50% {
            left: calc(100% - 30px);
            opacity: 0.45;
        }
        95% {
            opacity: 0.45;
        }
        100% {
            left: calc(100% + 30px);
            opacity: 0;
        }
    }
    
    .consentimientos-content-inline {
        gap: 0.375rem;
    }
    
    .consentimientos-icon-inline {
        width: 30px;
        height: 30px;
    }
    
    .consentimientos-icon-inline i {
        font-size: 0.875rem;
    }
    
    .consentimientos-title-inline {
        font-size: 1.2rem;
    }
    
    .consentimientos-subtitle-inline {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .consentimientos-steps-inline {
        flex-direction: column;
        gap: 0.375rem;
        margin-bottom: 0.375rem;
    }
    
    .step-arrow-inline {
        transform: rotate(90deg);
        animation: slideDown 1.5s ease-in-out infinite;
    }
    
    @keyframes slideDown {
        0%, 100% {
            transform: rotate(90deg) translateY(0);
        }
        50% {
            transform: rotate(90deg) translateY(4px);
        }
    }
    
    .step-item-inline {
        min-width: 100%;
        max-width: 100%;
        padding: 0.5rem 0.625rem;
    }
    
    .step-number-inline {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .step-text-inline {
        font-size: 0.75rem;
    }
    
    .consentimientos-result-inline {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }
    
    .simple-text-section {
        padding: 1rem 0;
    }
    
    .simple-text-message {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
    
    .hero {
        min-height: calc(100vh - 70px);
        padding: 0.5rem 0 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .app-icon-container {
        top: -90px;
        justify-content: center;
    }
    
    .app-icon-3d {
        width: 70px;
        height: 70px;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-visual {
        max-height: none;
    }
    
    .mockup-image-container {
        padding: 0.5rem;
    }
    
    .hero-mockup-image {
        min-width: 780px;
        max-height: 715px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pricing-hero {
        padding: 1.5rem 0 1rem;
    }
    
    .pricing-hero h1 {
        font-size: 1.75rem;
        margin-top: 0.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .mockup-container {
        height: 400px;
    }
    
    .hero-visual {
        padding: 1rem 0;
        max-height: none;
    }
    
    .mockup-image-container {
        padding: 0.5rem;
    }
    
    .hero-mockup-image {
        min-width: 715px;
        max-height: 650px;
    }
}

@media (max-width: 768px) {
    /* Desactivar todas las animaciones en tablet/móvil para mejorar el rendimiento del scroll */
    .app-icon-3d,
    .contract-flying-animation,
    .contract-flying-animation i,
    .consentimientos-icon-inline,
    .step-item-inline,
    .consentimientos-result-inline i {
        animation: none !important;
        -webkit-animation: none !important;
        will-change: auto !important;
    }
    
    .app-icon-3d {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .contract-flying-animation {
        display: none !important;
    }
    
    html, body {
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior-y: contain;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    section {
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        touch-action: manipulation;
        z-index: 10001 !important;
        position: relative;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.75rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        flex-direction: column !important;
        background: #ffffff !important;
        width: 100vw !important;
        padding: 2rem !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        transition: left 0.3s ease !important;
        gap: 1rem !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
        z-index: 99999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: none !important;
        margin: 0 !important;
        list-style: none !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
        left: -100% !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .nav-menu a {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        padding: 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .consentimientos-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .consentimientos-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-item {
        min-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Desactivar todas las animaciones en móvil pequeño para mejorar el rendimiento del scroll */
    .app-icon-3d,
    .contract-flying-animation,
    .contract-flying-animation i,
    .consentimientos-icon-inline,
    .step-item-inline,
    .consentimientos-result-inline i {
        animation: none !important;
        -webkit-animation: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        will-change: auto !important;
    }
    
    .app-icon-3d {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .contract-flying-animation {
        display: none !important;
    }
    
    html, body {
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior-y: contain;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    section {
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 0.5rem 0 1rem;
        min-height: calc(100vh - 60px);
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 0.75rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .app-icon-container {
        position: relative !important;
        top: 0 !important;
        justify-content: center;
        margin-bottom: 1rem;
        padding-top: 0.25rem;
        pointer-events: none !important;
        touch-action: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    .app-icon-3d {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        pointer-events: none !important;
        touch-action: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        -webkit-user-drag: none !important;
    }
    
    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.35;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        hyphens: none;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .hero-title br {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        hyphens: none;
        text-align: center;
        padding: 0 0.75rem;
        line-height: 1.6;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
        gap: 0.6rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .feature-badge {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        padding: 0 0.75rem;
        line-height: 1.4;
    }
    
    .feature-badge span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    .hero-cta {
        margin-bottom: 1rem;
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-visual {
        max-height: none;
        padding: 0.5rem 0;
        overflow: visible !important;
    }
    
    .mockup-image-container {
        padding: 0.25rem;
        overflow: visible;
    }
    
    .hero-mockup-image {
        min-width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
        transform: scale(1.5); /* 50% más grande */
        transition: transform 0.6s ease-in-out;
        animation: zoomInOut 4s ease-in-out infinite;
        transform-origin: center center;
    }
    
    @keyframes zoomInOut {
        0%, 100% {
            transform: scale(1.5);
        }
        50% {
            transform: scale(1.6);
        }
    }
    
    .hero-mockup-image:hover {
        transform: scale(1.65) !important;
        animation-play-state: paused;
    }
    
    .mockup-image-container {
        overflow: visible;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features {
        padding: 0.75rem 0 2rem;
    }
    
    .benefits,
    .cta-section {
        padding: 2rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-hero {
        padding: 1rem 0 0.75rem;
    }
    
    .pricing-hero h1 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .pricing-hero .container > div[style*="position: absolute"] {
        position: relative !important;
        max-width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .hero-visual {
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none !important;
        touch-action: none !important;
    }
    
    .devices-showcase {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .mockup-image-container {
        max-width: 100%;
        padding: 0.5rem;
        overflow: visible; /* Permitir que la imagen se vea más grande */
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none !important;
        touch-action: none !important;
    }
    
    .hero-mockup-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-width: auto !important;
        object-fit: contain;
        transform: scale(1.5); /* 50% más grande (1.5 = 150%) */
        transition: transform 0.6s ease-in-out;
        animation: zoomInOut 4s ease-in-out infinite;
        transform-origin: center center;
        pointer-events: none !important;
        touch-action: none !important;
    }
    
    @keyframes zoomInOut {
        0%, 100% {
            transform: scale(1.5);
        }
        50% {
            transform: scale(1.6); /* Zoom adicional en la animación */
        }
    }
    
    .hero-mockup-image:hover {
        transform: scale(1.65) !important; /* Zoom al pasar el mouse */
        animation-play-state: paused;
    }
    
    .hero-visual {
        overflow: visible !important; /* Permitir que la imagen se vea */
    }
    
    .mockup-image-container {
        overflow: visible;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    /* Desactivar todas las animaciones en móvil para mejorar el rendimiento del scroll */
    .app-icon-3d,
    .contract-flying-animation,
    .contract-flying-animation i,
    .consentimientos-icon-inline,
    .step-item-inline,
    .consentimientos-result-inline i {
        animation: none !important;
        -webkit-animation: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        will-change: auto !important;
    }
    
    .app-icon-3d {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .contract-flying-animation {
        display: none !important;
    }
    
    /* Desactivar transiciones costosas en móvil */
    .app-icon-3d:hover {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    /* Desactivar guiones automáticos en móvil */
    * {
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -moz-hyphens: none !important;
        -ms-hyphens: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 1rem 0 2rem;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        padding: 0.75rem 1rem;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        align-items: center;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none; /* Desactivar guiones automáticos */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Icono en flujo normal en móvil */
    .app-icon-container {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        display: flex;
        pointer-events: none !important;
        touch-action: none !important;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.25rem;
        padding-top: 0.5rem;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    .app-icon-3d {
        width: 70px;
        height: 70px;
        pointer-events: none !important;
        touch-action: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        -webkit-user-drag: none !important;
        animation: none !important;
        -webkit-animation: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        will-change: auto !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        line-height: 1.4;
        hyphens: none; /* Sin guiones */
        text-align: center;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-title br {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        hyphens: none; /* Sin guiones */
        text-align: center;
        line-height: 1.6;
        padding: 0 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-visual {
        padding: 1rem 0;
        max-height: none;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .mockup-image-container {
        padding: 0.5rem;
    }
    
    .hero-mockup-image {
        min-width: 585px;
        max-height: 520px;
    }
    
    .desktop-device .device-frame {
        width: 280px;
        height: 175px;
    }
    
    .tablet-device .device-frame {
        width: 180px;
        height: 240px;
    }
    
    .mobile-device .device-frame {
        width: 120px;
        height: 240px;
    }
    
    .device-label {
        font-size: 0.7rem;
    }
    
    .device-screenshot {
        object-fit: cover;
        object-position: top center;
    }
}

/* ============================================
   App Showcase Section - Screenshots
   ============================================ */

.app-showcase {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.screenshots-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.screenshot-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1200px) {
    .screenshot-item {
        gap: 3rem;
    }
}

.screenshot-item.reverse {
    direction: rtl;
}

.screenshot-item.reverse > * {
    direction: ltr;
}

.screenshot-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    background: var(--bg-white);
    transition: var(--transition);
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.screenshot-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    max-width: 100%;
    object-fit: contain;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 30%);
    border-radius: 20px;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.screenshot-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
}

.screenshot-badge i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.screenshot-content {
    padding: 0.5rem 0;
}

.screenshot-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.screenshot-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.screenshot-question {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.screenshot-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.screenshot-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.screenshot-features li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Responsive Screenshots */
@media (max-width: 968px) {
    .screenshot-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screenshot-item.reverse {
        direction: ltr;
    }
    
    .screenshot-image-wrapper {
        order: -1;
        max-width: 100%;
    }
    
    .screenshot-title {
        font-size: 1.75rem;
    }
    
    .screenshots-container {
        gap: 2.5rem;
    }
    
    .screenshot-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .screenshot-image-wrapper {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .screenshot-image-wrapper {
        max-width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .app-showcase {
        padding: 4rem 0;
    }
    
    .screenshot-title {
        font-size: 1.5rem;
    }
    
    .screenshot-description {
        font-size: 1rem;
    }
    
    .screenshot-image-wrapper {
        border-radius: 15px;
    }
    
    .screenshot-img {
        border-radius: 15px;
    }
    
    .screenshots-container {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .screenshot-image-wrapper {
        max-width: 100%;
    }
    
    .screenshot-title {
        font-size: 1.25rem;
    }
    
    .screenshot-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .screenshot-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .screenshot-overlay {
        padding: 1rem;
    }
}

/* ============================================
   Download Page Styles
   ============================================ */

.download-hero {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.download-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-icon-wrapper {
    margin-bottom: 0.75rem;
}

.download-icon-wrapper i {
    font-size: 2.5rem !important;
}

.download-hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.download-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 500px;
    margin: 0 auto;
}

.download-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.download-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.download-platform-icon {
    margin-bottom: 1.5rem;
}

.download-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.download-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-info {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.download-info p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-info i {
    color: #27ae60;
    font-size: 1rem;
}

.btn-download {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-download.highlighted {
    background: var(--primary-dark);
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(44, 62, 80, 0);
    }
}

.download-size {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.installation-instructions {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.installation-instructions h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

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

.instruction-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.instruction-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.instruction-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.instruction-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.instruction-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.download-features {
    margin: 4rem 0;
}

.download-features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.web-app-alternative {
    margin: 4rem 0;
    text-align: center;
}

.alternative-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.alternative-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.alternative-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .download-hero {
        padding: 0.75rem 0;
    }
    
    .download-hero-content {
        padding: 0 1rem;
    }
    
    .download-icon-wrapper {
        margin-bottom: 0.5rem;
    }
    
    .download-icon-wrapper i {
        font-size: 2rem !important;
    }
    
    .download-hero h1 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .download-subtitle {
        font-size: 0.85rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-section {
        padding: 1rem 0;
    }
    
    /* Reducir instrucciones de instalación en móvil */
    .installation-instructions {
        margin: 1.5rem 0 !important;
        padding: 1rem 1rem !important;
    }
    
    .installation-instructions h2 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .instructions-grid {
        gap: 0.75rem !important;
    }
    
    .instruction-card {
        padding: 1rem 0.75rem !important;
    }
    
    .instruction-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .instruction-card h4 {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .instruction-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .download-features {
        margin: 1.5rem 0 !important;
    }
    
    .download-features h2 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-item {
        padding: 0.75rem !important;
    }
    
    .feature-item i {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feature-item h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .feature-item p {
        font-size: 0.8rem !important;
    }
    
    .web-app-alternative {
        margin: 1.5rem 0 !important;
    }
    
    .alternative-card {
        padding: 1.5rem 1rem !important;
    }
    
    .alternative-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .alternative-card p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }
}

/* ============================================
   Mobile Downloads Styles
   ============================================ */

.mobile-downloads {
    margin-bottom: 2rem;
}

.mobile-download-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.mobile-download-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.mobile-download-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.mobile-download-icon {
    margin-bottom: 0.75rem;
}

.mobile-download-icon i {
    font-size: 2.5rem !important;
}

.mobile-download-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.mobile-download-description {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.mobile-download-info {
    text-align: left;
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    display: none; /* Ocultamos la info para hacer las cajas más compactas */
}

.mobile-download-info p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-download-info i {
    color: #27ae60;
    font-size: 1rem;
}

.btn-mobile-download {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-mobile-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-mobile-download.highlighted {
    background: var(--primary-dark);
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

.mobile-download-note {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.2;
}

/* Responsive Mobile Downloads */
@media (max-width: 768px) {
    .mobile-downloads {
        margin-bottom: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .mobile-download-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .mobile-download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .mobile-download-card {
        padding: 1rem 0.75rem;
    }
    
    .mobile-download-icon {
        margin-bottom: 0.5rem;
    }
    
    .mobile-download-icon i {
        font-size: 2rem !important;
    }
    
    .mobile-download-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .mobile-download-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-mobile-download {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        margin-top: 0.4rem;
    }
    
    .mobile-download-note {
        font-size: 0.65rem;
        margin-top: 0.4rem;
    }
}

@media (max-width: 480px) {
    .mobile-download-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-download-grid {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .mobile-download-card {
        padding: 0.9rem 0.6rem;
    }
    
    .mobile-download-icon i {
        font-size: 1.75rem !important;
    }
    
    .mobile-download-card h3 {
        font-size: 1rem;
    }
    
    .mobile-download-description {
        font-size: 0.7rem;
    }
    
    .btn-mobile-download {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .download-hero {
        padding: 0.5rem 0;
    }
    
    .download-icon-wrapper i {
        font-size: 1.75rem !important;
    }
    
    .download-hero h1 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .download-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}