        /* Colores y estilos base inspirados en la nueva paleta */
        :root {
            --primary-color: #c06c2d; /* Naranja tierra */
            --secondary-color: #3d6645; /* Verde oliva */
            --light-bg: #f6f2e6; /* Fondo crema claro */
            --accent-color: #b3906c; /* Marrón claro */
            --accent-dark: #774936; /* Marrón oscuro */
            --cream-color: #f0e9ca; /* Crema */
            --dark-text: #4b4034; /* Texto oscuro */
            --light-text: #ffffff; /* Texto claro */
        }
        
        /*body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            color: var(--dark-text);
            background-image: url('/api/placeholder/1200/800');
            background-size: cover;
            background-attachment: fixed;
            position: relative;
            z-index: 0;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-image: radial-gradient(ellipse at center, transparent, var(--light-bg)), 
                              repeating-linear-gradient(to bottom, transparent, var(--light-bg) 10px);
            opacity: 0.9;
            z-index: -1;
        }
        
        /* Header styles */
        /*header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 50px;
            background-color: rgba(246, 242, 230, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .logo-text {
            margin-left: 15px;
            font-size: 26px;
            font-weight: bold;
            color: var(--secondary-color);
            letter-spacing: 1px;
        }*/
        
        /*nav {
            display: flex;
            justify-content: center;
            flex-grow: 1;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        nav ul li {
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            font-size: 18px;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .reservar-btn {
            padding: 12px 25px;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            background-color: transparent;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .reservar-btn:hover {
            background-color: var(--secondary-color);
            color: var(--light-text);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        /* Main content styles */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }
        
        .header-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
        }
        
        .services-title {
            background-color: var(--secondary-color);
            color: var(--light-text);
            padding: 15px 30px;
            display: inline-block;
            border-radius: 30px;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            transition: all 0.3s ease;
        }
        
        .services-title:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.18);
        }
        
        .reserva-ahora {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 15px 30px;
            display: inline-block;
            border-radius: 30px;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            transition: all 0.3s ease;
        }
        
        .reserva-ahora:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.18);
        }
        
        /* Services section */
        .services-section {
            margin: 70px 0;
            position: relative;
            display: flex;
            justify-content: center;
        }
        
        .services-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            max-width: 900px;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
            width: 100%;
            position: relative;
        }
        
        .service-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .service-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: var(--cream-color);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 30px;
            overflow: hidden;
            z-index: 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        @media (max-width: 599px) {
            .service-image {
                width: 0;
                height: 0;
                margin: 0;
                padding: 0;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
        }
        
        .service-image:hover {
            transform: scale(1.05);
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: transform 0.6s ease;
        }
        
        .service-image:hover img {
            transform: scale(1.1);
        }*/
        
        .service-info {
            position: relative;
            z-index: 0;
        }
        
        .service-box {
            background-color: var(--secondary-color);
            color: var(--light-text);
            padding: 18px 28px;
            width: 300px;
            border-radius: 25px;
            cursor: pointer;
            position: relative;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        
        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        .service-item:nth-child(2) .service-box {
            background-color: var(--primary-color);
        }
        
        .service-item:nth-child(3) .service-box {
            background-color: var(--accent-color);
        }
        
        .service-details {
            display: none;
            list-style-type: none;
            padding-left: 20px;
            margin-top: 8px;
        }
        
        .service-details li {
            margin: 8px 0;
            position: relative;
        }
        
        .service-details li:before {
            content: '•';
            position: absolute;
            left: -15px;
        }
        
        .service-table {
            position: relative;
            top: 110%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--cream-color);
            border-collapse: collapse;
            width: 110%;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            z-index: 9999;
            border-radius: 15px;
            overflow: hidden ;
        }


        .service-box:hover .service-table {
            display: table;
        }
        
        .service-table th {
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 16px;
            text-align: center;
        }
        
        .service-item:nth-child(2) .service-table th {
            background-color: var(--primary-color);
        }
        
        .service-item:nth-child(3) .service-table th {
            background-color: var(--accent-color);
        }
        
        .service-table td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            color: var(--dark-text);
        }
        
        .service-table tr:last-child td {
            border-bottom: none;
        }
        
        .service-table tr:nth-child(even) {
            background-color: rgba(255,255,255,0.5);
        }
        
        /* Connecting dots with curves */
        .dots-connector {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 100%;
            width: 80%;
            max-width: 800px;
            display: flex;
            justify-content: center;
            z-index: -1;
        }
        
        .dots-connector::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, 
                                       transparent 0%, 
                                       var(--cream-color) 15%, 
                                       var(--primary-color) 50%, 
                                       var(--accent-color) 85%, 
                                       transparent 100%);
            border-radius: 20px;
            opacity: 0.4;
        }
        
        .dot {
            width: 18px;
            height: 18px;
            background-color: var(--primary-color);
            border-radius: 50%;
            position: absolute;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .dot:nth-child(odd) {
            background-color: var(--secondary-color);
            left: calc(50% - 40px);
        }
        
        .dot:nth-child(even) {
            background-color: var(--accent-color);
            right: calc(50% - 40px);
        }
        
        /* Bottom section */
        .slogan {
            text-align: center;
            font-size: 28px;
            color: var(--primary-color);
            margin: 50px 0 30px;
        }
        
        .cta-button {
            display: block;
            width: 200px;
            margin: 0 auto;
            padding: 12px;
            text-align: center;
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 4px;
            font-weight: bold;
            text-decoration: none;
            margin-bottom: 50px;
        }
        
        .cta-button:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }