/* Estilos específicos para la página de playas */
        .hero {
            background: linear-gradient(rgba(194, 216, 240, 0.5), rgba(194, 216, 240, 0.5)), url('https://integratzia.com/viajaleon/img/vallarta.png') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 120px 20px;
            margin-bottom: 60px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .destinos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .destino-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .destino-card:hover {
            transform: translateY(-10px);
        }
        .destino-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .destino-card-content {
            padding: 20px;
        }
        .destino-card h3 {
            margin-bottom: 10px;
            color: #333;
        }
        .destino-card p {
            color: #666;
            line-height: 1.6;
        }
        .btn-reservar {
            display: inline-block;
            background: #f7a13e;
            color: white;
            padding: 8px 16px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
            font-weight: 500;
        }
        .btn-reservar:hover {
            background: #e0902e;
        }