        /* --- VARIABLES & RESET --- */
        :root {
            --color-amber-50: #fffbf0;
            --color-amber-100: #fef3c7;
            --color-amber-200: #fde68a;
            --color-amber-300: #fcd34d;
            --color-amber-400: #fbbf24;
            --color-amber-500: #f59e0b;
            --color-amber-600: #d97706;
            --color-stone-500: #78716c;
            --color-stone-600: #57534e;
            --color-stone-800: #292524;
            --color-stone-900: #1c1917;
            --font-serif: "Playfair Display", serif;
            --font-sans: "Poppins", sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--color-amber-50);
            font-family: var(--font-sans);
            color: var(--color-stone-800);
            line-height: 1.6;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .text-center { text-align: center; }
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .gap-2 { gap: 8px; }
        .gap-4 { gap: 16px; }
        
        /* Typography */
        h1, h2, h3 { font-family: var(--font-serif); color: var(--color-stone-900); }
        .section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
        .text-amber { color: var(--color-amber-600); }
        .text-highlight { color: var(--color-amber-600); font-style: italic; }
        
        /* Buttons */
        .btn-primary {
            background-color: var(--color-amber-500);
            color: white;
            padding: 10px 24px;
            border-radius: 99px;
            text-decoration: none;
            font-weight: 500;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
            transition: background-color 0.3s;
        }
        .btn-primary:hover { background-color: var(--color-amber-600); }

        .btn-link {
            color: var(--color-amber-600);
            font-weight: 600;
            background: none;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-link:hover { color: var(--color-amber-500); }

        /* --- NAVIGATION (Demo) --- */
        /* Nota: Puedes eliminar este bloque <nav> si usas tu propia barra de navegación */
        .navbar {
            background: white;
            padding: 1.5rem 2rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--color-amber-600); display: flex; align-items: center; gap: 0.5rem; }
        .nav-links { display: flex; gap: 2rem; }
        .nav-links a { text-decoration: none; color: var(--color-stone-600); font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover { color: var(--color-amber-600); }
        @media (max-width: 768px) { .nav-links { display: none; } }

        /* --- SECTIONS --- */
        section { padding: 5rem 0; position: relative; overflow: hidden; }
        
        /* Hero Section */
        .hero { background: white; }
        .hero-subtitle { color: var(--color-amber-500); text-transform: uppercase; letter-spacing: 2px; font-size: 0.875rem; font-weight: 600; display: block; margin-bottom: 1rem; }
        .hero h1 { font-size: 3rem; margin-bottom: 1.5rem; }
        .hero p { max-width: 600px; margin: 0 auto 2.5rem; color: var(--color-stone-600); font-size: 1.125rem; }
        .badge {
            background-color: var(--color-amber-100);
            color: #92400e;
            padding: 8px 16px;
            border-radius: 99px;
            font-size: 0.875rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Service Section */
        .service-section { background-color: var(--color-amber-50); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        @media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }
        
        .blob-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border: 4px solid white;
            transition: border-radius 0.5s ease;
        }
        .blob-img:hover { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
        
        .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
        .feature-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
        .feature-item p { font-size: 0.875rem; color: var(--color-stone-500); }
        .feature-icon { font-size: 1.5rem; color: var(--color-amber-500); margin-bottom: 0.5rem; }

        /* Team Section */
        .team-section { background: white; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        @media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

        .team-card {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
        }
        .team-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .team-card:hover img { transform: scale(1.1); }
        .team-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0; top: 0;
            background: linear-gradient(to top, rgba(28, 25, 23, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            color: white;
        }
        .team-social {
            display: flex; gap: 1rem; margin-top: 1rem;
            opacity: 0; transform: translateY(10px);
            transition: all 0.3s;
        }
        .team-card:hover .team-social { opacity: 1; transform: translateY(0); }
        .team-role { color: var(--color-amber-400); font-weight: 500; }

        /* Testimonials */
        .testimonials { background-color: var(--color-stone-900); color: white; }
        .testimonials h2 { color: white; }
        .divider { width: 100px; height: 4px; background: var(--color-amber-500); margin: 0 auto 3rem; border-radius: 2px; }
        
        .review-card {
            background: var(--color-stone-800);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #44403c;
            transition: border-color 0.3s;
        }
        .review-card:hover { border-color: var(--color-amber-500); }
        .quote-icon { font-size: 2rem; color: var(--color-amber-500); opacity: 0.5; margin-bottom: 1.5rem; }
        .review-text { color: #d6d3d1; font-style: italic; margin-bottom: 1.5rem; }
        .user-info { display: flex; align-items: center; gap: 1rem; }
        .user-img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--color-amber-500); }
        .stars { color: var(--color-amber-400); font-size: 0.75rem; }

        /* Footer */
        footer { background: #0c0a09; color: #a8a29e; padding: 2rem; text-align: center; border-top: 1px solid #292524; }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-up.visible { opacity: 1; transform: translateY(0); }
        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }

        /* Decoration */
        .honeycomb-bg {
            background-image: radial-gradient(#f59e0b 1px, transparent 1px);
            background-size: 20px 20px;
            position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
        }
        .floating-bee { position: absolute; animation: bounce 3s infinite ease-in-out; color: var(--color-amber-300); }
        @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
