
        /* Importar tipografía similar a Degular (usando una fuente sans-serif moderna) */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        
        /* Importar tipografía similar a Club Lithographer (usando una fuente handwriting) */
        @import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #fce7ca; /* Crema - Color base 60% */
            color: #231106; /* Café oscuro */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            line-height: 1.6;
        }
        
        .container {
            max-width: 800px;
            width: 100%;
            text-align: center;
            padding: 40px 20px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(35, 17, 6, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        /* Elemento decorativo sutil */
        .container::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: #854f2a; /* Terracota */
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }
        
        .container::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background-color: #473119; /* Chocolate */
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }
        
        .content {
            position: relative;
            z-index: 1;
        }
        
        /* Logo */
        .logo {
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo-img {
            max-width: 500px;
            width: 100%;
            height: auto;
            margin-bottom: 10px;
        }
        
        
        .tagline {
            font-family: 'Caveat', cursive;
            font-size: 1.8rem;
            color: #854f2a; /* Terracota */
            margin-top: -10px;
            margin-bottom: 10px; /* Cambiado de 40px a 20px */
        }
        
        /* Mensaje de bienvenida */
        .welcome-message {
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .welcome-message h2 {
            font-family: 'Caveat', cursive;
            font-size: 2.2rem;
            color: #473119; /* Chocolate */
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .welcome-message p {
            font-size: 1.1rem;
            color: #231106; /* Café oscuro */
            margin-bottom: 15px;
        }
        
        /* Contenedor de botones */
        .buttons-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 180px;
            height: 180px;
            padding: 25px 15px;
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 12px rgba(35, 17, 6, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(35, 17, 6, 0.15);
        }
        
        .btn-menu {
            background-color: #854f2a; /* Terracota */
            color: #fce7ca; /* Crema */
        }
        
        .btn-location {
            background-color: #473119; /* Chocolate */
            color: #fce7ca; /* Crema */
        }
        
        .btn-whatsapp {
            background-color: #231106; /* Café oscuro */
            color: #fce7ca; /* Crema */
        }
        
        .btn-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        
        .btn-text {
            font-weight: 600;
            font-size: 1.2rem;
            text-align: center;
        }
        
        .btn-subtext {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        /* Pie de página */
        .footer {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(35, 17, 6, 0.1);
            font-size: 0.9rem;
            color: #854f2a; /* Terracota */
            max-width: 500px;
        }
        
        .footer p {
            margin-bottom: 8px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }
            
                        .logo-img {
                max-width: 400px; /* Tamaño reducido para tablet */
            }

            .tagline {
                font-size: 1.5rem;
                margin-bottom: 15px; /* Agregado para versión móvil */
            }
            
            .welcome-message h2 {
                font-size: 1.9rem;
            }
            
            .btn {
                width: 160px;
                height: 160px;
            }
            
            .buttons-container {
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {

            .logo-img {
                max-width: 300px; /* Tamaño reducido para móvil */
            }

            .buttons-container {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                height: 100px;
                flex-direction: row;
                justify-content: flex-start;
                padding: 20px;
            }
            
            .btn-icon {
                margin-bottom: 0;
                margin-right: 20px;
                font-size: 2.5rem;
            }
            
            .btn-content {
                text-align: left;
            }
        }
            /* Créditos */
        .creditos {
            margin-top: 30px;
            padding: 15px 20px;
            background-color: rgba(35, 17, 6, 0.05);
            border-radius: 10px;
            font-size: 0.85rem;
            color: #854f2a;
            text-align: center;
            max-width: 800px;
            width: 100%;
        }
        
        .creditos a {
            color: #854f2a;
            text-decoration: none;
            font-weight: 600;
        }
        
        .creditos a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .creditos {
                margin-top: 20px;
                padding: 12px 15px;
                font-size: 0.8rem;
            }
        }