  /* Variables y Reset */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #f8f9fa;
            --dark: #1a1a2e;
            --success: #2ecc71;
            --warning: #f39c12;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    body {
            color: var(--white);
            position: relative;
            min-height: 100vh;
            overflow-x: hidden;
            padding-top: 80px;
            background-image: url('https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        
        
        /* Calculator Section */
        .calculator-container {
            background: white;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            transition: var(--transition);
        }
        
        .calculator-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .section-header {
            color: white;
            padding: 20px 30px;
        }
        
        .section-header h2 {
            font-size: 38px;
            font-weight: 700;
        }
        
        .section-header p {
            opacity: 0.85;
            margin-top: 5px;
        }
        
        .calculator-body {
            padding: 30px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary-color);
            font-size: 16px;
        }
        
        .input-with-icon {
            position: relative;
        }
        
        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-color);
            z-index: 2;
        }
        
        input, select {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #e0e4e9;
            border-radius: 12px;
            font-size: 16px;
            transition: var(--transition);
            background: #f8fafc;
            position: relative;
            z-index: 1;
        }
        
        input:focus, select:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            background: white;
        }
        
        .vehicle-selection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        
        .vehicle-card {
            background: white;
            border: 2px solid #e0e4e9;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .vehicle-card:hover {
            border-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .vehicle-card.selected {
            border-color: var(--accent-color);
            background: rgba(231, 76, 60, 0.05);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
        }
        
        .vehicle-card.selected::after {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent-color);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .vehicle-icon {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .vehicle-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        
        .vehicle-price {
            color: var(--accent-color);
            font-weight: 700;
            font-size: 18px;
        }
        
        .vehicle-price span {
            font-size: 14px;
            font-weight: 500;
            color: #777;
        }
        
        .calculate-btn {
            background: linear-gradient(to right, var(--accent-color), var(--warning));
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .calculate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
        }
        
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .loading i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
            animation: spin 1s linear infinite;
        }
        
        /* Results Section */
        .results {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-top: 25px;
            box-shadow: var(--card-shadow);
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f4f8;
        }
        
        .results-title {
            font-size: 24px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .result-price {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-color);
        }
        
        .result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .result-card {
            background: #f8fafc;
            border-radius: 15px;
            padding: 20px;
            border-left: 4px solid var(--secondary-color);
        }
        
        .result-card.distance {
            border-left-color: #2ecc71;
        }
        
        .result-card.time {
            border-left-color: #f39c12;
        }
        
        .result-card.vehicle {
            border-left-color: #9b59b6;
        }
        
        .result-label {
            font-size: 16px;
            color: #777;
            margin-bottom: 8px;
        }
        
        .result-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .result-icon {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .result-card.distance .result-icon {
            color: #2ecc71;
        }
        
        .result-card.time .result-icon {
            color: #f39c12;
        }
        
        .result-card.vehicle .result-icon {
            color: #9b59b6;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex: 1;
        }
        
        .btn-primary {
            background: var(--accent-color);
            color: white;
        }
        
        .btn-primary:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        .btn-secondary {
            background: var(--primary-color);
            color: white;
        }
        
        .btn-secondary:hover {
            background: #1c2e40;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
        }
        
      





         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
      :root {
            --primary: #ec0d0dff;
            --secondary: #2A9D8F;
            --accent: #ec0d0dff;
            --dark: #264653;
            --light: #ec0d0dff;
            --text: #333;
            --white: #fff;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
            --beach: #f8f9fa;
            --ocean: #118AB2;
            --sand: #F0E6D2;
        }
        
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        /* Animación de palmeras */
        .palm-tree {
            position: absolute;
            bottom: 0;
            z-index: -1;
            animation: sway 8s infinite alternate ease-in-out;
        }
        
        .palm-tree.left {
            left: 5%;
            height: 300px;
        }
        
        .palm-tree.right {
            right: 5%;
            height: 250px;
            animation-delay: 2s;
        }
        
        /* Animación de olas */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('https://i.ibb.co/Q9b7n4w/wave.png');
            background-size: 1000px 100px;
            opacity: 0.5;
            animation: wave-animation 15s linear infinite;
        }
        
        .waves:nth-child(2) {
            animation: wave-animation-reverse 20s linear infinite;
            opacity: 0.3;
            bottom: 10px;
        }
        
        .waves:nth-child(3) {
            animation: wave-animation 25s linear infinite;
            opacity: 0.1;
            bottom: 20px;
        }
        
      
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Pacifico', cursive;
        }
        
        .logo i {
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s infinite;
        }
        
      
        
        .user-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(231, 111, 81, 0.6);
        }
        
        .btn:after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 40%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(25deg);
            transition: all 0.5s;
        }
        
        .btn:hover:after {
            left: 120%;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 5% 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease;
            font-family: 'Pacifico', cursive;
        }
        
        .hero h1 span {
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            animation: swing 5s infinite;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
            background: rgba(0, 0, 0, 0.4);
            padding: 15px;
            border-radius: 15px;
            border: 2px solid var(--beach);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }
        
        /* Booking Section */
        .booking-tabs {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 20px;
            padding: 20px;
            max-width: 1000px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
            border: 2px solid var(--beach);
            animation: fadeIn 1s ease 0.6s forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }
        
        .tabs-header {
            display: flex;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 25px;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .tab-btn {
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 10px;
            min-width: 150px;
        }
        
        .tab-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .tab-btn.active {
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
            transform: translateY(-5px);
        }
        
        .booking-form {
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 15px;
            border: 1px solid var(--beach);
            animation: fadeIn 0.5s ease;
        }
        
        .booking-form.active {
            display: grid;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--beach);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgb(255, 255, 255);
            color: #1a1a2e;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 10px rgba(231, 111, 81, 0.3);
        }
        
