 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        /* Slider */
        .slider-container {
            margin-top: 80px;
            height: 70vh;
            position: relative;
            overflow: hidden;
        }

        .slider {
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide:nth-child(1) {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23e74c3c" width="1200" height="800"/><circle fill="%23c0392b" cx="200" cy="200" r="100"/><circle fill="%23c0392b" cx="1000" cy="600" r="150"/><rect fill="%23ffffff" x="400" y="300" width="400" height="200" rx="20"/></svg>');
        }

        .slide:nth-child(2) {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%2327ae60" width="1200" height="800"/><circle fill="%23229954" cx="300" cy="150" r="80"/><circle fill="%23229954" cx="900" cy="650" r="120"/><rect fill="%23ffffff" x="350" y="250" width="500" height="300" rx="25"/></svg>');
        }

        .slide:nth-child(3) {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f39c12" width="1200" height="800"/><circle fill="%23e67e22" cx="150" cy="600" r="90"/><circle fill="%23e67e22" cx="1050" cy="200" r="110"/><rect fill="%23ffffff" x="300" y="200" width="600" height="400" rx="30"/></svg>');
        }

        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 2rem;
            background: rgba(0,0,0,0.3);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out;
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: slideInUp 1s ease-out 0.6s both;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        /* Navigation dots */
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
            position: relative;
        }

        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Carta Section */
        .carta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .carta .section-title {
            color: white;
        }

        .carta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .carta-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .carta-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .carta-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        /* Servicios Section */
        .servicios {
            background: #f8f9fa;
        }

        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .servicio-item {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }

        .servicio-item:nth-child(1) { border-top-color: #e74c3c; }
        .servicio-item:nth-child(2) { border-top-color: #3498db; }
        .servicio-item:nth-child(3) { border-top-color: #2ecc71; }

        .servicio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .servicio-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .servicio-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        /* Platos Destacados */
        .platos {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
        }

        .platos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .plato-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .plato-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .plato-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .plato-item:nth-child(1) .plato-image {
            background: url('../images/salmon.png'), linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            background-size: cover;
            background-position: center;
        }

        .plato-item:nth-child(2) .plato-image {
            background: url('../images/risotto.png'), linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            background-size: cover;
            background-position: center;
        }

        .plato-item:nth-child(3) .plato-image {
            background: url('../images/cordero.png'), linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            background-size: cover;
            background-position: center;
        }

        .plato-item:nth-child(4) .plato-image {
            background: url('../images/spaguettis.png'), linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            background-size: cover;
            background-position: center;
        }

        .plato-item:nth-child(5) .plato-image {
            background: url('../images/tiramisu.png'), linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            background-size: cover;
            background-position: center;
        }
        .plato-item:nth-child(6) .plato-image {
            background: url('../images/ensalada-cesar.png'), linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            background-size: cover;
            background-position: center;
        }

        .precio {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            color: #333;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .plato-content {
            padding: 1.5rem;
        }

        .plato-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .plato-content p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Contacto */
        .contacto {
            background: #2c3e50;
            color: white;
        }

        .contacto .section-title {
            color: white;
        }

        .contacto-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contacto-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contacto-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #f7931e;
        }

        .contacto-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #f7931e;
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .slide-content h2 {
                font-size: 2.5rem;
            }

            .slide-content p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .slider-container {
                height: 60vh;
            }
        }

        @media (max-width: 480px) {
            .slide-content h2 {
                font-size: 2rem;
            }

            .slide-content {
                padding: 1rem;
            }

            section {
                padding: 3rem 0;
            }
        }