        :root {
            --primary-color: #D87575;
            --primary-light: #FFDFDF;
            --primary-dark: #AA5050;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --bg-light: #FFF5F5;
            --gradient-bg: linear-gradient(135deg, #FFDFDF 0%, #D87575 50%, #AA5050 100%);
            --gradient-card: linear-gradient(135deg, #FFEFEF 0%, #FFD5D5 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Alexandria', sans-serif;
        }
        
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* HEADER SECTION */
        header {
            background: var(--gradient-bg);
            color: var(--text-light);
            padding: 50px 0 30px;
            text-align: center;
            border-radius: 0 0 30px 30px;
            box-shadow: 0 10px 30px rgba(216, 117, 117, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .phone-mockup {
            position: relative;
            width: 200px;
            height: 400px;
            margin: 30px auto;
            background: var(--text-dark);
            border-radius: 30px;
            border: 8px solid #222;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .screen {
            background: var(--bg-light);
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .scroll-content {
            position: absolute;
            width: 100%;
            animation: scrolling 15s linear infinite;
        }
        
        @keyframes scrolling {
            0% { top: 0; }
            100% { top: -1000px; }
        }
        
        .post {
            padding: 10px;
            margin: 10px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .post-header {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .profile-pic {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary-light);
            margin-right: 10px;
        }
        
        .post-image {
            width: 100%;
            height: 120px;
            background: var(--primary-light);
            border-radius: 8px;
            margin-bottom: 8px;
        }
        
        .like-bar {
            display: flex;
            justify-content: space-between;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        
        .social-icon {
            height: 50px;
            width: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: floatIcon 3s ease-in-out infinite;
        }
        
        .social-icon:nth-child(1) {
            animation-delay: 0s;
        }
        
        .social-icon:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        .social-icon:nth-child(3) {
            animation-delay: 1s;
        }
        
        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .social-icon i {
            font-size: 24px;
            color: var(--primary-color);
        }
        
        .scroll-indicator {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-15px);
            }
            60% {
                transform: translateY(-8px);
            }
        }
        
        /* MAIN CONTENT */
        section {
            padding: 30px 20px;
            margin: 30px 0;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(216, 117, 117, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        section:hover {
            transform: translateY(-5px);
        }
        
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-bg);
        }
        
        h2 {
            color: var(--primary-dark);
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .definition {
            padding: 15px 20px;
            background-color: var(--primary-light);
            border-radius: 10px;
            margin-bottom: 25px;
            position: relative;
        }
        
        .definition::before {
            content: '"';
            font-size: 60px;
            color: var(--primary-color);
            opacity: 0.2;
            position: absolute;
            top: -15px;
            left: 10px;
        }
        
        /* SEÑALES DE ADVERTENCIA */
        .warning-signs {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .sign-card {
            background: var(--gradient-card);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .sign-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 25px rgba(216, 117, 117, 0.2);
        }
        
        .sign-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: var(--primary-color);
            opacity: 0.2;
        }
        
        .sign-title {
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        /* EFECTOS SECCIÓN */
        .effects-container {
            position: relative;
            margin: 40px 0;
        }
        
        .phone-outline {
            width: 250px;
            height: 450px;
            margin: 0 auto;
            border: 10px solid var(--primary-dark);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .effects {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 20px;
        }
        
        .effect-item {
            flex: 0 0 45%;
            background: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            color: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }
        
        .effect-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-color);
        }
        
        .effect-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(216, 117, 117, 0.2);
        }
        
        /* ESTADÍSTICAS DE SCROLLING */
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 30px 0;
        }
        
        .stat-item {
            text-align: center;
            margin: 15px;
            flex: 1 1 150px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .stat-number::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .stat-label {
            font-size: 1rem;
            font-weight: 600;
        }
        
        /* SCROLLING FEATURES */
        .scrolling-features {
            padding: 20px 0;
        }
        
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            border-top: 5px solid var(--primary-color);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(216, 117, 117, 0.2);
        }
        
        .feature-icon {
            font-size: 30px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        /* CONSEJOS PARA CONTROL */
        .tips-container {
            margin: 30px 0;
        }
        
        .tip-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            background: var(--primary-light);
            border-radius: 10px;
            padding: 15px;
            transition: all 0.3s ease;
        }
        
        .tip-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(216, 117, 117, 0.2);
        }
        
        .tip-number {
            background: var(--primary-dark);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .tip-content {
            flex-grow: 1;
        }
        
        .tip-title {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-dark);
        }
        
        /* COMPARACIÓN ANTES/DESPUÉS */
        .before-after {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .time-block {
            flex: 1 1 250px;
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .time-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .time-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .time-icon i {
            color: var(--primary-dark);
            font-size: 20px;
        }
        
        .time-title {
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        .time-activities {
            list-style-type: none;
        }
        
        .time-activities li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .time-activities li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        /* CALL TO ACTION */
        .cta {
            background: var(--gradient-bg);
            color: white;
            text-align: center;
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta h2 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .cta h2::after {
            background: white;
            left: 25%;
            width: 50%;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary-dark);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            margin-top: 20px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Decorative elements */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .bubble-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation: float 8s ease-in-out infinite;
        }
        
        .bubble-2 {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }
        
        .bubble-3 {
            width: 40px;
            height: 40px;
            bottom: 10%;
            left: 20%;
            animation: float 7s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-15px) translateX(15px);
            }
            50% {
                transform: translateY(0) translateX(30px);
            }
            75% {
                transform: translateY(15px) translateX(15px);
            }
        }
        
        footer {
            text-align: center;
            padding: 20px 0 30px;
            color: var(--primary-dark);
            font-size: 0.85rem;
        }
        
        /* TIME TRACKING */
        .timer-container {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
        }
        
        .usage-tracker {
            display: flex;
            flex-wrap: wrap;
            gap: -20px;
            margin-top: 20px;
        }
        
        .day-column {
            flex: 1;
            min-width: 40px;
            text-align: center;
        }
        
        .day-label {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .usage-bar {
            height: 150px;
            background: #f0f0f0;
            border-radius: 10px;
            position: relative;
            margin: 0 auto;
            width: 20px;
        }
        
        .usage-fill {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--primary-color);
            border-radius: 5px;
        }
        
        .usage-time {
            margin-top: 5px;
            font-size: 0.8rem;
            color: var(--primary-dark);
        }
        
        /* Notificaciones animadas */
        .notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            border-left: 4px solid var(--primary-color);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            max-width: 300px;
            transform: translateX(400px);
            animation: slideIn 0.5s forwards, slideOut 0.5s 5s forwards;
            z-index: 1000;
        }
        
        .notification-icon {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        @keyframes slideIn {
            to { transform: translateX(0); }
        }
        
        @keyframes slideOut {
            to { transform: translateX(400px); }
        }
        
        #notif1 {
            animation-delay: 2s, 7s;
        }
        
        #notif2 {
            animation-delay: 10s, 15s;
        }
        
        #notif3 {
            animation-delay: 18s, 23s;
        }
        
        /* MEDIA QUERIES */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .warning-signs {
                grid-template-columns: 1fr;
            }
            
            .phone-mockup {
                width: 170px;
                height: 320px;
            }
            
            .phone-outline {
                width: 200px;
                height: 380px;
            }
            
            .feature-cards {
                grid-template-columns: 1fr;
            }
            
            .effect-item {
                flex: 0 0 100%;
            }
            
            .before-after {
                flex-direction: column;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                margin-bottom: 25px;
            }
            
            section {
                padding: 25px 15px;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .phone-mockup {
                width: 150px;
                height: 280px;
            }
            
            .phone-outline {
                width: 180px;
                height: 350px;
            }
            
            .social-icons {
                gap: 15px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
            }
            
            .cta {
                padding: 30px 15px;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
        }
                .bubble-4 {
            width: 70px; height: 70px; top: 40%; left: 80%; animation: float 9s ease-in-out infinite;
        }
        .bubble-5 {
            width: 50px; height: 50px; top: 75%; left: 60%; animation: float 11s ease-in-out infinite;
        }


        .scroll-hand {
            position: fixed;
            z-index: 1001;
            pointer-events: none;
        }
        .warning-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin: 20px 0;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            animation: slide 10s linear infinite;
        }

        .sign-card {
            flex: 0 0 auto;
            background: rgba(230, 166, 166, 0.8);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            text-align: center;
            padding: 20px;
            transition: transform 0.3s ease;
            min-width: 200px;
        }

        .sign-card:hover {
            transform: scale(1.1);
        }

        .sign-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .sign-title {
            font-size: 1.2rem;
            font-weight: bold;
            word-wrap: break-word;
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-50%);
            }
            50% {
                transform: translateX(-100%);
            }
            75% {
                transform: translateX(-150%);
            }
            100% {
                transform: translateX(0);
            }
        }

        @media (min-width: 768px) {
            .sign-card {
                min-width: 250px;
            }
        }

         
        /* FOMO ANIMATION */
        .fomo-section {
            text-align: center;
            margin: 30px 10px;
        }

        .fomo-animation {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            position: relative;
        }

        .fomo-bubble {
            background-color: rgba(230, 166, 166, 0.8);
            color: #aa5050;
            padding: 10px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            animation: float 3s ease-in-out infinite;
            max-width: 90%;
            text-align: center;
        }

        .fomo-bubble:nth-child(2) {
            animation-delay: 1s;
        }

        .fomo-bubble:nth-child(3) {
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
            transform: translateY(0);
            }
            50% {
            transform: translateY(-15px);
            }
        }

        @media (min-width: 768px) {
            .fomo-section {
            margin: 50px 0;
            }

            .fomo-bubble {
            font-size: 1rem;
            padding: 15px 20px;
            }
        }

        .tips-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        .tips-stack {
            position: relative;
            height: 200px;
        }

        .tip-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
            cursor: pointer;
        }

        .tip-item[data-order="1"] {
            z-index: 4;
            transform: translate(0, 0);
        }

        .tip-item[data-order="2"] {
            z-index: 3;
            transform: translate(10px, 10px);
        }

        .tip-item[data-order="3"] {
            z-index: 2;
            transform: translate(20px, 20px);
        }

        .tip-item[data-order="4"] {
            z-index: 1;
            transform: translate(30px, 30px);
        }

        