.search-btn {
    grid-column: span 2;
    margin-top: 10px;
    margin-left: 300px; /* Ajusta este valor según lo necesites */
}

        
        /* Vehicles Section */
        .vehicles {
            padding: 80px 5%;
            text-align: center;
        }
        
    
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .vehicle-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }
        
        .vehicle-card {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            padding: 30px;
            width: 280px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            backdrop-filter: blur(10px);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .vehicle-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .vehicle-card:hover .vehicle-image {
            transform: scale(1.1) rotate(5deg);
        }
        
        .vehicle-image {
            height: 150px;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }
        
        .vehicle-image img {
            max-width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
        }
        
        .vehicle-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .vehicle-card p {
            margin-bottom: 20px;
            color: #ccc;
        }
        
        .vehicle-features {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        /* Formularios de servicios */
        .service-form {
            display: none;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 20px;
            padding: 30px;
            max-width: 800px;
            margin: 40px auto;
            backdrop-filter: blur(10px);
            border: 2px solid var(--beach);
            animation: fadeIn 0.5s ease;
        }
        
        .service-form.active {
            display: block;
        }
        
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .service-header h2 {
            font-size: 2rem;
            color: var(--beach);
        }
        
        .close-form {
            background: var(--gradient);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .close-form:hover {
            transform: rotate(90deg);
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .service-card {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid var(--beach);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .service-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--beach);
            margin: 10px 0;
        }
        
        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 60px 5% 30px;
            border-top: 2px solid var(--primary);
            margin-top: 80px;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes sway {
            0% { transform: rotate(3deg); }
            100% { transform: rotate(-3deg); }
        }
        
        @keyframes wave-animation {
            0% { background-position-x: 0; }
            100% { background-position-x: 1000px; }
        }
        
        @keyframes wave-animation-reverse {
            0% { background-position-x: 1000px; }
            100% { background-position-x: 0; }
        }
        
        @keyframes swing {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            nav ul {
                gap: 10px;
            }
            
            .booking-form {
                grid-template-columns: 1fr;
            }
            
            .search-btn {
                grid-column: 1;
                    margin-left: 10px; /* Ajusta este valor según lo necesites */

            }
        }
        
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 15px;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                padding-top: 150px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .tabs-header {
                flex-wrap: wrap;
            }
            
            .tab-btn {
                flex: 1;
                min-width: 120px;
                text-align: center;
                padding: 10px;
                font-size: 0.9rem;
            }
            
            .palm-tree {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .vehicle-card {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Animación de palmeras */
        .palm-tree {
            position: absolute;
            bottom: 0;
            z-index: -1;
            animation: sway 8s infinite alternate ease-in-out;
        }
        
        .palm-tree.left {
            left: 5%;
            height: 300px;
        }
        
        .palm-tree.right {
            right: 5%;
            height: 250px;
            animation-delay: 2s;
        }
        
        /* Animación de olas */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('https://i.ibb.co/Q9b7n4w/wave.png');
            background-size: 1000px 100px;
            opacity: 0.5;
            animation: wave-animation 15s linear infinite;
        }
        
        .waves:nth-child(2) {
            animation: wave-animation-reverse 20s linear infinite;
            opacity: 0.3;
            bottom: 10px;
        }
        
        .waves:nth-child(3) {
            animation: wave-animation 25s linear infinite;
            opacity: 0.1;
            bottom: 20px;
        }
        
        /* Header y Navegación */
   
        
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Pacifico', cursive;
        }
        
        .logo i {
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s infinite;
        }
        
       
        
        .user-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(231, 111, 81, 0.6);
        }
        
        .btn:after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 40%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(25deg);
            transition: all 0.5s;
        }
        
        .btn:hover:after {
            left: 120%;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        .btn-small {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 5% 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease;
            font-family: 'Pacifico', cursive;
        }
        
        .hero h1 span {
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            animation: swing 5s infinite;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
            background: rgba(0, 0, 0, 0.4);
            padding: 15px;
            border-radius: 15px;
            border: 2px solid var(--beach);
        }
        
        /* Secciones 4x4 */
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--beach);
            display: inline-block;
            padding: 0 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            border: 2px solid var(--primary);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #ddd;
        }
        
        .grid-4x4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(231, 111, 81, 0.4);
        }
        
        .card-image {
            height: 220px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: var(--beach);
        }
        
        .card-location {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .card p {
            color: #ccc;
            margin-bottom: 15px;
            min-height: 60px;
        }
        
        .card-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .card-features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .feature-tag {
            background: rgba(255, 255, 255, 0.1);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .view-more {
            text-align: center;
            margin-top: 20px;
        }

        /* Animación de palmeras */
        .palm-tree {
            position: absolute;
            bottom: 0;
            z-index: -1;
            animation: sway 8s infinite alternate ease-in-out;
        }
        
        .palm-tree.left {
            left: 5%;
            height: 300px;
        }
        
        .palm-tree.right {
            right: 5%;
            height: 250px;
            animation-delay: 2s;
        }
        
        /* Animación de olas */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('https://i.ibb.co/Q9b7n4w/wave.png');
            background-size: 1000px 100px;
            opacity: 0.5;
            animation: wave-animation 15s linear infinite;
        }
        
        .waves:nth-child(2) {
            animation: wave-animation-reverse 20s linear infinite;
            opacity: 0.3;
            bottom: 10px;
        }
        
        .waves:nth-child(3) {
            animation: wave-animation 25s linear infinite;
            opacity: 0.1;
            bottom: 20px;
        }
        
        /* Header y Navegación */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Pacifico', cursive;
        }
        
        .logo i {
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s infinite;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            background: rgba(255, 255, 255, 0.1);
        }
        
        nav a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
        }
        
        nav a.active {
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
        }
        
        .user-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(231, 111, 81, 0.6);
        }
        
        .btn:after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 40%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(25deg);
            transition: all 0.5s;
        }
        
        .btn:hover:after {
            left: 120%;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        .btn-small {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 5% 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease;
            font-family: 'Pacifico', cursive;
        }
        
        .hero h1 span {
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            animation: swing 5s infinite;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
            background: rgba(0, 0, 0, 0.4);
            padding: 15px;
            border-radius: 15px;
            border: 2px solid var(--beach);
        }
        
        /* Secciones 4x4 */
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--beach);
            display: inline-block;
            padding: 0 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            border: 2px solid var(--primary);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #ddd;
        }
        
        .grid-4x4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(231, 111, 81, 0.4);
        }
        
        .card-image {
            height: 220px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: var(--beach);
        }
        
        .card-location {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .card p {
            color: #ccc;
            margin-bottom: 15px;
            min-height: 60px;
        }
        
        .card-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .card-features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .feature-tag {
            background: rgba(255, 255, 255, 0.1);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .view-more {
            text-align: center;
            margin-top: 20px;
        }

        .mobile-menu-btn {
    display: none;
}


/* Agrega esto a tu archivo CSS */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

#nav-links {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #nav-links {
        position: fixed;
      
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
    }

    #nav-links.show {
        transform: translateY(0);
    }
}