  :root {
            --primary: #5D4037; /* Café Roble */
            --secondary: #A1887F;
            --accent: #D4A373;
            --bg-light: #FAFAFA;
            --text-dark: #2D2D2D;
            --white: #FFFFFF;
            --glass: rgba(255, 255, 255, 0.8);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- NAVBAR --- */
        header {
            background: var(--glass);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.4rem;
            letter-spacing: 1px;
            color: var(--primary);
        }

        .logo span {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: block;
            color: var(--accent);
        }

        /* --- HERO / ABOUT --- */
        .hero {
            padding: 60px 0;
        }

        .hero-card {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .hero-img {
            height: 400px;
            background: url('https://mapatico.com/gallery/soyDaniel.jpg') center/cover no-repeat;
        }

        .hero-text {
            padding: 40px 30px;
        }

        .badge {
            display: inline-block;
            background: #EFEBE9;
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .hero-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        /* --- REDES SOCIALES --- */
        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 30px 0;
        }

        .social-btn {
            text-decoration: none;
            padding: 15px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
            transition: transform 0.3s ease;
            color: white;
        }

        .social-btn:active { transform: scale(0.95); }

        .fb { background: #1877F2; }
        .ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
        .tk { background: #000000; }
        .wa { background: #25D366; }

        /* --- SECCIÓN EN CONSTRUCCIÓN --- */
        .work-in-progress {
            background: var(--primary);
            color: var(--white);
            border-radius: 30px;
            padding: 40px 25px;
            text-align: center;
            margin-top: 40px;
        }

        .loading-bar {
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            margin: 25px 0;
            position: relative;
            overflow: hidden;
        }

        .loading-fill {
            position: absolute;
            width: 60%;
            height: 100%;
            background: var(--accent);
            animation: progress 2s infinite ease-in-out;
        }

        @keyframes progress {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* --- FOOTER --- */
        footer {
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }

        /* --- RESPONSIVE --- */
        @media (min-width: 768px) {
            .hero-card { grid-template-columns: 1fr 1fr; }
            .hero-img { height: auto; }
            .social-grid { grid-template-columns: repeat(4, 1fr); }
            .hero-text { padding: 60px; }
        }

        /* Flotante WhatsApp */
        .wa-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            z-index: 2000;
        }