   

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(3, 4, 94, 0.5), rgba(0, 119, 182, 0)), url('/photos/photoportada.jpg');
            background-size: cover;
            background-position: center 20%;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 32, 63, 0.4), rgba(0, 119, 182, 0.2));
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            line-height: 1.2;
        }

        .hero-content p {
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
            font-weight: 400;
        }


        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 300;
            color: var(--light-cyan);
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            font-weight: 400;
            opacity: 0.9;
        }



        /* Features Section */
        .features {
            padding: 6rem 0;
            background: var(--light-cyan);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            color: var(--federal-blue);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 186, 216, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--pacific-cyan), var(--honolulu-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--federal-blue);
            margin-bottom: 1rem;
        }


        /* Bloque de historia / copy destacado */
        .brand-story {
            background: #ffffff;
            border-radius: 18px;
            padding: 2rem 2rem 2.2rem;
            margin: 1.5rem auto 3rem;
            max-width: 900px;
            position: relative;
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,186,216,0.15);
        }

        .brand-story::before {
            content: "“";
            position: absolute;
            top: -18px;
            left: 18px;
            font-size: 4rem;
            line-height: 1;
            color: rgba(0, 119, 182, 0.25);
            font-weight: 800;
        }

        .brand-story p {
            color: var(--text-dark);
            font-size: 1.05rem;
            line-height: 1.9;
            margin: 0.4rem 0;
        }

        .brand-story .highlight {
            color: var(--federal-blue);
            font-weight: 700;
        }

        .brand-story .tagline {
            margin-top: 0.8rem;
            font-weight: 700;
            color: var(--honolulu-blue);
        }

        .brand-story .em {
            font-style: italic;
            color: var(--text-light);
        }


        .luxury-arrow {
            margin-right: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #0077B6, #00BAD8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* versión compacta en móvil */
        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll; /* o directamente lo eliminas */
            }

            .brand-story { padding: 1.4rem 1.2rem 1.6rem; }
            .brand-story::before { font-size: 3rem; top: -14px; left: 14px; }
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Services Preview */
        .services-preview {
            padding: 6rem 0;
            background: white;
        }


        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 186, 216, 0.1);
            min-height: 600px;
            display: flex;
            flex-direction: column;
        }


        /* Sección de tarjetas de servicios */
        .service-card .service-image {
            height: 300px; /* Ajusta esta altura según lo que quede mejor visualmente */
            background-color: #b2ebf2;
            overflow: hidden;
        }

        .service-card .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* El resto mantiene íconos sin cambiar
        .service-card:not(:first-child) .service-image {
            font-size: 48px;
            color: #001f5b;
            padding: 2rem 0;
            text-align: center;
        }

         */

        /* Contenido general */

        .service-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--federal-blue);
            margin-bottom: 1rem;
        }

        .service-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--pacific-cyan);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }

        .service-image {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--federal-blue);
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--federal-blue);
            margin-bottom: 1rem;
        }

        .service-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--pacific-cyan);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }


        .service-duration {
            font-size: 1rem;
            color: var(--honolulu-blue);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .service-includes, .service-extras {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .service-includes h4, .service-extras h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--federal-blue);
            margin-bottom: 0.8rem;
            border-bottom: 2px solid var(--pacific-cyan);
            padding-bottom: 0.3rem;
        }

        .service-includes ul, .service-extras ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-includes li, .service-extras li {
            padding: 0.3rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.9rem;
            line-height: 1.4;
            color: var(--text-dark);
        }

        .service-includes li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--pacific-cyan);
            font-weight: bold;
        }

        .service-extras li::before {
            content: '+';
            position: absolute;
            left: 0;
            color: var(--honolulu-blue);
            font-weight: bold;
        }

        .service-content .btn {
            margin-top: auto;
            align-self: center;
        }

        /* Responsive adjustments for service cards */
        @media (max-width: 768px) {
            .service-card {
                min-height: auto;
            }

            .service-includes li, .service-extras li {
                font-size: 0.85rem;
            }
        }


      
        